Class ObjectiveBoundEntry
- Namespace
- OptalCP
- Assembly
- OptalCP.dll
Single entry in the objective bound history.
public class ObjectiveBoundEntry
- Inheritance
-
ObjectiveBoundEntry
- Inherited Members
Remarks
Tracks when a new (better) bound on the objective was proved, along with the solve time and bound value. For minimization problems, this is the lower bound; for maximization, the upper bound.
See also:
- SolveResult.ObjectiveBoundHistory — for accessing the history.
Properties
SolveTime
Duration of the solve at the time the bound was found, in seconds.
public double SolveTime { get; }
Property Value
- double
Seconds elapsed.
Value
The new bound value.
public long? Value { get; }
Property Value
- long?
Bound value.
Remarks
For minimization problems, this is a lower bound on the objective. For maximization problems, this is an upper bound on the objective.