i'm trying to make a gantt diagram for scheduling jobs in round robin algorithm. The thing is I don't know how to restart a job,the best i could do was this:
@startgantt
[A] requires 5 days
[B] starts 1 days after [A]`s end and requires 3 days
[C] starts 1 days after [B]`s end and requires 5 days
[A] starts 1 days after [C]`s end and requires 2 days
[D] starts 1 days after [A]`s end and requires 3 days
[B] displays on same row as [A]
[C] displays on same row as [A]
[D] displays on same row as [A]
@endgantt
This outputs:
How can i make it work?