ECF 1.5
IATree.h
1#ifndef IATree_h
2#define IATree_h
3
4#include <ecf/tree/Tree.h>
5
6namespace Tree {
7
8class IATree : public Tree
9{
10public:
11 bool boundsCalculated;
12
13 IATree();
14 IATree* copy();
15
16protected:
17 void initializeFirst(Tree* hometree);
18};
19
20typedef boost::shared_ptr<IATree> IATreeP;
21
22}
23
24#endif // IATree_h
IATree * copy()
Create an identical copy of the genotype object.
Definition: IATree.cpp:17
void initializeFirst(Tree *hometree)
Performs the first Tree initialization (performed only once for each active Tree Genotype)....
Definition: IATree.cpp:22
Tree class - implements genotype as a tree.
Definition: Tree_c.h:29