ECF 1.5
Cartesian.h
1#ifndef Cartesian_h_h
2#define Cartesian_h_h
3
4//genotype
5#include "Cartesian.h"
6
7//function set - put all avaliable function names and objects there
8#include "FunctionSet.h"
9
10//avaliable functions
11#include "Add.h"
12#include "Sub.h"
13#include "Mul.h"
14#include "Div.h"
15#include "Sin.h"
16#include "Cos.h"
17
18//crossover operators
19#include "CartesianCrsOnePoint.h"
20
21//mutation operators
22#include "CartesianMutOnePoint.h"
23
24#endif /* Cartesian_h_h */