method exported
authorkrauss
Tue, 07 Nov 2006 09:59:43 +0100
changeset 21201 803bc7672d17
parent 21200 2f6e276bfb93
child 21202 6649bf75b9dc
method exported
src/HOL/Tools/function_package/lexicographic_order.ML
--- a/src/HOL/Tools/function_package/lexicographic_order.ML	Tue Nov 07 09:41:14 2006 +0100
+++ b/src/HOL/Tools/function_package/lexicographic_order.ML	Tue Nov 07 09:59:43 2006 +0100
@@ -1,5 +1,5 @@
 (*  Title:       HOL/Tools/function_package/lexicographic_order.ML
-    ID:
+    ID:          $Id$
     Author:      Lukas Bulwahn, TU Muenchen
 
 Method for termination proofs with lexicographic orderings.
@@ -7,6 +7,7 @@
 
 signature LEXICOGRAPHIC_ORDER =
 sig
+    val lexicographic_order : Method.method
     val setup: theory -> theory
 end
 
@@ -238,6 +239,8 @@
             end
     end
 
-val setup = Method.add_methods [("lexicographic_order", Method.no_args (Method.SIMPLE_METHOD lexicographic_order_tac), "termination prover for lexicographic orderings")]
+val lexicographic_order = Method.SIMPLE_METHOD lexicographic_order_tac
+
+val setup = Method.add_methods [("lexicographic_order", Method.no_args lexicographic_order, "termination prover for lexicographic orderings")]
 
 end
\ No newline at end of file