summaryrefslogtreecommitdiff
path: root/Theorem.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Theorem.hs')
-rw-r--r--Theorem.hs7
1 files changed, 0 insertions, 7 deletions
diff --git a/Theorem.hs b/Theorem.hs
index 699c2e8..c97a399 100644
--- a/Theorem.hs
+++ b/Theorem.hs
@@ -1,7 +1,5 @@
module Theorem (
Theorem(..),
-
- nullThm
) where
@@ -19,8 +17,3 @@ data Theorem = Theorem { thmHyp :: Set.Set Term
instance Show Theorem where
show a = (show . Set.toList . thmHyp $ a) ++ " |- " ++ (show . thmCon $ a)
-
-
-
-nullThm :: Theorem
-nullThm = Theorem Set.empty nullTerm