From: Rafał Długołęcki Date: Mon, 6 Apr 2015 14:59:48 +0000 (+0200) Subject: Update documentation. X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;h=5bdb3f61e9897d13c8b4a69dea6fbf492a7d0e94;p=genetic.git Update documentation. --- diff --git a/src/selection/linearRankSelection.h b/src/selection/linearRankSelection.h index f16d096..8bbd3ce 100644 --- a/src/selection/linearRankSelection.h +++ b/src/selection/linearRankSelection.h @@ -29,7 +29,12 @@ namespace genetic { */ typedef typename GeneticFitness::ValueType FitnessValueType; protected: + /** + * Type representing mapped Chromosome by its Rank value + */ typedef typename std::multimap ChromosomeMap; + + /** Iterator for ChromosomeMap */ typedef typename ChromosomeMap::iterator ChromosomeMapIterator; /** @@ -66,7 +71,7 @@ namespace genetic { } /** - * Selection calculations should be done here. + * Invokes Selection calculations of the Linear Rank Selection * * @return new Generation of Chromosome's that passed the Selection */