src/HOL/Tools/function_package/inductive_wrap.ML
changeset 21237 b803f9870e97
parent 21105 9e812f9f3a97
child 21365 4ee8e2702241
--- a/src/HOL/Tools/function_package/inductive_wrap.ML	Tue Nov 07 21:30:03 2006 +0100
+++ b/src/HOL/Tools/function_package/inductive_wrap.ML	Tue Nov 07 22:06:32 2006 +0100
@@ -3,21 +3,8 @@
     Author:     Alexander Krauss, TU Muenchen
 
 
-This is a wrapper around the inductive package which corrects some of its
-slightly annoying behaviours and makes the whole business more controllable.
-
-Specifically:
-
-- Following newer Isar conventions, declaration and definition are done in one step
-
-- The specification is expected in fully quantified form. This allows the client to 
-  control the variable order. The variables will appear in the result in the same order.
-  This is especially relevant for the elimination rule, where the order usually *does* matter.
-
-
-All this will probably become obsolete in the near future, when the new "predicate" package
-is in place.
-
+A wrapper around the inductive package, restoring the quantifiers in
+the introduction and elimination rules.
 *)
 
 signature FUNDEF_INDUCTIVE_WRAP =
@@ -36,7 +23,7 @@
     let
       val thy = theory_of_thm thm
       val frees = frees_in_term ctxt t 
-                                  |> remove (op =) lfix
+                  |> remove (op =) lfix
       val vars = Term.add_vars (prop_of thm) [] |> rev
                  
       val varmap = frees ~~ vars