Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion io-sim/src/Control/Monad/IOSimPOR/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ data SimState s a = SimState {
clocks :: !(Map ClockId UTCTime),
nextVid :: !VarId, -- ^ next unused 'TVarId'
nextTmid :: !TimeoutId, -- ^ next unused 'TimeoutId'
nextUniq :: !(Unique s), -- ^ next unused @'Unique' s@
-- | previous steps (which we may race with).
-- Note this is *lazy*, so that we don't compute races we will not reverse.
nextUniq :: !(Unique s), -- ^ next unused @'Unique' s@
races :: Races,
-- | control the schedule followed, and initial value
control :: !ScheduleControl,
Expand Down
Loading