Fixed javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1178080 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-10-01 19:49:26 +00:00
parent 0be9aee882
commit 799b4d6176
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ public class TrapezoidIntegrator extends UnivariateRealIntegratorImpl {
* @param absoluteAccuracy absolute accuracy of the result
* @param minimalIterationCount minimum number of iterations
* @param maximalIterationCount maximum number of iterations
* (must be less than or equal to {@link #TRAPEZOID_MAX_ITERATIONS_COUNT)
* (must be less than or equal to {@link #TRAPEZOID_MAX_ITERATIONS_COUNT}
* @exception NotStrictlyPositiveException if minimal number of iterations
* is not strictly positive
* @exception NumberIsTooSmallException if maximal number of iterations
@ -72,7 +72,7 @@ public class TrapezoidIntegrator extends UnivariateRealIntegratorImpl {
* Build a trapezoid integrator with given iteration counts.
* @param minimalIterationCount minimum number of iterations
* @param maximalIterationCount maximum number of iterations
* (must be less than or equal to {@link #TRAPEZOID_MAX_ITERATIONS_COUNT)
* (must be less than or equal to {@link #TRAPEZOID_MAX_ITERATIONS_COUNT}
* @exception NotStrictlyPositiveException if minimal number of iterations
* is not strictly positive
* @exception NumberIsTooSmallException if maximal number of iterations

View File

@ -215,7 +215,7 @@ public abstract class UnivariateRealIntegratorImpl implements UnivariateRealInte
* @param maxEval Maximum number of evaluations.
* @param f the integrand function
* @param min the min bound for the interval
* @param upper the upper bound for the interval
* @param max the upper bound for the interval
* @throws NullArgumentException if {@code f} is {@code null}.
* @throws MathIllegalArgumentException if {@code min >= max}.
*/