Modifying Gurobi parameters

The next statement creates a list variable that will be used to modify a Gurobi parameter:

params <- list(OutputFlag=0)
In this example, we wish to set the GurobiOutputFlagparameter to 0 in order to shut off Gurobi output. The Gurobi R interface allows you to pass a list of the Gurobi parameters you would like to change. Please consult theParameterssection of theGurobi Reference Manualfor a complete list of all Gurobi parameters.