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

net.finmath.fouriermethod.calibration.ScalarParameterInformation 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.fouriermethod.calibration;

/**
 * An interface representing a scalar parameter.
 *
 * @author Alessandro Gnoatto
 */
public interface ScalarParameterInformation extends ParameterInformation{

	/**
	 * Boolean flag for parameters that need to be calibrated.
	 *
	 * @return true if the parameter must be calibrated.
	 */
	boolean getIsParameterToCalibrate();

	/**
	 * Returns the constraint.
	 *
	 * @return the constraint.
	 */
	ScalarConstraint getConstraint();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy