net.finmath.rootfinder.RootFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-lib Show documentation
Show all versions of finmath-lib Show documentation
finmath lib is a Mathematical Finance Library in Java.
It provides algorithms and methodologies related to mathematical finance.
The newest version!
/*
* Created on 30.05.2004
*
* (c) Copyright Christian P. Fries, Germany.
* Contact: [email protected].
*/
package net.finmath.rootfinder;
/**
* This is the interface for a one dimensional root finder
* implemented as an question-and-answer algorithm.
*
* @author Christian Fries
* @date 2008-04-06
* @version 1.0
*/
public interface RootFinder {
/**
* @return Next point for which a value should be set
* using setValue
.
*/
double getNextPoint();
/**
* @param value Value corresponding to point returned
* by previous getNextPoint
call.
*/
void setValue(double value);
/**
* @return Returns the numberOfIterations.
*/
int getNumberOfIterations();
/**
* @return Best point obtained so far
*/
double getBestPoint();
/**
* @return Returns the accuracy.
*/
double getAccuracy();
/**
* @return Returns true if further improvement is not possible.
*/
boolean isDone();
}