Author: psteitz
Date: Sat Nov 24 04:37:30 2012
New Revision: 1413127
URL: http://svn.apache.org/viewvc?rev=1413127&view=rev
Log:
Javadoc.
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/SimplePointChecker.java
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/SimplePointChecker.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/SimplePointChecker.java?rev=1413127&r1=1413126&r2=1413127&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/SimplePointChecker.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/SimplePointChecker.java
Sat Nov 24 04:37:30 2012
@@ -44,13 +44,13 @@ public class SimplePointChecker<PAIR ext
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;