Improve comments and documentation.
[genetic.git] / src / algorithm.h
index fe79938302c95720cc724de4a8e31d8cef9f1f4a..894f4880019034d0e2004bca4e45cfff4d49ecfd 100644 (file)
@@ -22,6 +22,9 @@ namespace genetic {
     template < typename _Chromosome, typename _Selection, typename _Crossover, typename _Mutation >
     class Algorithm {
     public:
+        /**
+         * Type representing Fitness value
+         */
         typedef typename _Selection::FitnessValueType FitnessValueType;
     protected:
         /**