Jonathan Helgert
- Total activity 7
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 2
Posts
Recent activity by Jonathan Helgert-
Missing documentation for Model.getQ() method
AnsweredDear gurobi team, I noticed by accident there's a Model.getQ() method in the Python API. Unfortunately, there's no docstring and the method is not listed on the official docs. In [30]: ?m.getQSigna...
-
How to distinguish between branching-solutions and heuristic-solutions inside a MIP callback?
AnsweredDear Gurobi team, I have implemented a callback using the python API to log each new found MIP incumbent and the corresponding runtime: def logIncumbents(model, where): # MIP solution callback if...