MATH-827
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:
parent
28a66efb76
commit
159ca6ebb9
|
@ -52,6 +52,13 @@ If the output is not quite correct, check for invisible trailing spaces!
|
|||
<body>
|
||||
<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">
|
||||
Improve performance of quantile evaluation in Percentile class for cases
|
||||
with lots of equal values.
|
||||
|
|
|
@ -49,8 +49,10 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* <p>
|
||||
* @version $Id$
|
||||
* @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 {
|
||||
|
||||
/** Abscissas for the 2 points method. */
|
||||
|
|
Loading…
Reference in New Issue