From 7488682db4cf259e0bb0c886e13301c32a2eeaa2 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Fri, 2 Jun 2017 00:01:35 -0400 Subject: Don't rely on autogenerated names This fixes all of the private-names warnings emitted by compiling fiat-crypto with https://github.com/coq/coq/pull/268 (minus the ones in coqprime, which I didn't touch). --- src/Specific/ArithmeticSynthesisTest130.v | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/Specific/ArithmeticSynthesisTest130.v') diff --git a/src/Specific/ArithmeticSynthesisTest130.v b/src/Specific/ArithmeticSynthesisTest130.v index 6454bfbf1..15485499b 100644 --- a/src/Specific/ArithmeticSynthesisTest130.v +++ b/src/Specific/ArithmeticSynthesisTest130.v @@ -115,7 +115,7 @@ Section Ops51. let eval := Positional.Fdecode (m:=m) wt in eval (add a b) = (eval a + eval b)%F }. Proof. - eexists; cbv beta zeta; intros. + eexists; cbv beta zeta; intros a b. pose proof wt_nonzero. let x := constr:( Positional.add_cps (n := sz) wt a b id) in @@ -128,7 +128,7 @@ Section Ops51. let eval := Positional.Fdecode (m:=m) wt in eval (sub a b) = (eval a - eval b)%F}. Proof. - eexists; cbv beta zeta; intros. + eexists; cbv beta zeta; intros a b. pose proof wt_nonzero. let x := constr:( Positional.sub_cps (n:=sz) (coef := coef) wt a b id) in @@ -141,7 +141,7 @@ Section Ops51. let eval := Positional.Fdecode (m := m) wt in eval (opp a) = F.opp (eval a)}. Proof. - eexists; cbv beta zeta; intros. + eexists; cbv beta zeta; intros a. pose proof wt_nonzero. let x := constr:( Positional.opp_cps (n:=sz) (coef := coef) wt a id) in @@ -154,7 +154,7 @@ Section Ops51. let eval := Positional.Fdecode (m := m) wt in eval (mul a b) = (eval a * eval b)%F}. Proof. - eexists; cbv beta zeta; intros. + eexists; cbv beta zeta; intros a b. pose proof wt_nonzero. let x := constr:( Positional.mul_cps (n:=sz) (m:=sz2) wt a b @@ -176,7 +176,7 @@ Section Ops51. let eval := Positional.Fdecode (m := m) wt in eval (carry a) = eval a}. Proof. - eexists; cbv beta zeta; intros. + eexists; cbv beta zeta; intros a. pose proof wt_nonzero. pose proof wt_divides_chain1. pose proof div_mod. pose proof wt_divides_chain2. let x := constr:( -- cgit v1.2.3