Bernardo Palma
- 合計アクティビティ 11
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 1
- サブスクリプション 2
投稿
Bernardo Palmaによる最近のアクティビティ-
Constrains to a shift start
回答済みHello! 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
回答済みHi, 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...