OneDimensionalOptimizer.IsBracketValid Property

Gets whether the algorithm's current bracket is valid.

Definition

Namespace: Extreme.Mathematics.Optimization
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public bool IsBracketValid { get; }

Return Value

Boolean
true if the current bracket is valid; otherwise false.

Remarks

A bracket is valid if, when looking for a minimum, the value of the objective function at the interior point is lower than the value of the objective function at both boundaries of the bracketing interval. A similar condition holds when looking for a maximum.

See Also