tuned comments
authorblanchet
Thu, 16 May 2013 15:03:28 +0200
changeset 52035 dfa06e82a720
parent 52034 11b48e7a4e7e
child 52036 1aa2e40df9ff
tuned comments
src/HOL/Tools/ATP/atp_problem_generate.ML
--- a/src/HOL/Tools/ATP/atp_problem_generate.ML	Thu May 16 14:58:30 2013 +0200
+++ b/src/HOL/Tools/ATP/atp_problem_generate.ML	Thu May 16 15:03:28 2013 +0200
@@ -2182,7 +2182,6 @@
 
 fun line_of_tcon_clause type_enc (name, prems, (cl, T)) =
   if polymorphism_of_type_enc type_enc = Type_Class_Polymorphic then
-    (* ### FIXME: is the list of type variables exhaustive? *)
     Class_Memb (class_memb_prefix ^ name,
                 map (fn (cls, T) =>
                         (T |> dest_TVar |> tvar_name, map (`make_class) cls))
@@ -2561,10 +2560,7 @@
   | datatypes_of_sym_table _ _ _ _ _ = []
 
 fun decl_line_of_datatype (ty as AType ((_, s'), ty_args), ctrs, exhaust) =
-  let
-    (* ### FIXME: Test datatypes with sort constraints *)
-    val xs = map (fn AType (name, []) => name) ty_args
-  in
+  let val xs = map (fn AType (name, []) => name) ty_args in
     Datatype_Decl (datatype_decl_prefix ^ ascii_of s', map (rpair []) xs, ty,
                    ctrs, exhaust)
   end