Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 19072 invoked from network); 28 Sep 2008 02:07:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Sep 2008 02:07:41 -0000 Received: (qmail 40119 invoked by uid 500); 28 Sep 2008 02:07:39 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 40096 invoked by uid 500); 28 Sep 2008 02:07:39 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 40087 invoked by uid 99); 28 Sep 2008 02:07:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Sep 2008 19:07:38 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Sep 2008 02:06:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 16D5D238898F; Sat, 27 Sep 2008 19:07:20 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r699762 - /commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java Date: Sun, 28 Sep 2008 02:07:19 -0000 To: commits@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080928020720.16D5D238898F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: psteitz Date: Sat Sep 27 19:07:19 2008 New Revision: 699762 URL: http://svn.apache.org/viewvc?rev=699762&view=rev Log: Fixed error in javadoc added in r699704 JIRA: MATH-207 Modified: commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java Modified: commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java?rev=699762&r1=699761&r2=699762&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java (original) +++ commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/genetics/GeneticAlgorithm.java Sat Sep 27 19:07:19 2008 @@ -110,8 +110,8 @@ *
  • 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