public interface org.apache.commons.math3.analysis.solvers.BaseUnivariateSolver<FUNC extends org.apache.commons.math3.analysis.UnivariateFunction>
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.apache.commons.math3.analysis.solvers.BaseUnivariateSolver
  super_class: java.lang.Object
{
  public abstract int getMaxEvaluations();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int getEvaluations();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract double getAbsoluteAccuracy();
    descriptor: ()D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract double getRelativeAccuracy();
    descriptor: ()D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract double getFunctionValueAccuracy();
    descriptor: ()D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract double solve(int, FUNC, double, );
    descriptor: (ILorg/apache/commons/math3/analysis/UnivariateFunction;DD)D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException, org.apache.commons.math3.exception.TooManyEvaluationsException
    Signature: (ITFUNC;DD)D
    MethodParameters:
         Name  Flags
      maxEval  
      f        
      min      
      max      

  public abstract double solve(int, FUNC, double, double, );
    descriptor: (ILorg/apache/commons/math3/analysis/UnivariateFunction;DDD)D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException, org.apache.commons.math3.exception.TooManyEvaluationsException
    Signature: (ITFUNC;DDD)D
    MethodParameters:
            Name  Flags
      maxEval     
      f           
      min         
      max         
      startValue  

  public abstract double solve(int, FUNC, );
    descriptor: (ILorg/apache/commons/math3/analysis/UnivariateFunction;D)D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (ITFUNC;D)D
    MethodParameters:
            Name  Flags
      maxEval     
      f           
      startValue  
}
Signature: <FUNC::Lorg/apache/commons/math3/analysis/UnivariateFunction;>Ljava/lang/Object;
SourceFile: "BaseUnivariateSolver.java"