aboutsummaryrefslogtreecommitdiff
path: root/src/ModularArithmetic
diff options
context:
space:
mode:
authorGravatar Jason Gross <jagro@google.com>2016-07-19 17:02:53 -0700
committerGravatar Jason Gross <jagro@google.com>2016-07-19 17:06:15 -0700
commit89b3547b231851c739c58c20e2f19073a5cb4c5b (patch)
treeb8703b75c04b6b010e44cba48195ad2a1db486e1 /src/ModularArithmetic
parent24c557e38fac865e059832a17d6ae1591284bc42 (diff)
Work around bad design in Coq
This is https://coq.inria.fr/bugs/show_bug.cgi?id=4949, [intuition] should not use [auto with *] by default
Diffstat (limited to 'src/ModularArithmetic')
-rw-r--r--src/ModularArithmetic/ModularBaseSystemProofs.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ModularArithmetic/ModularBaseSystemProofs.v b/src/ModularArithmetic/ModularBaseSystemProofs.v
index c3b1b76b4..c06dcdf98 100644
--- a/src/ModularArithmetic/ModularBaseSystemProofs.v
+++ b/src/ModularArithmetic/ModularBaseSystemProofs.v
@@ -127,7 +127,7 @@ Section PseudoMersenneProofs.
Lemma add_rep : forall u v x y, u ~= x -> v ~= y -> BaseSystem.add u v ~= (x+y)%F.
Proof.
- autounfold; intuition. {
+ autounfold; intuition auto. {
unfold add.
auto using add_same_length.
}