Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4BCE5D81F for ; Sun, 22 Jul 2012 22:30:24 +0000 (UTC) Received: (qmail 42668 invoked by uid 500); 22 Jul 2012 22:30:24 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 42605 invoked by uid 500); 22 Jul 2012 22:30:23 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 42592 invoked by uid 99); 22 Jul 2012 22:30:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Jul 2012 22:30:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Jul 2012 22:30:21 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C597723888EA for ; Sun, 22 Jul 2012 22:30:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1364452 - in /commons/proper/math/trunk/src: changes/changes.xml main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java Date: Sun, 22 Jul 2012 22:30:01 -0000 To: commits@commons.apache.org From: erans@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120722223001.C597723888EA@eris.apache.org> Author: erans Date: Sun Jul 22 22:30:01 2012 New Revision: 1364452 URL: http://svn.apache.org/viewvc?rev=1364452&view=rev Log: MATH-827 Deprecated "LegendreGaussIntegrator" (superseded by "IterativeLegendreGaussIntegrator"). Modified: commons/proper/math/trunk/src/changes/changes.xml commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java Modified: commons/proper/math/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/changes/changes.xml?rev=1364452&r1=1364451&r2=1364452&view=diff ============================================================================== --- commons/proper/math/trunk/src/changes/changes.xml (original) +++ commons/proper/math/trunk/src/changes/changes.xml Sun Jul 22 22:30:01 2012 @@ -52,6 +52,13 @@ If the output is not quite correct, chec + + 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". + Improve performance of quantile evaluation in Percentile class for cases with lots of equal values. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java?rev=1364452&r1=1364451&r2=1364452&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java Sun Jul 22 22:30:01 2012 @@ -49,8 +49,10 @@ import org.apache.commons.math3.util.Fas *

* @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. */