Fixed checkstyle warnings.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1458491 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
59eb9a9bad
commit
9fd53fafa1
|
@ -19,9 +19,6 @@ package org.apache.commons.math3.ode.events;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
|
||||||
import org.apache.commons.math3.ode.FirstOrderIntegrator;
|
|
||||||
|
|
||||||
|
|
||||||
/** Wrapper used to detect only increasing or decreasing events.
|
/** Wrapper used to detect only increasing or decreasing events.
|
||||||
*
|
*
|
||||||
* <p>General {@link EventHandler events} are defined implicitely
|
* <p>General {@link EventHandler events} are defined implicitely
|
||||||
|
@ -41,10 +38,11 @@ import org.apache.commons.math3.ode.FirstOrderIntegrator;
|
||||||
*
|
*
|
||||||
* <p>Users can wrap a regular {@link EventHandler event handler} in
|
* <p>Users can wrap a regular {@link EventHandler event handler} in
|
||||||
* an instance of this class and provide this wrapping instance to
|
* an instance of this class and provide this wrapping instance to
|
||||||
* the {@link FirstOrderIntegrator ODE solver} in order to avoid wasting
|
* the {@link org.apache.commons.math3.ode.FirstOrderIntegrator ODE solver}
|
||||||
* time looking for uninteresting events. The wrapper will intercept
|
* in order to avoid wasting time looking for uninteresting events.
|
||||||
* the calls to the {@link EventHandler#g(double, double[]) g function}
|
* The wrapper will intercept the calls to the {@link
|
||||||
* and to the {@link EventHandler#eventOccurred(double, double[], boolean)
|
* EventHandler#g(double, double[]) g function} and to the {@link
|
||||||
|
* EventHandler#eventOccurred(double, double[], boolean)
|
||||||
* eventOccurred} method in order to ignore uninteresting events. The
|
* eventOccurred} method in order to ignore uninteresting events. The
|
||||||
* wrapped regular {@link EventHandler event handler} will the see only
|
* wrapped regular {@link EventHandler event handler} will the see only
|
||||||
* the interesting events, i.e. either only {@code increasing} events or
|
* the interesting events, i.e. either only {@code increasing} events or
|
||||||
|
|
|
@ -18,8 +18,6 @@
|
||||||
package org.apache.commons.math3.ode.events;
|
package org.apache.commons.math3.ode.events;
|
||||||
|
|
||||||
import org.apache.commons.math3.exception.MathInternalError;
|
import org.apache.commons.math3.exception.MathInternalError;
|
||||||
import org.apache.commons.math3.util.Precision;
|
|
||||||
|
|
||||||
|
|
||||||
/** Enumerate for {@link EventFilter filtering events}.
|
/** Enumerate for {@link EventFilter filtering events}.
|
||||||
*
|
*
|
||||||
|
@ -85,7 +83,7 @@ public enum FilterType {
|
||||||
* <li>h = min(-s,-g,+g)</li>
|
* <li>h = min(-s,-g,+g)</li>
|
||||||
* <li>h = -g</li>
|
* <li>h = -g</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
* where s is a tiny positive value: {@link Precision#SAFE_MIN}.
|
* where s is a tiny positive value: {@link org.apache.commons.math3.util.Precision#SAFE_MIN}.
|
||||||
* </p>
|
* </p>
|
||||||
*/
|
*/
|
||||||
protected Transformer selectTransformer(final Transformer previous,
|
protected Transformer selectTransformer(final Transformer previous,
|
||||||
|
@ -261,7 +259,7 @@ public enum FilterType {
|
||||||
* <li>h = min(-s,-g,+g)</li>
|
* <li>h = min(-s,-g,+g)</li>
|
||||||
* <li>h = -g</li>
|
* <li>h = -g</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
* where s is a tiny positive value: {@link Precision#SAFE_MIN}.
|
* where s is a tiny positive value: {@link org.apache.commons.math3.util.Precision#SAFE_MIN}.
|
||||||
* </p>
|
* </p>
|
||||||
*/
|
*/
|
||||||
protected Transformer selectTransformer(final Transformer previous,
|
protected Transformer selectTransformer(final Transformer previous,
|
||||||
|
|
Loading…
Reference in New Issue