From 44e04f2a0ac9f489477138331e5e0dd66f00f8a8 Mon Sep 17 00:00:00 2001 From: Phil Steitz Date: Sun, 28 Sep 2008 02:07:19 +0000 Subject: [PATCH] Fixed error in javadoc added in r699704 JIRA: MATH-207 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@699762 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/math/genetics/GeneticAlgorithm.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java b/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java index 482d4bc6a..e6994b3d0 100644 --- a/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java +++ b/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java @@ -110,8 +110,8 @@ public class GeneticAlgorithm { *
  • With probability = {@link #getCrossoverRate()}, apply * configured {@link CrossoverPolicy} to parents
  • *
  • With probability = {@link #getMutationRate()}, apply - * configured {@link MutationPolicy} to each parent
  • - *
  • Add resulting chromosomes individually to nextGeneration, + * configured {@link MutationPolicy} to each of the offspring
  • + *
  • Add offspring individually to nextGeneration, * space permitting
  • * *
  • Return nextGeneration