Bhartendu Awasthi
- 合計アクティビティ 16
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 4
- サブスクリプション 3
アクティビティの概要
Bhartendu Awasthiさんの最近のアクティビティ-
Bhartendu Awasthiさんがコメントを作成しました:
Please find below the code listing : import gurobipy as gpfrom gurobipy import GRBimport itertools# ------- DATA -------#NbHouses = 5WorkerNames = ["Joe", "Jim"]TaskNames = [ "masonry", "carp...
-
Bhartendu Awasthiさんがコメントを作成しました:
Thanks Riley for the advice. Thanks David for your response. Regarding your question : The main issue is coming from the subproblems; the shift patterns that you are producing are always the same,...
-
Bhartendu Awasthiさんが投稿を作成しました:
Column generation with employee shift scheduling
ユーザーの入力を待っています。Hi, I am trying to apply column generation on an employee shift scheduling problem. Please find below my code. What I see with my code is that solving for the sub-problem always creates the same sh...
-
Bhartendu Awasthiさんがコメントを作成しました:
Thank you Riley. Learnt something new from your note. Regards Bhartendu
-
Bhartendu Awasthiさんがコメントを作成しました:
Thank you Riley. I was able to extend the no overlap constraint to include transition time constraints. It works. I will also, incorporate your strengthening constraints, but even without it Gurobi...
-
Bhartendu Awasthiさんが投稿を作成しました:
Scheduling with Gurobi - how to order / sequence tasks
回答済みI am using Gurobi to solve a popular scheduling problem. I am struggling to add a constraint which requires sequencing of different tasks. I am sharing some background around the problem below. Als...
-
Bhartendu Awasthiさんがコメントを作成しました:
WOW ! Thanks Riley for such a detailed explanation. Everything is crystal clear now.I will definitely use the above patterns in my live projects. Thanks again,Bhartendu
-
Bhartendu Awasthiさんがコメントを作成しました:
Thanks Riley for the prompt response. model = gp.Model("")ind = pd.Series(range(500))bin_varb = gppd.add_vars(model, ind, vtype="B") int_varb = gppd.add_vars(model, ind, vtype="I")# I want to expre...
-
Bhartendu Awasthiさんが投稿を作成しました:
How to add indicator constraints when using gurobipy pandas
回答済みI find gurobipy pandas very efficient in model building especially when the input data is very large and takes the form of a pandas data frame. Is there a way to write indicator constraints with gu...