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

net.finmath.integration.RealIntegral 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!
/*
 * (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
 *
 * Created on 23.03.2014
 */

package net.finmath.integration;

import java.util.function.DoubleUnaryOperator;

/**
 * Interface for real integral. An integral is a map which
 * maps a DoubleUnaryOperator to a double.
 *
 * This is a functional interface.
 *
 * @author Christian Fries
 * @version 1.0
 */
@FunctionalInterface
public interface RealIntegral {

	double integrate(DoubleUnaryOperator integrand);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy