You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/11/16 18:48:37 UTC

svn commit: r1542541 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/BaseOptimizer.java

Author: tn
Date: Sat Nov 16 17:48:36 2013
New Revision: 1542541

URL: http://svn.apache.org/r1542541
Log:
Fix typos.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/BaseOptimizer.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/BaseOptimizer.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/BaseOptimizer.java?rev=1542541&r1=1542540&r2=1542541&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/BaseOptimizer.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/BaseOptimizer.java Sat Nov 16 17:48:36 2013
@@ -115,15 +115,15 @@ public abstract class BaseOptimizer<PAIR
 
     /**
      * Stores data and performs the optimization.
-     * <br/>
+     * <p>
      * The list of parameters is open-ended so that sub-classes can extend it
      * with arguments specific to their concrete implementations.
-     * <br/>
+     * <p>
      * When the method is called multiple times, instance data is overwritten
      * only when actually present in the list of arguments: when not specified,
      * data set in a previous call is retained (and thus is optional in
      * subsequent calls).
-     * <br/>
+     * <p>
      * Important note: Subclasses <em>must</em> override
      * {@link #parseOptimizationData(OptimizationData[])} if they need to register
      * their own options; but then, they <em>must</em> also call
@@ -135,7 +135,7 @@ public abstract class BaseOptimizer<PAIR
      *  <li>{@link MaxEval}</li>
      *  <li>{@link MaxIter}</li>
      * </ul>
-     * @return a point/value pair that satifies the convergence criteria.
+     * @return a point/value pair that satisfies the convergence criteria.
      * @throws TooManyEvaluationsException if the maximal number of
      * evaluations is exceeded.
      * @throws TooManyIterationsException if the maximal number of
@@ -157,7 +157,7 @@ public abstract class BaseOptimizer<PAIR
     /**
      * Performs the optimization.
      *
-     * @return a point/value pair that satifies the convergence criteria.
+     * @return a point/value pair that satisfies the convergence criteria.
      * @throws TooManyEvaluationsException if the maximal number of
      * evaluations is exceeded.
      * @throws TooManyIterationsException if the maximal number of