public interface  org.apache.commons.math.analysis.solvers.BaseUnivariateSolver extends java.lang.Object
{
public abstract int getMaxEvaluations();
public abstract int getEvaluations();
public abstract double getAbsoluteAccuracy();
public abstract double getRelativeAccuracy();
public abstract double getFunctionValueAccuracy();
public abstract double solve(int, org.apache.commons.math.analysis.UnivariateFunction, double, double) throws org.apache.commons.math.exception.MathIllegalArgumentException, org.apache.commons.math.exception.TooManyEvaluationsException;
public abstract double solve(int, org.apache.commons.math.analysis.UnivariateFunction, double, double, double) throws org.apache.commons.math.exception.MathIllegalArgumentException, org.apache.commons.math.exception.TooManyEvaluationsException;
public abstract double solve(int, org.apache.commons.math.analysis.UnivariateFunction, double);
}