Class TurboRootFinder

java.lang.Object
com.github.gbenroscience.math.numericalmethods.TurboRootFinder

public class TurboRootFinder extends Object
High-performance root finder utilizing MethodHandles. Fallback Chain: Newtonian -> Brent's -> Secant -> Bisection -> Self-Evaluator * @author GBEMIRO
  • Field Details

  • Constructor Details

    • TurboRootFinder

      public TurboRootFinder(MethodHandle targetHandle, MethodHandle derivativeHandle, int varIndex, double x1, double x2, int iterations)
  • Method Details

    • findRoots

      public double findRoots()