From 40ee7ad5aeadeb9823e1cd6e1218a1999c608a65 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 9 Jul 2012 08:39:37 -0600 Subject: New libgenetic. Genetic algorithms, only good. --- src/population.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/population.h (limited to 'src/population.h') 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 @@ +#ifndef GENETIC_POPULATION_H +#define GENETIC_POPULATION_H + +namespace Genetic +{ + class Population + { + public: + Population(); + virtual ~Population(); + }; +}; + +#endif -- cgit v1.2.3