merged
authorwenzelm
Sun, 02 Jul 2023 20:41:07 +0200
changeset 78247 d4125fc10c0c
parent 78239 4fe65149f3fd (diff)
parent 78246 76dd9b9cf624 (current diff)
child 78249 1260be3f33a4
merged
--- a/NEWS	Sun Jul 02 20:09:12 2023 +0200
+++ b/NEWS	Sun Jul 02 20:41:07 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	Sun Jul 02 20:09:12 2023 +0200
+++ b/src/HOL/Tools/try0.ML	Sun Jul 02 20:41:07 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;