Jonathan Helgert
- 合計アクティビティ 7
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 2
- サブスクリプション 2
アクティビティの概要
Jonathan Helgertさんの最近のアクティビティ-
Jonathan Helgertさんが投稿を作成しました:
Missing documentation for Model.getQ() method
回答済みDear 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...
-
Jonathan Helgertさんがコメントを作成しました:
Hi Jaromił, thanks a lot for the hint with the MESSAGE callback! For anyone who stumbles across this post, here's how it works (Python >= 3.8 required): def logIncumbents(model, where): # MIP solut...
-
Jonathan Helgertさんが投稿を作成しました:
How to distinguish between branching-solutions and heuristic-solutions inside a MIP callback?
回答済みDear 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...