public static enum IloCplex.Callback.Context.SolutionStrategy extends java.lang.Enum<IloCplex.Callback.Context.SolutionStrategy>
IloCplex.Callback.Context.postHeuristicSolution(ilog.concert.IloNumVar[], double[], int, int, double, ilog.cplex.IloCplex.Callback.Context.SolutionStrategy).| Enum Constant and Description |
|---|
CheckFeasible
See
CPXCALLBACKSOLUTION_CHECKFEAS in the callable library reference manual. |
NoCheck
See
CPXCALLBACKSOLUTION_NOCHECK in the callable library reference manual. |
Propagate
See
CPXCALLBACKSOLUTION_PROPAGATE in the callable library reference manual. |
Solve
See
CPXCALLBACKSOLUTION_SOLVE in the callable library reference manual. |
| Modifier and Type | Method and Description |
|---|---|
static IloCplex.Callback.Context.SolutionStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IloCplex.Callback.Context.SolutionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IloCplex.Callback.Context.SolutionStrategy NoCheck
CPXCALLBACKSOLUTION_NOCHECK in the callable library reference manual.public static final IloCplex.Callback.Context.SolutionStrategy CheckFeasible
CPXCALLBACKSOLUTION_CHECKFEAS in the callable library reference manual.public static final IloCplex.Callback.Context.SolutionStrategy Propagate
CPXCALLBACKSOLUTION_PROPAGATE in the callable library reference manual.public static final IloCplex.Callback.Context.SolutionStrategy Solve
CPXCALLBACKSOLUTION_SOLVE in the callable library reference manual.public static IloCplex.Callback.Context.SolutionStrategy[] values()
public static IloCplex.Callback.Context.SolutionStrategy valueOf(java.lang.String name)
java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullname - the name of the enum constant to be returned.