Update "changes.xml".
Javadoc.


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1512547 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2013-08-10 01:13:38 +00:00
parent f1467e45ab
commit 11b1474cec
2 changed files with 5 additions and 0 deletions

View File

@ -51,6 +51,10 @@ If the output is not quite correct, check for invisible trailing spaces!
</properties>
<body>
<release version="x.y" date="TBD" description="TBD">
<action dev="erans" type="add" issue="MATH-989">
"BicubicSplineInterpolatingFunction": added method "isValidPoint" that
checks whether a point is within the interpolation range.
</action>
<action dev="erans" type="fix" issue="MATH-1021" due-to="Brian Bloniarz">
Fixed overflow in "HypergeometricDistribution".
</action>

View File

@ -178,6 +178,7 @@ public class BicubicSplineInterpolatingFunction
* @param x First coordinate.
* @param y Second coordinate.
* @return {@code true} if (x, y) is a valid point.
* @since 3.3
*/
public boolean isValidPoint(double x, double y) {
if (x < xval[0] ||