Originally posted by: AlexWhiter
i've got a problem somewhat like staff scheduling: I have a several kinds of vacations of different length and have to make personal schedule for every person, including quantity of working hours for each day and vacation schedule. And i totally cannot merge working hours and vacation constraints.
lamest way is
working_hours[periods]==availability_schedule[periods]*working_hours_schedule[periods],
where unavailability schedule is boolean.
but its not convex. So the best i've come up with is
working_hours[periods]==minl(availability_schedule[periods]*24,working_hours_schedule[periods])
is there any better method possible?
Thanks.
#DecisionOptimization#OPLusingCPLEXOptimizer