net.finmath.rootfinder.AbstractRootFinder 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 12.10.2007
*
* (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
*/
package net.finmath.rootfinder;
/**
* @author Christian Fries
* @version 1.0
*/
public abstract class AbstractRootFinder implements RootFinder, RootFinderWithDerivative {
@Override
public void setValueAndDerivative(final double value, final double derivative) {
setValue(value);
}
}