I'm writing a small program using the SIMLE library. I constructed a network for my data using Greedy Think Thinning. This works fine.
However, Essential search is somehow not included in smilelearn.h?
Because when I declare the learner:
Code: Select all
DSL_essentialSearch egs;
Also, inculding essentialsearch.h manually gives linking errors. So how am I supposed to use this structure learner?
Then a question about the PC algirithm. In pc.h I see the header for Learn():
Code: Select all
int Learn(const DSL_dataset &ds, DSL_pattern &pat, DSL_learnProgress *progress = NULL) const;
Thanks for the help!
-Thom