trying to recover history for solvers
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@735530 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2e405f1724
commit
e2048a1dd3
|
@ -26,7 +26,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
|
|||
* <p>
|
||||
* The function should be continuous but not necessarily smooth.</p>
|
||||
*
|
||||
* @version $Revision: 724191 $ $Date: 2008-12-07 21:24:10 +0100 (dim., 07 déc. 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
*/
|
||||
public class BisectionSolver extends UnivariateRealSolverImpl {
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ import org.apache.commons.math.complex.Complex;
|
|||
* Laguerre's method is global in the sense that it can start with any initial
|
||||
* approximation and be able to solve all roots from that point.</p>
|
||||
*
|
||||
* @version $Revision: 724191 $ $Date: 2008-12-07 21:24:10 +0100 (dim., 07 déc. 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
* @since 1.2
|
||||
*/
|
||||
public class LaguerreSolver extends UnivariateRealSolverImpl {
|
||||
|
|
|
@ -32,7 +32,7 @@ import org.apache.commons.math.util.MathUtils;
|
|||
* restrict ourselves to real functions. Methods solve() and solve2() find
|
||||
* real zeros, using different ways to bypass complex arithmetics.</p>
|
||||
*
|
||||
* @version $Revision: 729291 $ $Date: 2008-12-24 11:47:53 +0100 (mer., 24 déc. 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
* @since 1.2
|
||||
*/
|
||||
public class MullerSolver extends UnivariateRealSolverImpl {
|
||||
|
|
|
@ -29,7 +29,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
|
|||
* <p>
|
||||
* The function should be continuous but not necessarily smooth.</p>
|
||||
*
|
||||
* @version $Revision: 729291 $ $Date: 2008-12-24 11:47:53 +0100 (mer., 24 déc. 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
*/
|
||||
public class NewtonSolver extends UnivariateRealSolverImpl {
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.apache.commons.math.util.MathUtils;
|
|||
* <p>
|
||||
* The function should be continuous but not necessarily smooth.</p>
|
||||
*
|
||||
* @version $Revision: 724191 $ $Date: 2008-12-07 21:24:10 +0100 (dim., 07 déc. 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
* @since 1.2
|
||||
*/
|
||||
public class RiddersSolver extends UnivariateRealSolverImpl {
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
|
|||
* <p>
|
||||
* The function is assumed to be continuous but not necessarily smooth.</p>
|
||||
*
|
||||
* @version $Revision: 724191 $ $Date: 2008-12-07 21:24:10 +0100 (dim., 07 déc. 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
*/
|
||||
public class SecantSolver extends UnivariateRealSolverImpl implements Serializable {
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
|
|||
* <p>
|
||||
* Implementations will search for only one zero in the given interval.</p>
|
||||
*
|
||||
* @version $Revision: 724191 $ $Date: 2008-12-07 21:24:10 +0100 (Sun, 07 Dec 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
*/
|
||||
public interface UnivariateRealSolver extends ConvergingAlgorithm {
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ package org.apache.commons.math.analysis.solvers;
|
|||
* BrentSolver solver = factory.newBrentSolver();
|
||||
* </pre>
|
||||
*
|
||||
* @version $Revision: 724191 $ $Date: 2008-12-07 21:24:10 +0100 (dim., 07 déc. 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
*/
|
||||
public abstract class UnivariateRealSolverFactory {
|
||||
/**
|
||||
|
|
|
@ -22,7 +22,7 @@ package org.apache.commons.math.analysis.solvers;
|
|||
* <p>
|
||||
* The default solver returned by this factory is a {@link BrentSolver}.</p>
|
||||
*
|
||||
* @version $Revision: 724191 $ $Date: 2008-12-07 21:24:10 +0100 (dim., 07 déc. 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
*/
|
||||
public class UnivariateRealSolverFactoryImpl extends UnivariateRealSolverFactory {
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
|
|||
* Provide a default implementation for several functions useful to generic
|
||||
* solvers.
|
||||
*
|
||||
* @version $Revision: 724191 $ $Date: 2008-12-07 21:24:10 +0100 (Sun, 07 Dec 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
*/
|
||||
public abstract class UnivariateRealSolverImpl
|
||||
extends ConvergingAlgorithmImpl implements UnivariateRealSolver {
|
||||
|
|
|
@ -23,7 +23,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
|
|||
/**
|
||||
* Utility routines for {@link UnivariateRealSolver} objects.
|
||||
*
|
||||
* @version $Revision: 724191 $ $Date: 2008-12-07 21:24:10 +0100 (dim., 07 déc. 2008) $
|
||||
* @version $Revision$ $Date$
|
||||
*/
|
||||
public class UnivariateRealSolverUtils {
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue