Apoorv Soral
Apoorv Soral
> Splitting a task may require an additional constraint, this is not hard coded, indeed a task is basically a time interval i.e. a lower bound and an upper bound....
```python #problem definition # First we created New problem datetime_obj=datetime.now() problem = ps.SchedulingProblem(str(project),delta_time=timedelta(hours=1),start_time=datetime_obj) #plan objective problem.add_objective_makespan(weight=1) #Task define #In our scenario we have 4 task #1.fixed Duration: 3 task is...
@tpaviot thanks much for your efforts and I am reviewing the PR and will update there Thanks again
@Kastakin I see in your gantt chart you have split a task over the horizon. I am also looking for something similar. Can you please help me with my issue...