add proof method "order" to command "try0"
authordesharna
Sun, 02 Jul 2023 14:28:20 +0200
changeset 78239 4fe65149f3fd
parent 78238 8c0d3c879f7c
child 78247 d4125fc10c0c
child 78248 740b23f1138a
add proof method "order" to command "try0"
NEWS
src/HOL/Tools/try0.ML
--- a/NEWS	Sat Jul 01 16:47:52 2023 +0200
+++ b/NEWS	Sun Jul 02 14:28:20 2023 +0200
@@ -76,6 +76,9 @@
   - Made clausifier more robust in the face of nested lambdas.
     Minor INCOMPATIBILITY.
 
+* Command "try0":
+  - Add proof method "order".
+
 * 'primcorec': Made the internal tactic more robust in the face of
   nested corecursion.
 
--- a/src/HOL/Tools/try0.ML	Sat Jul 01 16:47:52 2023 +0200
+++ b/src/HOL/Tools/try0.ML	Sun Jul 02 14:28:20 2023 +0200
@@ -93,7 +93,8 @@
    ("fastforce", ((false, false), full_attrs)),
    ("force", ((false, false), full_attrs)),
    ("meson", ((false, false), metis_attrs)),
-   ("satx", ((false, false), no_attrs))];
+   ("satx", ((false, false), no_attrs)),
+   ("order", ((false, true), no_attrs))];
 
 val apply_methods = map apply_named_method named_methods;