Setting params in the Callback
AnsweredUp until version 9.0, I was able to set params in the callback.
model.set(GRB.DoubleParam.Cutoff, value)
I am no longer able to do this?
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?. -
Changing parameters from within a callback has never been supported and could lead to undefined behavior with previous versions. To avoid this, Gurobi now returns an error.
Instead of setting a new Cutoff in a callback, you should terminate the optimization from your callback, change the parameter and resume.
0
Post is closed for comments.
Comments
2 comments