*/
typedef typename GeneticFitness::ValueType FitnessValueType;
protected:
+ /**
+ * Type representing mapped Chromosome by its Rank value
+ */
typedef typename std::multimap<FitnessValueType, _Chromosome> ChromosomeMap;
+
+ /** Iterator for ChromosomeMap */
typedef typename ChromosomeMap::iterator ChromosomeMapIterator;
/**
}
/**
- * Selection calculations should be done here.
+ * Invokes Selection calculations of the Linear Rank Selection
*
* @return new Generation of Chromosome's that passed the Selection
*/