Deprecated "LegendreGaussIntegrator" (superseded by
"IterativeLegendreGaussIntegrator").


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1364452 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-07-22 22:30:01 +00:00
parent 28a66efb76
commit 159ca6ebb9
2 changed files with 10 additions and 1 deletions

View File

@ -52,6 +52,13 @@ If the output is not quite correct, check for invisible trailing spaces!
<body> <body>
<release version="3.1" date="TBD" description=" <release version="3.1" date="TBD" description="
"> ">
<action dev="erans" type="add" issue="MATH-827">
New "IterativeLegendreGaussIntegrator" that performs the same automatic
subdivision of the integration interval as "LegendreGaussIntegrator",
but uses the classes from package "o.a.c.m.analysis.integration.gauss"
to perform the Gauss integration on the sub-interval.
Deprecated "LegendreGaussIntegrator".
</action>
<action dev="tn" type="fix" issue="MATH-578"> <action dev="tn" type="fix" issue="MATH-578">
Improve performance of quantile evaluation in Percentile class for cases Improve performance of quantile evaluation in Percentile class for cases
with lots of equal values. with lots of equal values.

View File

@ -49,8 +49,10 @@ import org.apache.commons.math3.util.FastMath;
* <p> * <p>
* @version $Id$ * @version $Id$
* @since 1.2 * @since 1.2
* @deprecated As of 3.1 (to be removed in 4.0). Please use
* {@link IterativeLegendreGaussIntegrator} instead.
*/ */
@Deprecated
public class LegendreGaussIntegrator extends BaseAbstractUnivariateIntegrator { public class LegendreGaussIntegrator extends BaseAbstractUnivariateIntegrator {
/** Abscissas for the 2 points method. */ /** Abscissas for the 2 points method. */