diff options
author | Mike Buland <mike@xagasoft.com> | 2012-07-09 12:01:50 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2012-07-09 12:01:50 -0600 |
commit | 1f7c135934b6604c5409d4b6f34861105c0a64cb (patch) | |
tree | cc421e2e8620b72e202f0eddf2cd5f1478d3bc06 /src/fitnessfunction.cpp | |
parent | 40ee7ad5aeadeb9823e1cd6e1218a1999c608a65 (diff) | |
download | libgenetic-1f7c135934b6604c5409d4b6f34861105c0a64cb.tar.gz libgenetic-1f7c135934b6604c5409d4b6f34861105c0a64cb.tar.bz2 libgenetic-1f7c135934b6604c5409d4b6f34861105c0a64cb.tar.xz libgenetic-1f7c135934b6604c5409d4b6f34861105c0a64cb.zip |
It works well enough to solve polynomial maxima.
Diffstat (limited to 'src/fitnessfunction.cpp')
-rw-r--r-- | src/fitnessfunction.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/fitnessfunction.cpp b/src/fitnessfunction.cpp new file mode 100644 index 0000000..dd2ee08 --- /dev/null +++ b/src/fitnessfunction.cpp | |||
@@ -0,0 +1,10 @@ | |||
1 | #include "genetic/fitnessfunction.h" | ||
2 | |||
3 | Genetic::FitnessFunction::FitnessFunction() | ||
4 | { | ||
5 | } | ||
6 | |||
7 | Genetic::FitnessFunction::~FitnessFunction() | ||
8 | { | ||
9 | } | ||
10 | |||