SiGraph: sulcal graphs


foldCopier.h
Go to the documentation of this file.
1
2#ifndef SI_FOLD_FOLDCOPIER_H
3#define SI_FOLD_FOLDCOPIER_H
4
5
7
8
9namespace sigraph
10{
11
15 class FoldCopier : public CopyLearner
16 {
17 public:
19 virtual ~FoldCopier();
20
21 virtual void process(LearnConstParam *lp);
22 virtual void process(LearnParam *lp);
23
24 protected:
25 FoldCopier( const std::string & syntax ) : CopyLearner( syntax ) {}
26
27 private:
28 };
29
30
31 // inline
32
33
35 {
37 }
38
39}
40
41#endif
42
43
virtual void process(LearnConstParam *lp)
Apprentissage sur une clique constante.
FoldCopier(const std::string &syntax)
Definition foldCopier.h:25