Skip to content
Snippets Groups Projects
Commit 6bb6dce9 authored by unknown's avatar unknown
Browse files

Add comment correction on ThreeStepCycling Scheduler

parent 41650375
Branches
No related tags found
No related merge requests found
......@@ -3,12 +3,13 @@ package mas.implementation.schedulers;
import mas.core.ThreeStepCyclable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Executors;
/**
* Execution cadencé en 3 phases (tous perception puis tous decision puis tous action)
* The ThreeStepCycling scheduler schedules tasks using a {@link Executors#newCachedThreadPool()}.
* It works like a {@link FairCycling} scheduler but it schedules {@link ThreeStepCyclable}
* In every cycle every cyclable does the perception phase then the decision phase and then the action phase
*/
public class ThreeStepCycling extends FairCycling<ThreeStepCyclable> {
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment