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:
Luc Maisonobe 2009-01-18 19:48:52 +00:00
parent 2e405f1724
commit e2048a1dd3
11 changed files with 11 additions and 11 deletions

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

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

View File

@ -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 {

View File

@ -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 {

View File

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