File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
io-sim/src/Control/Monad/IOSim Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -868,12 +868,15 @@ data ScheduleControl = ControlDefault
868
868
deriving (Eq , Ord , Show )
869
869
870
870
data ScheduleMod = ScheduleMod {
871
- scheduleModTarget :: StepId , -- when we reach this step
871
+ -- | Step at which the 'ScheduleMod' is activated.
872
+ scheduleModTarget :: StepId ,
873
+ -- | 'ScheduleControl' at the activation step. It is needed by
874
+ -- 'extendScheduleControl' when combining the discovered schedule with the
875
+ -- initial one.
872
876
scheduleModControl :: ScheduleControl ,
873
- -- which happens with this control
874
- scheduleModInsertion :: [StepId ] -- we should instead perform this sequence
875
- -- this *includes* the target step,
876
- -- not necessarily as the last step.
877
+ -- | Series of steps which are executed at the target step. This *includes*
878
+ -- the target step, not necessarily as the last step.
879
+ scheduleModInsertion :: [StepId ]
877
880
}
878
881
deriving (Eq , Ord )
879
882
You can’t perform that action at this time.
0 commit comments