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:
Luc Maisonobe 2012-02-15 20:45:49 +00:00
parent ab65490f56
commit 86c44f1b88
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ public abstract class AdaptiveStepsizeIntegrator
filteredH = forward ? minStep : -minStep;
} else {
throw new NumberIsTooSmallException(LocalizedFormats.MINIMAL_STEPSIZE_REACHED_DURING_INTEGRATION,
minStep, FastMath.abs(h), true);
FastMath.abs(h), minStep, true);
}
}