net.finmath.fouriermethod.calibration.ScalarParameterInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-lib Show documentation
Show all versions of finmath-lib Show documentation
finmath lib is a Mathematical Finance Library in Java.
It provides algorithms and methodologies related to mathematical finance.
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();
}