When choosing the next node to be processed, Cplex maintains a candidate node to pick.

Namespace: ILOG.OPL
Assembly: oplall (in oplall.dll)

Syntax

C#
protected internal virtual bool Subsume(
	double evalNode,
	double evalCurrent
)

Parameters

evalNode
Type: System..::..Double
The evaluation value of the actual best candidate node.
evalCurrent
Type: System..::..Double
The evaluation value of the node being considered to replace the actual candidate.

Return Value

A Boolean value indicating whether the best candidate node should remain the same (true) or the current tested node should replace it (false).

See Also