Identifies a branch type for a user-written callback.

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

Syntax

C#
public class BranchType
Visual Basic
Public Class BranchType

Remarks

This class identifies the branch type for Cplex.BranchCallback.

The branch type reports what type of branch Cplex is about to make when the BranchCallback is called. Possible types include:

  • BranchOnVariable reports branching on a single variable.
  • BranchOnSOS1 reports branching on an SOS of type 1.
  • BranchOnSOS2 reports branching on an SOS of type 2.
  • BranchOnAny reports a more complex branching.

Inheritance Hierarchy

System..::..Object
  ILOG.CPLEX..::..Cplex..::..BranchType

See Also