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 name | Value | Description | |
|---|---|---|---|
| ThreadId | 0 | See CPXCALLBACKINFO_THREADID in the callable library reference manual. | |
| NodeCount | 1 | See CPXCALLBACKINFO_NODECOUNT in the callable library reference manual. | |
| IterationCount | 2 | See CPXCALLBACKINFO_ITCOUNT in the callable library reference manual. | |
| BestSolution | 3 | See CPXCALLBACKINFO_BEST_SOL in the callable library reference manual. | |
| BestBound | 4 | See CPXCALLBACKINFO_BEST_BND in the callable library reference manual. | |
| Threads | 5 | See CPXCALLBACKINFO_THREADS in the callable library reference manual. | |
| Feasible | 6 | See CPXCALLBACKINFO_FEASIBLE in the callable library reference manual. | |
| Time | 7 | See CPXCALLBACKINFO_TIME in the callable library reference manual. | |
| DeterministicTime | 8 | See CPXCALLBACKINFO_DETTIME in the callable library reference manual. | |
| NodeUID | 9 | See CPXCALLBACKINFO_NODEUID in the callable library reference manual. | |
| NodeDepth | 10 | See CPXCALLBACKINFO_NODEDEPTH in the callable library reference manual. | |
| CandidateSource | 11 | See CPXCALLBACKINFO_CANDIDATE_SOURCE in the callable library reference manual. | |
| Restarts | 12 | See CPXCALLBACKINFO_RESTARTS in the callable library reference manual. | |
| AfterCutLoop | 13 | See CPXCALLBACKINFO_AFTERCUTLOOP in the callable library reference manual. | |
| NodesLeft | 14 | See 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.