You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Gilles (JIRA)" <ji...@apache.org> on 2012/07/18 18:27:34 UTC

[jira] [Created] (MATH-827) Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class

Gilles created MATH-827:
---------------------------

             Summary: Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class
                 Key: MATH-827
                 URL: https://issues.apache.org/jira/browse/MATH-827
             Project: Commons Math
          Issue Type: Task
            Reporter: Gilles
            Assignee: Gilles
            Priority: Minor
             Fix For: 3.1, 4.0


The "LegendreGaussIntegrator" class (in package "o.a.c.m.analysis.integration") has a misleading name. Internally, it uses the Legendre-Gauss quadrature rule on sub-intervals of the integration range but, additionally, it performs an iterative procedure to automatically determine the number of sub-intervals over which the rule will be successively applied.

The strict Gauss-Legendre quadrature scheme has now been implemented (cf. MATH-797) in package "o.a.c.m.analysis.integration.gauss".

I thus propose to:
# Deprecate "LegendreGaussIntegrator" in 3.1.
# Create a new "IterativeLegendreGaussIntegrator" class that will perform the same procedure as "LegendreGaussIntegrator" but will internally use the classes in package "o.a.c.m.analysis.integration.gauss" to perform the Gauss-Legendre quadrature part.
# Remove "LegendreGaussIntegrator" in 4.0.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MATH-827) Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class

Posted by "Gilles (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MATH-827?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13420353#comment-13420353 ] 

Gilles commented on MATH-827:
-----------------------------

"IterativeLegendreGaussIntegrator" added in revision 1364444.
"LegendreGaussIntegrator" deprecated in revision 1364452.

                
> Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class
> -------------------------------------------------------------------------------------
>
>                 Key: MATH-827
>                 URL: https://issues.apache.org/jira/browse/MATH-827
>             Project: Commons Math
>          Issue Type: Task
>            Reporter: Gilles
>            Assignee: Gilles
>            Priority: Minor
>              Labels: api-change
>             Fix For: 3.1, 4.0
>
>         Attachments: IterativeLegendreGaussIntegrator.java
>
>
> The "LegendreGaussIntegrator" class (in package "o.a.c.m.analysis.integration") has a misleading name. Internally, it uses the Legendre-Gauss quadrature rule on sub-intervals of the integration range but, additionally, it performs an iterative procedure to automatically determine the number of sub-intervals over which the rule will be successively applied.
> The strict Gauss-Legendre quadrature scheme has now been implemented (cf. MATH-797) in package "o.a.c.m.analysis.integration.gauss".
> I thus propose to:
> # Deprecate "LegendreGaussIntegrator" in 3.1.
> # Create a new "IterativeLegendreGaussIntegrator" class that will perform the same procedure as "LegendreGaussIntegrator" but will internally use the classes in package "o.a.c.m.analysis.integration.gauss" to perform the Gauss-Legendre quadrature part.
> # Remove "LegendreGaussIntegrator" in 4.0.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (MATH-827) Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class

Posted by "Gilles (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MATH-827?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gilles updated MATH-827:
------------------------

    Fix Version/s:     (was: 3.1)
    
> Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class
> -------------------------------------------------------------------------------------
>
>                 Key: MATH-827
>                 URL: https://issues.apache.org/jira/browse/MATH-827
>             Project: Commons Math
>          Issue Type: Task
>            Reporter: Gilles
>            Assignee: Gilles
>            Priority: Minor
>              Labels: api-change
>             Fix For: 4.0
>
>         Attachments: IterativeLegendreGaussIntegrator.java
>
>
> The "LegendreGaussIntegrator" class (in package "o.a.c.m.analysis.integration") has a misleading name. Internally, it uses the Legendre-Gauss quadrature rule on sub-intervals of the integration range but, additionally, it performs an iterative procedure to automatically determine the number of sub-intervals over which the rule will be successively applied.
> The strict Gauss-Legendre quadrature scheme has now been implemented (cf. MATH-797) in package "o.a.c.m.analysis.integration.gauss".
> I thus propose to:
> # Deprecate "LegendreGaussIntegrator" in 3.1.
> # Create a new "IterativeLegendreGaussIntegrator" class that will perform the same procedure as "LegendreGaussIntegrator" but will internally use the classes in package "o.a.c.m.analysis.integration.gauss" to perform the Gauss-Legendre quadrature part.
> # Remove "LegendreGaussIntegrator" in 4.0.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (MATH-827) Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class

Posted by "Gilles (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MATH-827?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gilles updated MATH-827:
------------------------

    Attachment: IterativeLegendreGaussIntegrator.java

See the proposed "IterativeLegendreGaussIntegrator" class.
                
> Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class
> -------------------------------------------------------------------------------------
>
>                 Key: MATH-827
>                 URL: https://issues.apache.org/jira/browse/MATH-827
>             Project: Commons Math
>          Issue Type: Task
>            Reporter: Gilles
>            Assignee: Gilles
>            Priority: Minor
>              Labels: api-change
>             Fix For: 3.1, 4.0
>
>         Attachments: IterativeLegendreGaussIntegrator.java
>
>
> The "LegendreGaussIntegrator" class (in package "o.a.c.m.analysis.integration") has a misleading name. Internally, it uses the Legendre-Gauss quadrature rule on sub-intervals of the integration range but, additionally, it performs an iterative procedure to automatically determine the number of sub-intervals over which the rule will be successively applied.
> The strict Gauss-Legendre quadrature scheme has now been implemented (cf. MATH-797) in package "o.a.c.m.analysis.integration.gauss".
> I thus propose to:
> # Deprecate "LegendreGaussIntegrator" in 3.1.
> # Create a new "IterativeLegendreGaussIntegrator" class that will perform the same procedure as "LegendreGaussIntegrator" but will internally use the classes in package "o.a.c.m.analysis.integration.gauss" to perform the Gauss-Legendre quadrature part.
> # Remove "LegendreGaussIntegrator" in 4.0.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MATH-827) Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class

Posted by "Gilles (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MATH-827?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13461756#comment-13461756 ] 

Gilles commented on MATH-827:
-----------------------------

Work done for 3.1; issue will be finalized when preparing 4.0.

                
> Replace class "LegendreGaussIntegrator" with "IterativeLegendreGaussIntegrator" class
> -------------------------------------------------------------------------------------
>
>                 Key: MATH-827
>                 URL: https://issues.apache.org/jira/browse/MATH-827
>             Project: Commons Math
>          Issue Type: Task
>            Reporter: Gilles
>            Assignee: Gilles
>            Priority: Minor
>              Labels: api-change
>             Fix For: 4.0
>
>         Attachments: IterativeLegendreGaussIntegrator.java
>
>
> The "LegendreGaussIntegrator" class (in package "o.a.c.m.analysis.integration") has a misleading name. Internally, it uses the Legendre-Gauss quadrature rule on sub-intervals of the integration range but, additionally, it performs an iterative procedure to automatically determine the number of sub-intervals over which the rule will be successively applied.
> The strict Gauss-Legendre quadrature scheme has now been implemented (cf. MATH-797) in package "o.a.c.m.analysis.integration.gauss".
> I thus propose to:
> # Deprecate "LegendreGaussIntegrator" in 3.1.
> # Create a new "IterativeLegendreGaussIntegrator" class that will perform the same procedure as "LegendreGaussIntegrator" but will internally use the classes in package "o.a.c.m.analysis.integration.gauss" to perform the Gauss-Legendre quadrature part.
> # Remove "LegendreGaussIntegrator" in 4.0.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira