aboutsummaryrefslogtreecommitdiff
path: root/src/Util/FixCoqMistakes.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2016-10-19 13:29:24 -0400
committerGravatar Jason Gross <jgross@mit.edu>2016-10-19 13:29:24 -0400
commit073e454f6b3cef02696eb3913c7c1ee4f0e71247 (patch)
treefd9f929ad1271ea3d3beeba3c0574ddd5870a693 /src/Util/FixCoqMistakes.v
parent79c848f7b252849c8b99430eb6d7b3dd3920a88a (diff)
Fix broken [firstorder auto with *] >:-(
Diffstat (limited to 'src/Util/FixCoqMistakes.v')
-rw-r--r--src/Util/FixCoqMistakes.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Util/FixCoqMistakes.v b/src/Util/FixCoqMistakes.v
index 28f1ac757..26fc103c1 100644
--- a/src/Util/FixCoqMistakes.v
+++ b/src/Util/FixCoqMistakes.v
@@ -9,6 +9,11 @@ Require Export Crypto.Util.GlobalSettings.
Tactic Notation "intuition" tactic3(tactic) := intuition tactic.
Tactic Notation "intuition" := intuition auto.
+(** [firstorder] means [firstorder auto with *]. This is very wrong
+ and fragile and slow. We make [firstorder] mean [firstorder
+ auto]. *)
+Global Set Firstorder Solver auto.
+
(** A version of [intuition] that allows you to see how the old
[intuition] tactic solves the proof. *)
Ltac debug_intuition := idtac "<infomsg>Warning: debug_intuition should not be used in production code.</infomsg>"; intuition debug auto with *.