Fixed reversed parameters in an error message.
Thanks to Dennis Hendriks for pointing this out. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1244699 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ab65490f56
commit
86c44f1b88
|
@ -324,7 +324,7 @@ public abstract class AdaptiveStepsizeIntegrator
|
||||||
filteredH = forward ? minStep : -minStep;
|
filteredH = forward ? minStep : -minStep;
|
||||||
} else {
|
} else {
|
||||||
throw new NumberIsTooSmallException(LocalizedFormats.MINIMAL_STEPSIZE_REACHED_DURING_INTEGRATION,
|
throw new NumberIsTooSmallException(LocalizedFormats.MINIMAL_STEPSIZE_REACHED_DURING_INTEGRATION,
|
||||||
minStep, FastMath.abs(h), true);
|
FastMath.abs(h), minStep, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue