Try our new documentation site (beta).
Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
GRBcbproceed
void | GRBcbproceed ( | GRBModel | *model ) |
Generate a request to proceed to the next phase of the computation. This routine can be called from any callback. Note that the request is only accepted in a few phases of the algorithm, and it won't be acted upon immediately.
In the current Gurobi version, this callback allows you to proceed
from the NoRel heuristic to the standard MIP search. You can determine
the current algorithm phase using MIP_PHASE
,
MIPNODE_PHASE
, or MIPSOL_PHASE
queries from a callback.
Arguments:
model: The model.
Example usage:
if (solution_objective < target_value) { GRBcbproceed(model); }