Constants to query information from a CPLEX callback.

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

Syntax

C#
public enum Info
Visual Basic
Public Enumeration Info

Members

Member nameValueDescription
ThreadId0See CPXCALLBACKINFO_THREADID in the callable library reference manual.
NodeCount1See CPXCALLBACKINFO_NODECOUNT in the callable library reference manual.
IterationCount2See CPXCALLBACKINFO_ITCOUNT in the callable library reference manual.
BestSolution3See CPXCALLBACKINFO_BEST_SOL in the callable library reference manual.
BestBound4See CPXCALLBACKINFO_BEST_BND in the callable library reference manual.
Threads5See CPXCALLBACKINFO_THREADS in the callable library reference manual.
Feasible6See CPXCALLBACKINFO_FEASIBLE in the callable library reference manual.
Time7See CPXCALLBACKINFO_TIME in the callable library reference manual.
DeterministicTime8See CPXCALLBACKINFO_DETTIME in the callable library reference manual.
NodeUID9See CPXCALLBACKINFO_NODEUID in the callable library reference manual.
NodeDepth10See CPXCALLBACKINFO_NODEDEPTH in the callable library reference manual.
CandidateSource11See CPXCALLBACKINFO_CANDIDATE_SOURCE in the callable library reference manual.
Restarts12See CPXCALLBACKINFO_RESTARTS in the callable library reference manual.
AfterCutLoop13See CPXCALLBACKINFO_AFTERCUTLOOP in the callable library reference manual.
NodesLeft14See CPXCALLBACKINFO_NODESLEFT in the callable library reference manual.

Remarks

This enumeration defines the various pieces of information that can be queried from GetIntInfo(Info), GetLongInfo(Info), GetDoubleInfo(Info). Refer to Callback context in the Reference Manual of the Callable Library (C API) for further details about these values.

See Also