diff options
author | Mike Buland <mike@xagasoft.com> | 2012-07-09 08:39:37 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2012-07-09 08:39:37 -0600 |
commit | 40ee7ad5aeadeb9823e1cd6e1218a1999c608a65 (patch) | |
tree | 6e819d8406d818eaa63cb6f04e2a129b8561c213 /src/population.h | |
download | libgenetic-40ee7ad5aeadeb9823e1cd6e1218a1999c608a65.tar.gz libgenetic-40ee7ad5aeadeb9823e1cd6e1218a1999c608a65.tar.bz2 libgenetic-40ee7ad5aeadeb9823e1cd6e1218a1999c608a65.tar.xz libgenetic-40ee7ad5aeadeb9823e1cd6e1218a1999c608a65.zip |
New libgenetic. Genetic algorithms, only good.
Diffstat (limited to 'src/population.h')
-rw-r--r-- | src/population.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/population.h b/src/population.h new file mode 100644 index 0000000..0fdad32 --- /dev/null +++ b/src/population.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #ifndef GENETIC_POPULATION_H | ||
2 | #define GENETIC_POPULATION_H | ||
3 | |||
4 | namespace Genetic | ||
5 | { | ||
6 | class Population | ||
7 | { | ||
8 | public: | ||
9 | Population(); | ||
10 | virtual ~Population(); | ||
11 | }; | ||
12 | }; | ||
13 | |||
14 | #endif | ||