Try our new documentation site (beta).
GRBCallback.setSolution()
Import solution values for a heuristic solution. Only available when
the where
member variable is equal to GRB.CB_MIPNODE
.
When you specify a heuristic solution from a callback, variables
initially take undefined values. You should use this method to
specify variable values. You can make multiple calls to
setSolution
from one callback invocation to specify values for
multiple sets of variables. At the end of the callback, if values
have been specified for any variables, the Gurobi optimizer will try
to compute a feasible solution from the specified values, possibly
filling in values for variables whose values were left undefined.
void | setSolution ( | GRBVar | v, |
double | val ) |
-
Arguments:
v: The variable whose values is being set.
val: The value of the variable in the new solution.
void | setSolution ( | GRBVar[] | xvars, |
double[] | sol ) |
-
Arguments:
xvars: The variables whose values are being set.
sol: The desired values of the specified variables in the new solution.