SiGraph: sulcal graphs


constLearner.h
Go to the documentation of this file.
1
2#ifndef SI_LEARNER_CONSTLEARNER_H
3#define SI_LEARNER_CONSTLEARNER_H
4
5
7
8
9namespace sigraph
10{
19 class ConstLearner : public Learner
20 {
21 public:
22 ConstLearner( bool allowsChildren=true,
23 const std::string & synt="const_learner" );
24 virtual ~ConstLearner();
25
32 virtual void process(LearnParam *lp);
33 virtual void process(LearnConstParam *lp);
34
35 protected:
36
37 private:
38 };
39
40}
41
42#endif
43
virtual void process(LearnParam *lp)
Cette version de process() opérant sur des cliques non-const doit être redéfinie par les classes dérivées: on n...
virtual void process(LearnConstParam *lp)
Apprentissage sur une clique constante.
ConstLearner(bool allowsChildren=true, const std::string &synt="const_learner")
Learner(bool allowsChildren, const std::string &synt="")
Constructeur protégé.