How do I suppress really all console output from Gurobi?
AnsweredI followed the first way to suppress all console output from Gurobi of the following article
But still there is output, namely the following:
Changed value of parameter LogToConsole to 0
Prev: 1 Min: 0 Max: 1 Default: 1
0
-
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?. -
In order to suppress all output, you have to set the OutputFlag parameter to 0 via your environment, e.g.,
env = gp.Env(empty=True)
env.setParam("OutputFlag",0)
env.start()
m = gp.Model("mip1", env=env)Best regards,
Jaromił2 -
Oh, that easy! Thank you!
0
Post is closed for comments.
Comments
3 comments