ECF 1.5
IntGenotypeCrxOp.h
1#include <ecf/ECF.h>
2#include <ecf/ECF_base.h>
3#include <cmath>
4#include <sstream>
5
6namespace IntGenotype
7{
8 class IntGenotypeCrxOp : public CrossoverOp
9 {
10 public:
11 bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child);
12
13 };
14 typedef boost::shared_ptr<IntGenotypeCrxOp> IntGenotypeCrxOpP;
15
16}
CrossoverOp base class.
Definition: Crossover.h:19
bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)