DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=35949>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=35949 Summary: [math][patch] Add UnivariateRealIntegrator.java Product: Commons Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: P1 Component: Math AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] Index: src/java/org/apache/commons/math/analysis/UnivariateRealIntegrator.java =================================================================== --- src/java/org/apache/commons/math/analysis/UnivariateRealIntegrator.java (revision 0) +++ src/java/org/apache/commons/math/analysis/UnivariateRealIntegrator.java (revision 0) @@ -0,0 +1,124 @@ +/* + * Copyright 2003-2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.commons.math.analysis; + +import org.apache.commons.math.ConvergenceException; +import org.apache.commons.math.FunctionEvaluationException; + +/** + * Interface for univariate real integration algorithms. + * + * @version $Revision$ $Date: 2005-02-26 05:11:52 -0800 (Sat, 26 Feb 2005) $ + */ +public interface UnivariateRealIntegrator { + + /** + * Set the upper limit for the number of iterations. + * <p> + * Usually a high iteration count indicates convergence problem. However, + * the "reasonable value" varies widely for different cases. Users are + * advised to use the default value. + * <p> + * A <code>ConvergenceException</code> will be thrown if this number + * is exceeded. + * + * @param count maximum number of iterations + */ + void setMaximalIterationCount(int count); + + /** + * Get the upper limit for the number of iterations. + * + * @return the actual upper limit + */ + int getMaximalIterationCount(); + + /** + * Reset the upper limit for the number of iterations to the default. + * <p> + * The default value is supplied by the implementation. + * + * @see #setMaximalIterationCount(int) + */ + void resetMaximalIterationCount(); + + /** + * Set the relative accuracy. + * <p> + * This is used to stop iterations. + * + * @param accuracy the relative accuracy + * @throws IllegalArgumentException if the accuracy can't be achieved + * or is otherwise deemed unreasonable + */ + void setRelativeAccuracy(double accuracy); + + /** + * Get the actual relative accuracy. + * + * @return the accuracy + */ + double getRelativeAccuracy(); + + /** + * Reset the relative accuracy to the default. + * <p> + * The default value is provided by the implementation. + * + * @see #setRelativeAccuracy(double) + */ + void resetRelativeAccuracy(); + + /** + * Integrate the function in the given interval. + * + * @param min the lower bound for the interval + * @param max the upper bound for the interval + * @return the value of integral + * @throws ConvergenceException if the maximum iteration count is exceeded + * or the integrator detects convergence problems otherwise + * @throws FunctionEvaluationException if an error occurs evaluating the + * function + * @throws IllegalArgumentException if min > max or the endpoints do not + * satisfy the requirements specified by the integrator + */ + double integrate(double min, double max) throws ConvergenceException, + FunctionEvaluationException; + + /** + * Get the result of the last run of the integrator. + * + * @return the last result + * @throws IllegalStateException if there is no result available, either + * because no result was yet computed or the last attempt failed + */ + double getResult(); + + /** + * Get the number of iterations in the last run of the integrator. + * <p> + * This is mainly meant for testing purposes. It may occasionally + * help track down performance problems: if the iteration count + * is notoriously high, check whether the function is evaluated + * properly, and whether another integrator is more amenable to the + * problem. + * + * @return the last iteration count + * @throws IllegalStateException if there is no result available, either + * because no result was yet computed or the last attempt failed + */ + int getIterationCount(); +} -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
