Grzegorz Siekaniec
- 合計アクティビティ 20
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 3
- サブスクリプション 7
投稿
Grzegorz Siekaniecによる最近のアクティビティ-
Dual values for maximization problem with and without variable upper bound
回答済みHello, I have a maximization model with slightly different, but equivalent, formulations:1. Variables have bounds.2. Variables do not have bounds.3. Variables bounds are expressed as constraints. B...
-
Parameter tuning - guided search
回答済みAs far as I know, an automatic tuning tool perform its own search procedure through parameter space. It would be nice to be able to guide a search through a specific set of parameters and its value...
-
Farkas certificate
The background for my question is that I was implementing Benders decomposition and run into something strange while working on feasibility cuts. I wanted to use Farkas certificate as extreme ray o...
-
Usage of variable as key during building of model - Python API
回答済みI would like to use a "Var" as dictionary key while building a model. The underlying reason is that I would like to use "bidict" while building a model so I can easily reference "Var" when building...
-
How to surpress direct output to stdout if logging enabled - Python API
進行中I would like to suppress direct logging to stdout if logging is enabled. The reason is that for an example below (modified mip.py example): import sysimport loggingimport timefrom gurobipy import *...
-
Preferred way to check if variable value is non zero
回答済みUsing Python API, what is a preferred way to : 1. Check if variable value in a solution is non zero. 2. Get the list of non-zero variables. For '1' I checked the examples and it does not seem to be...