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. After 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. You can also optionally call useSolution within your callback function to try to immediately compute a feasible solution from the specified values.

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.

Try Gurobi for Free

Choose the evaluation license that fits you best, and start working with our Expert Team for technical guidance and support.

Evaluation License
Get a free, full-featured license of the Gurobi Optimizer to experience the performance, support, benchmarking and tuning services we provide as part of our product offering.
Academic License
Gurobi supports the teaching and use of optimization within academic institutions. We offer free, full-featured copies of Gurobi for use in class, and for research.
Cloud Trial

Request free trial hours, so you can see how quickly and easily a model can be solved on the cloud.

Search