SiGraph: sulcal graphs


adapFinder.h
Go to the documentation of this file.
1
2#ifndef SI_FINDER_ADAPFINDER_H
3#define SI_FINDER_ADAPFINDER_H
4
5
8
9
10namespace sigraph
11{
12
13 class LearnConstParam;
14
19 class AdapFinder : public ModelFinder
20 {
21 public:
23 virtual ~AdapFinder();
24
30
32 virtual bool isAdaptive() const;
33 };
34
35
36 // Fonctions inline
37
38 inline bool AdapFinder::isAdaptive() const
39 {
40 return( true );
41 }
42
43}
44
45#endif
46
47
virtual bool isAdaptive() const
Apprends le MGraph à partir d'une clique.
Definition adapFinder.h:38
AdapFinder(MGraph &rg)
Graph modèle (classe abstraite).
Definition mgraph.h:48
ModelFinder(MGraph &rg)