Home | History | Annotate | Download | only in genetics

Lines Matching defs:current

111         Population current = initial;
113 while (!condition.isSatisfied(current)) {
114 current = nextGeneration(current);
117 return current;
123 * <li>Get nextGeneration population to fill from <code>current</code>
127 * from <code>current</code></li>
139 * @param current the current population.
142 public Population nextGeneration(Population current) {
143 Population nextGeneration = current.nextGeneration();
149 ChromosomePair pair = getSelectionPolicy().select(current);