From eb6a920cedbae15fcf0c5436f1d5bf61004e01c8 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Wed, 9 May 2018 13:48:34 -0400 Subject: [PATCH] :fire: the unused Eq1, Ord1, & Show1 instances for Configuration. --- src/Data/Abstract/Configuration.hs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Data/Abstract/Configuration.hs b/src/Data/Abstract/Configuration.hs index 54bdf0d81..d3364a5c2 100644 --- a/src/Data/Abstract/Configuration.hs +++ b/src/Data/Abstract/Configuration.hs @@ -21,7 +21,3 @@ deriving instance (Ord term, Ord location, Ord value, Ord (Cell location val deriving instance (Show term, Show location, Show value, Show (Cell location value)) => Show (Configuration term location value) deriving instance (Ord location, Foldable (Cell location)) => Foldable (Configuration term location) - -instance (Eq term, Eq location, Eq1 (Cell location)) => Eq1 (Configuration term location) where liftEq = genericLiftEq -instance (Ord term, Ord location, Ord1 (Cell location)) => Ord1 (Configuration term location) where liftCompare = genericLiftCompare -instance (Show term, Show location, Show1 (Cell location)) => Show1 (Configuration term location) where liftShowsPrec = genericLiftShowsPrec