removed the (apparently pointless) signature constraint
authorpaulson
Mon, 28 Aug 2006 18:16:08 +0200
changeset 20422 35a6a4c863f1
parent 20421 d9606c64bc23
child 20423 593053389701
removed the (apparently pointless) signature constraint
src/HOL/Tools/res_clause.ML
--- a/src/HOL/Tools/res_clause.ML	Mon Aug 28 18:15:32 2006 +0200
+++ b/src/HOL/Tools/res_clause.ML	Mon Aug 28 18:16:08 2006 +0200
@@ -6,6 +6,7 @@
 Typed equality is treated differently.
 *)
 
+(*FIXME: is this signature necessary? Or maybe define and open a Basic_ResClause?*)
 signature RES_CLAUSE =
   sig
   exception CLAUSE of string * term
@@ -76,7 +77,7 @@
   val dfg_arity_clause: arityClause -> string
 end;
 
-structure ResClause : RES_CLAUSE =
+structure ResClause =
 struct
 
 (* Added for typed equality *)
@@ -880,8 +881,4 @@
     clnames
   end;
 
-
-
-
-
 end;