diff options
Diffstat (limited to 'src/tests/maxima/fitnessfunctioneq.h')
-rw-r--r-- | src/tests/maxima/fitnessfunctioneq.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/tests/maxima/fitnessfunctioneq.h b/src/tests/maxima/fitnessfunctioneq.h new file mode 100644 index 0000000..7139532 --- /dev/null +++ b/src/tests/maxima/fitnessfunctioneq.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef GENETIC_FITNESS_FUNCTION_EQ_H | ||
2 | #define GENETIC_FITNESS_FUNCTION_EQ_H | ||
3 | |||
4 | #include "genetic/fitnessfunction.h" | ||
5 | |||
6 | class FitnessFunctionEq : public Genetic::FitnessFunction | ||
7 | { | ||
8 | public: | ||
9 | FitnessFunctionEq(); | ||
10 | virtual ~FitnessFunctionEq(); | ||
11 | |||
12 | virtual double operator()( Genetic::Phenotype *pTest ); | ||
13 | }; | ||
14 | |||
15 | #endif | ||