1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00

Derive Eq, Ord, & Show instances for EvaluatingState.

This commit is contained in:
Rob Rix 2018-03-28 07:56:11 -04:00
parent bf2bab5255
commit e1dabed456

View File

@ -44,6 +44,10 @@ data EvaluatingState term value = EvaluatingState
, jumps :: IntMap.IntMap term
}
deriving instance (Eq (CellFor value), Eq (LocationFor value), Eq term, Eq value) => Eq (EvaluatingState term value)
deriving instance (Ord (CellFor value), Ord (LocationFor value), Ord term, Ord value) => Ord (EvaluatingState term value)
deriving instance (Show (CellFor value), Show (LocationFor value), Show term, Show value) => Show (EvaluatingState term value)
instance (Ord (LocationFor value), Semigroup (CellFor value)) => Semigroup (EvaluatingState term value) where
EvaluatingState e1 h1 m1 x1 j1 <> EvaluatingState e2 h2 m2 x2 j2 = EvaluatingState (e1 <> e2) (h1 <> h2) (m1 <> m2) (x1 <> x2) (j1 <> j2)