How to make Gurobi not printing the optimization information?
AnsweredDear community,
I use Gurobi with Python. After an optimization, Gurobi automatically prints out the optimization information as below. How to hide this information? Thank you!
-
Official comment
Please see our article : How do I suppress all console output from Gurobi?
-
Official comment
This post is more than three years old. Some information may not be up to date. For current information, please check the Gurobi Documentation or Knowledge Base. If you need more help, please create a new post in the community forum. Or why not try our AI Gurobot?. -
Hi Lin,
You can disable console output by setting the LogToConsole parameter to 0. To additionally disable output to a logfile, use the LogFile or OutputFlag parameters.
Thanks,
Eli
-1 -
Hi Eli,
How do i use this LogToConsole? I cant find any clear information on the usage of it anywhere.
Cheers,
Britt
1 -
You can find examples of how to set parameters for each API in the Parameter Examples section of our documentation. E.g., in Python:
import gurobipy as gp
m = gp.Model()
m.Params.LogToConsole = 0To also prevent license file information from printing to the console, please see the article How do I suppress all console output from Gurobi?.
3 -
Thanks, still very useful answer :)
0 -
Hi,
In case you use Gurobi with c++, you can use the following
// Env and model
GRBEnv env = GRBEnv();
GRBModel model = GRBModel(env);
//Avoid printing the LP solution in console
model.set(GRB_IntParam_LogToConsole, 0);0
Post is closed for comments.
Comments
7 comments