summaryrefslogtreecommitdiff
path: root/Library/Theorem.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Theorem.hs')
-rw-r--r--Library/Theorem.hs19
1 files changed, 0 insertions, 19 deletions
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)