ECF 1.7
ECF.h
1
8
11
15
19
22
25
29
33
37
41
44
45
46
47#ifndef ECF_h
48#define ECF_h
49
50#include <iostream>
51#include <vector>
52#include <cstdlib>
53#include <memory>
54#include "xml/xmlParser.h"
55
56typedef std::shared_ptr<void> voidP;
57
58const std::string ECF_VERSION = "1.7";
59
60// base:
61#include "ECF_base.h"
62
63// derived:
64#include "ECF_derived.h"
65
66// genotypes:
67#include "bitstring/BitString.h"
68#include "binary/Binary.h"
69#include "tree/Tree.h"
70#include "permutation/Permutation.h"
71#include "floatingpoint/FloatingPoint.h"
72#include "apgenotype/APGenotype.h"
73#include "intgenotype/IntGenotype.h"
74#include "gep/GEPChromosome.h"
75#include "cartesian/Cartesian.h"
76
77#endif // ECF_h
78