Click or drag to resize

ExitCondition Enumeration

Specifies the reason why an optimization algorithm terminated.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public enum ExitCondition
Members
Member nameValueDescription
None0 No exit condition has been recorded.
InvalidValues1 Invalid values were encountered.
ExceedIterations2 The maximum number of iterations was exceeded.
RelativePoints3 Relative point change tolerance was reached.
RelativeGradient4 Relative gradient tolerance was reached.
LackOfProgress5 Progress became insufficient.
AbsoluteGradient6 Absolute gradient tolerance was reached.
WeakWolfeCriteria7 The weak Wolfe criteria were satisfied.
BoundTolerance8 The bound tolerance was reached.
StrongWolfeCriteria9 The strong Wolfe criteria were satisfied.
Converged10 The algorithm converged successfully.
ManuallyStopped11 The algorithm was stopped manually.

The ExitCondition type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
See Also