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

net.finmath.integration.RealIntegralInterface Maven / Gradle / Ivy

/*
 * (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
 */
@FunctionalInterface
public interface RealIntegralInterface {

	double integrate(DoubleUnaryOperator integrand);
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy