Exit |
public enum ExitCondition
| Member name | Value | Description |
|---|---|---|
| None | 0 | No exit condition has been recorded. |
| InvalidValues | 1 | Invalid values were encountered. |
| ExceedIterations | 2 | The maximum number of iterations was exceeded. |
| RelativePoints | 3 | Relative point change tolerance was reached. |
| RelativeGradient | 4 | Relative gradient tolerance was reached. |
| LackOfProgress | 5 | Progress became insufficient. |
| AbsoluteGradient | 6 | Absolute gradient tolerance was reached. |
| WeakWolfeCriteria | 7 | The weak Wolfe criteria were satisfied. |
| BoundTolerance | 8 | The bound tolerance was reached. |
| StrongWolfeCriteria | 9 | The strong Wolfe criteria were satisfied. |
| Converged | 10 | The algorithm converged successfully. |
| ManuallyStopped | 11 | The algorithm was stopped manually. |
The ExitCondition type exposes the following members.
| Name | Description | |
|---|---|---|
| IsT |
Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions) | |
| WithClearedFlagT |
Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions) | |
| WithFlagT |
Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions) | |
| WithSetFlagT |
Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions) |