Click or drag to resize

EndCriteriaCheckStationaryPoint Method

Check if objective function changed by less than the function epsilon

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool CheckStationaryPoint(
	double fold,
	double fnew
)

Parameters

fold  Double

[Missing <param name="fold"/> documentation for "M:Altaxo.Calc.Optimization.EndCriteria.CheckStationaryPoint(System.Double,System.Double)"]

fnew  Double

[Missing <param name="fnew"/> documentation for "M:Altaxo.Calc.Optimization.EndCriteria.CheckStationaryPoint(System.Double,System.Double)"]

Return Value

Boolean

[Missing <returns> documentation for "M:Altaxo.Calc.Optimization.EndCriteria.CheckStationaryPoint(System.Double,System.Double)"]

Remarks
If the change in objective function is less than the function epsilon then a possible stationary point has been found. If the number of repeated iterations at this possible stationary point is greater than the maximum iterations at a station point then the ending criteria is set to CriteriaType.StationaryPoint and the function returns true;
See Also