Click or drag to resize

EndCriteriaCheckStationaryPoint Method

Checks whether the objective function changed by less than the function epsilon.

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

Parameters

fold  Double
The previous objective function value.
fnew  Double
The current objective function value.

Return Value

Boolean
if the criterion is met; otherwise, .
Remarks
If the change in objective function is less than the function epsilon, a possible stationary point has been found. If the number of repeated iterations at this possible stationary point exceeds the maximum, the ending criterion is set to CriteriaType.StationaryPoint and the method returns .
See Also