git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1413127 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2012-11-24 04:37:30 +00:00
parent a30bef00fb
commit 9bcd29de47
1 changed files with 2 additions and 2 deletions

View File

@ -44,13 +44,13 @@ public class SimplePointChecker<PAIR extends Pair<double[], ? extends Object>>
extends AbstractConvergenceChecker<PAIR> {
/**
* If {@link #maxIterationCount} is set to this value, the number of
* iterations will never cause {@link #converged(int,Pair,Pair>)}
* iterations will never cause {@link #converged(int, Pair, Pair)}
* to return {@code true}.
*/
private static final int ITERATION_CHECK_DISABLED = -1;
/**
* Number of iterations after which the
* {@link #converged(int,PointVectorValuePair,PointVectorValuePair)} method
* {@link #converged(int, Pair, Pair)} method
* will return true (unless the check is disabled).
*/
private final int maxIterationCount;