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

net.finmath.modelling.ModelDescriptor 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 09.02.2018
 */

package net.finmath.modelling;

/**
 * Interface for a model descriptor.
 * For a description of the general concept see http://finmath.net/finmath-lib/concepts/separationofproductandmodel.
 *
 * @author Christian Fries
 * @version 1.0
 */
public interface ModelDescriptor {

	/**
	 * Return the version of the model description.
	 *
	 * @return Version number.
	 */
	Integer version();

	/**
	 * Return the name of the model represented by this descriptor.
	 *
	 * @return Name of the model.
	 */
	String name();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy