Returns the cutoff for the objective value when nodes are being solved during branch-and-cut search.

Namespace: ILOG.CPLEX
Assembly: ILOG.CPLEX (in ILOG.CPLEX.dll) Version: 22.1.1.0

Syntax

C#
protected double GetCutoff()
Visual Basic
Protected Function GetCutoff As Double

Return Value

The objective value cutoff.

Remarks

This value is typically computed from the objective value of an incumbent solution and the optimality gap tolerance. In the case of a minimization problem, for example, if the objective value of a node exceeds the cutoff value, the node can be pruned without the need to solve the node to optimality.

See Also