
Bhartendu Awasthi
- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 3
Comments
Recent activity by Bhartendu Awasthi-
Please find below the code listing : import gurobipy as gpfrom gurobipy import GRBimport itertools# ------- DATA -------#NbHouses = 5WorkerNames = ["Joe", "Jim"]TaskNames = [ "masonry", "carp...
-
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,...
-
Thank you Riley. Learnt something new from your note. Regards Bhartendu
-
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...
-
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
-
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...