diff options
author | Jed Barber <jjbarber@y7mail.com> | 2012-09-13 02:14:04 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2012-09-13 02:14:04 +1000 |
commit | ea3f1f7736c57747e743a5106b917d2853c62f57 (patch) | |
tree | f6aa645c04b3606694184fa9b949abd020550643 /Theorem.hs | |
parent | ec95ea382132f0702e5046a721e4d8ea4cdc82e3 (diff) |
Cleaner directory structure, addition of make clean, grouping of library modules into a single package
Diffstat (limited to 'Theorem.hs')
-rw-r--r-- | Theorem.hs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Theorem.hs b/Theorem.hs deleted file mode 100644 index c97a399..0000000 --- a/Theorem.hs +++ /dev/null @@ -1,19 +0,0 @@ -module Theorem ( - Theorem(..), - ) where - - - -import qualified Data.Set as Set -import TypeVar -import 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) |