Fixed Javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1196935 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2011-11-03 04:02:03 +00:00
parent 10013c4eea
commit 984ff74f4b

View File

@ -177,9 +177,9 @@ public class UnivariateRealSolverUtils {
* when one of the following happens: <ul>
* <li> <code> f(a) * f(b) < 0 </code> -- success!</li>
* <li> <code> a = lower </code> and <code> b = upper</code>
* -- ConvergenceException </li>
* -- NoBracketingException </li>
* <li> <code> Integer.MAX_VALUE</code> iterations elapse
* -- ConvergenceException </li>
* -- NoBracketingException </li>
* </ul></p>
* <p>
* <strong>Note: </strong> this method can take
@ -222,9 +222,9 @@ public class UnivariateRealSolverUtils {
* when one of the following happens: <ul>
* <li> <code> f(a) * f(b) <= 0 </code> -- success!</li>
* <li> <code> a = lower </code> and <code> b = upper</code>
* -- ConvergenceException </li>
* -- NoBracketingException </li>
* <li> <code> maximumIterations</code> iterations elapse
* -- ConvergenceException </li></ul></p>
* -- NoBracketingException </li></ul></p>
*
* @param function Function.
* @param initial Initial midpoint of interval being expanded to