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

net.finmath.equities.pricer.EquityValuationResult Maven / Gradle / Ivy

Go to download

finmath lib is a Mathematical Finance Library in Java. It provides algorithms and methodologies related to mathematical finance.

There is a newer version: 6.0.19
Show newest version
package net.finmath.equities.pricer;

import java.util.HashMap;

import net.finmath.equities.pricer.EquityValuationRequest.CalculationRequestType;

/**
 * Class to store a pricing result provided by implementations of the IOptionPricer interface.
 *
 * @author Andreas Grotz
 */

public class EquityValuationResult {

	private final EquityValuationRequest request;
	private final HashMap results;

	public EquityValuationResult(
			final EquityValuationRequest request, final HashMap results)
	{
		this.request = request;
		this.results = results;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy