Change parameters#

This section illustrates the use of Gurobi parameters. Example params reads a MIP model from a file, then solves the model using four different values of the MIPFocus parameter, running for five seconds per value (MIPFocus chooses the high-level strategy that the MIP solver uses to solve the problem). It then chooses the parameter value that produced the smallest MIP gap, and continues solving the model until it achieves optimality.

The mechanics of setting a parameter are quite simple. To set the MIPFocus parameter in different APIs, do the following:

error = GRBsetintparam(modelenv, "MIPFocus", i);
if (error) goto QUIT;

Note

We should add one quick comment about how parameter settings propagate between different models. When we set the TimeLimit parameter on a model, then make a copy of that model, the parameter setting is carried over to the copy. When we set the MIPFocus parameter on the copy, that parameter change has no effect on the other copies, nor on the original model.