Nicolas Campbell
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 2
Comments
Recent activity by Nicolas Campbell-
Hi Jaromil, The minimal working example won't work without excel files but I will include code for you to see: from gurobipy import *import numpy as npimport pandas as pdimport numpy as npzones = [...
-
Thank you so much. This worked perfectly and you explanation was great. I also want to say that from what I have seen on other posts you guys are great help in this community. I am sure everyone ap...
-
Small addition: I did test out adding another constraint to x in the code model.addConstrs(x[time,zone] <=ub[zone] for time in times for zone in zones) This successfully constrains 'x', however, I...
-
Hi, Sorry it has taken a while to respond. I was away and it would take me time to make a minimal working example. I have made one now and I hope you can solve my issues. from gurobipy import *impo...