Removed trailing spaces.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@811685 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2009-09-05 17:36:48 +00:00
parent abb6fb94bd
commit dc9278a2aa
542 changed files with 7410 additions and 7402 deletions

View File

@ -91,6 +91,14 @@
<property name="ignoreSetter" value="true" />
</module>
<!-- No trailing whitespace -->
<module name="Regexp">
<property name="format" value="[ \t]+$"/>
<property name="illegalPattern" value="true"/>
<property name="message" value="Trailing whitespace"/>
</module>
<!--
<module name="DeclarationOrder" />
<module name="IllegalCatch" />

View File

@ -23,7 +23,7 @@ package org.apache.commons.math.genetics;
* therefore it can be cached.
*
* @since 2.0
* @version $Revision:$ $Date:$
* @version $Revision$ $Date$
*/
public abstract class Chromosome implements Comparable<Chromosome>,Fitness {

View File

@ -19,7 +19,7 @@ package org.apache.commons.math.genetics;
/**
* Fitness of a chromosome.
*
* @version $Revision:$ $Date:$
* @version $Revision$ $Date$
* @since 2.0
*/
public interface Fitness {

View File

@ -20,7 +20,7 @@ package org.apache.commons.math.genetics;
* A collection of chromosomes that facilitates generational evolution.
*
* @since 2.0
* @version $Revision:$ $Date:$
* @version $Revision$ $Date$
*/
public interface Population extends Iterable<Chromosome> {
/**

View File

@ -20,7 +20,7 @@ package org.apache.commons.math.genetics;
* Algorithm used to select a chromosome pair from a population.
*
* @since 2.0
* @version $Revision:$ $Date:$
* @version $Revision$ $Date$
*/
public interface SelectionPolicy {
/**

View File

@ -20,7 +20,7 @@ package org.apache.commons.math.genetics;
* Algorithm used to determine when to stop evolution.
*
* @since 2.0
* @version $Revision:$ $Date:$
* @version $Revision$ $Date$
*/
public interface StoppingCondition {
/**