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:
parent
abb6fb94bd
commit
dc9278a2aa
|
@ -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" />
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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> {
|
||||
/**
|
||||
|
|
|
@ -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 {
|
||||
/**
|
||||
|
|
|
@ -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 {
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue