All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.rootfinder.AbstractRootFinder Maven / Gradle / Ivy

Go to download

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy