Example usage for org.apache.commons.math3.analysis.solvers RiddersSolver RiddersSolver

List of usage examples for org.apache.commons.math3.analysis.solvers RiddersSolver RiddersSolver

Introduction

In this page you can find the example usage for org.apache.commons.math3.analysis.solvers RiddersSolver RiddersSolver.

Prototype

public RiddersSolver(double absoluteAccuracy) 

Source Link

Document

Construct a solver.

Usage

From source file:com.opengamma.strata.math.impl.rootfinding.RidderSingleRootFinder.java

/**
 * @param functionValueAccuracy The accuracy of the function evaluations.
 *///from  w ww  . ja  va2  s . c  om
public RidderSingleRootFinder(double functionValueAccuracy) {
    _ridder = new RiddersSolver(functionValueAccuracy);
}