Remove Ord instances

This commit is contained in:
Michael Walker 2015-01-12 14:25:06 +00:00
parent 0f1675070b
commit bf91775629
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ data ThreadAction =
-- ^ Lift an action from the underlying monad.
| Stop
-- ^ Cease execution and terminate.
deriving (Eq, Ord, Show)
deriving (Eq, Show)
-- | Run a concurrent computation with a given 'Scheduler' and initial
-- state, returning a 'Just' if it terminates, and 'Nothing' if a

View File

@ -38,7 +38,7 @@ data Decision =
-- ^ Continue running the last thread for another step.
| SwitchTo ThreadId
-- ^ Pre-empt the running thread, and switch to another.
deriving (Eq, Ord, Show)
deriving (Eq, Show)
-- * SCT Runners