From 03d38eb3190eb5e51fb18847fe0792013285bde5 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 8 Apr 2014 15:06:40 +1000 Subject: Reorganising source code --- Library/Theorem.hs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Library/Theorem.hs (limited to 'Library/Theorem.hs') diff --git a/Library/Theorem.hs b/Library/Theorem.hs deleted file mode 100644 index fc66cc2..0000000 --- a/Library/Theorem.hs +++ /dev/null @@ -1,19 +0,0 @@ -module Library.Theorem ( - Theorem(..), - ) where - - - -import qualified Data.Set as Set -import Library.TypeVar -import Library.Term - - - -data Theorem = Theorem { thmHyp :: Set.Set Term - , thmCon :: Term } deriving (Eq, Ord) - - - -instance Show Theorem where - show a = (show . Set.toList . thmHyp $ a) ++ " |- " ++ (show . thmCon $ a) -- cgit