Koen Timmermans
- 合計アクティビティ 20
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 7
投稿
Koen Timmermansによる最近のアクティビティ-
Improving model formulation and solving time
回答済みHi! I have a task scheduling problem that I'm trying to solve using a MILP model. It closely resembles a VRPTW (Vehicle Routing Problem with Time Windows). The exact model formulation can be found ...
-
MIP start did not produce a new incumbent solution with a feasible MIPStart
回答済みHi, I am using a self-written heuristic to find an initial feasible solution that I can provide to Gurobi as a MIPStart. After that I use the NoRelHeur to improve the solution before solving it fur...
-
Changing the NoRelHeurTime parameter for the NoRel Heuristic using Callbacks
進行中Hi, I'm using the No Relaxation heuristic to quickly find feasible solutions for my optimization problem, which works very well. I was wondering whether it is possible to change the NoRelHeurTime p...
-
Improving solving (gap closing) time
回答済みHi! I have a task scheduling problem that I'm trying to solve using a MILP model. It closely resembles a VRPTW (Vehicle Routing Problem with Time Windows). I use binary decision variable \(x_{ijk}\...
-
Adding constraint in gurobipy-pandas with arrays of different lengths
回答済みHi, Using \(\texttt{gurobipy-pandas}\), I want to create the following constraint: \[ z_{k} \geq y_{ik} \quad \forall i \in A, k \in K \] I have created y like this (ik_values_y as a multi index): ...
-
Flow conservation constraint in gurobipy-pandas
回答済みHi! I have a binary decision variable \(x_{ijk}\) and I want to implement the following flow conservation constraint: \[ \sum_{j \in A} x_{ijk} = \sum_{j \in A} x_{jik} \quad \forall i \in A, k \in...
-
Multi-index variable in gurobipy-pandas
回答済みHi! I am trying to define a binary decision variable \(x_{ijk}\) using gurobipy-pandas. I am working with two Pandas DataFrames: 1.) task_list, and 2.) vehicle_data. \(x_{ijk}\) is equal to 1 if ve...