Bernardo Palma
- Total activity 11
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 2
Posts
Recent activity by Bernardo Palma-
Constrains to a shift start
AnsweredHello! I have this code to assign shift to a set of nurses: from gurobipy import *numday = 15num_nurses = ["a","b","c","Telly","e"]multis = { "a":[1,3],"b":[1,3],"c":[3,6],"Telly":[3,4],"e":[2,...
-
consecutive shifts constrains
AnsweredHi, i have a schedule problem in which i need to assign consecutive shift: if nurse "Telly" is assigned to day 3, she must work on "multis" consecutive days. 3,3+1,3+2,...,3+multis-1. I need to bu...