From 5faabaf240316300e48cf37eae0d5e2bfd0ec66c Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 29 May 2012 07:30:50 +1000 Subject: All potential errors now caught into Nothings --- Theorem.hs | 7 ------- 1 file changed, 7 deletions(-) (limited to 'Theorem.hs') 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 -- cgit