aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Frédéric Besson <frederic.besson@inria.fr>2018-09-25 09:57:28 +0200
committerGravatar Jason Gross <jasongross9@gmail.com>2018-09-25 14:24:27 -0400
commit226b85c55a11e57b2b42edfb83c0b39136ed9128 (patch)
tree88ef76bd8b9db5739742a8af23bc6f4e0f81e804 /src
parent36b87035cd5db37e9c1fcd58e82376523cfd9a7d (diff)
Compatibility with coq PR #8457
Explicitly clear hypothesis Bv_bound so that lia cannot use it.
Diffstat (limited to 'src')
-rw-r--r--src/Experiments/NewPipeline/Arithmetic.v1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Experiments/NewPipeline/Arithmetic.v b/src/Experiments/NewPipeline/Arithmetic.v
index e8a814ffb..a339e219f 100644
--- a/src/Experiments/NewPipeline/Arithmetic.v
+++ b/src/Experiments/NewPipeline/Arithmetic.v
@@ -3722,6 +3722,7 @@ Module WordByWordMontgomery.
Qed.
Lemma opp_bound : 0 <= eval (opp Av) < eval N.
Proof using small_Av R_numlimbs_nz N_nz Av_bound.
+ clear Bv_bound.
generalize eval_opp; break_innermost_match; Z.ltb_to_lt; lia.
Qed.
End add_sub.