Hey,
I want to solve the following problem using drools planner: There are several jobs which should be worked through by a machine on one day. Each job has a length and a constraint that it only can be worked of between a fixed start and end date. For example there are three tasksJob | first possible start date | last possible start date | length |
A | 7:00 am | 8:30 am | 60 min |
B | 7:30 am | 10:00 am | 30 min |
C | 10:30 am | 12:00 pm | 60 min |
Job | Start date | End date |
A | 7:00 am | 8:00 am |
B | 8:00 am | 8:30 am |
C | 12:00 am | 1:00 pm |
Job | prevJob | nextJob |
A | null | Job B |
B | Job A | Job C |
C | Job B | null |
Job | Start date | End date |
A | 8:00 am | 9:00 am |
B | 7:30 am | 8:00 am |
C | 12:00 am | 1:00 pm |
Job | prevJob | nextJob |
Job A | Job B | Job C |
Job B | null | Job A |
Job C | Job A | null |