Igor Ganapolsky
- 合計アクティビティ 19
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 2
- サブスクリプション 9
アクティビティの概要
Igor Ganapolskyさんの最近のアクティビティ-
Igor Ganapolskyさんがコメントを作成しました:
You're not misreading it - the implied ranges matter too, not just explicit coefficients and RHS. Gurobi's recommended ranges apply to variable bounds as well, and for a bilinear or general nonline...
-
Igor Ganapolskyさんがコメントを作成しました:
Thanks Bruce — 30x vs HiGHS on the same JSON/slack model is the result that matters. Keep both solvers as a check; use Gurobi for the live season run.Practical note: encode the 4 variations as slac...
-
Igor Ganapolskyさんがコメントを作成しました:
The bottleneck is very likely not Gurobi but what you send back through the Pool. 1) You return result['model'], a live Gurobi model object. Gurobi Model/Env objects are not picklable, and even whe...
-
Igor Ganapolskyさんがコメントを作成しました:
A few things from your log that usually explain slow bound movement here. 1) Nearly all your constraints are equalities defining auxiliary products/powers (u1_sq = u1^2, c1_1_sq = c1_1^2, d1_c1_1_s...
-
Igor Ganapolskyさんがコメントを作成しました:
-scaling checklist that has helped on energy-system MILPs with ranges like yours (GW vs m² vs tonnes): 1. Rescale PV area/irradiance into the same order as other power terms (e.g. express capacity ...
-
Igor Ganapolskyさんがコメントを作成しました:
Adding a practical recovery pattern on top of Gwyneth's ServerTimeout tip: 1. Treat DISCONNECTED as a hard session loss — do not reuse the old Env/Model. Build a fresh gp.Env() with current Instant...
-
Igor Ganapolskyさんがコメントを作成しました:
Adding to Ryuta's answer: grbgetkey only exists if you installed the full Gurobi Optimizer distribution and its bin directory is on your PATH. If you installed with "pip install gurobipy", there is...
-
Igor Ganapolskyさんがコメントを作成しました:
Great use case - clerkship block scheduling is a classic assignment/timetabling MIP. Two things that helped on similar rostering models: (1) Symmetry: if blocks or identical sites are interchangeab...