summaryrefslogtreecommitdiff
path: root/Object.hs
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2012-05-11 17:52:22 +1000
committerJed Barber <jjbarber@y7mail.com>2012-05-11 17:52:22 +1000
commit255ba39c758535589dfd66ffb6efb108919ecc08 (patch)
treecd76b9e5edfd85b8bb9d61d151a238134e0ebd83 /Object.hs
parent6b9b4e90e4f3bea26834d641899621ad02285b14 (diff)
Incorporated use of Data.Set and Data.Map
Diffstat (limited to 'Object.hs')
-rw-r--r--Object.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Object.hs b/Object.hs
index 640cf08..5b2130c 100644
--- a/Object.hs
+++ b/Object.hs
@@ -21,7 +21,7 @@ data Object = ObjNum { objNum :: Number }
| ObjConst { objConst :: Const }
| ObjVar { objVar :: Var }
| ObjTerm { objTerm :: Term }
- | ObjThm { objThm :: Theorem } deriving (Eq)
+ | ObjThm { objThm :: Theorem } deriving (Eq, Ord)
type List = [Object]