aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jadep <jade.philipoom@gmail.com>2017-03-30 18:13:16 -0400
committerGravatar jadep <jade.philipoom@gmail.com>2017-03-30 18:14:18 -0400
commit3699b1d915d446595ba92b3fd6cbc4efd4472906 (patch)
treee29ba0f468d2d8ffe02fc9d158b0b7a61d3f089b /src
parent192119ee17576016b2bc35685cd0ce9bdec54c0a (diff)
turn [Let]s into [Definition]s so they persist after the section
Diffstat (limited to 'src')
-rw-r--r--src/Specific/NewBaseSystemTest.v26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/Specific/NewBaseSystemTest.v b/src/Specific/NewBaseSystemTest.v
index 68250d5d7..595e4baea 100644
--- a/src/Specific/NewBaseSystemTest.v
+++ b/src/Specific/NewBaseSystemTest.v
@@ -17,20 +17,20 @@ Base: 25.5
Section Ops25p5.
Local Infix "^" := tuple : type_scope.
- (* These `Let`s will need to be passed as Ltac arguments (or cleverly
- inferred) when things are eventually automated *)
- Let wt := fun i : nat => 2^(25 * (i / 2) + 26 * ((i + 1) / 2)).
- Let sz := 10%nat.
- Let s : Z := 2^255.
- Let c : list B.limb := [(1, 19)].
- Let coef_div_modulus := 2. (* add 2*modulus before subtracting *)
- Let carry_chain := Eval vm_compute in (seq 0 sz) ++ ([0;1])%nat.
+ (* These definitions will need to be passed as Ltac arguments (or
+ cleverly inferred) when things are eventually automated *)
+ Definition wt := fun i : nat => 2^(25 * (i / 2) + 26 * ((i + 1) / 2)).
+ Definition sz := 10%nat.
+ Definition s : Z := 2^255.
+ Definition c : list B.limb := [(1, 19)].
+ Definition coef_div_modulus := 2. (* add 2*modulus before subtracting *)
+ Definition carry_chain := Eval vm_compute in (seq 0 sz) ++ ([0;1])%nat.
- (* These `Let`s are inferred from those above *)
- Let m := Eval vm_compute in Z.to_pos (s - Associational.eval c). (* modulus *)
- Let sz2 := Eval vm_compute in ((sz * 2) - 1)%nat.
- Let coef := Eval vm_compute in (@Positional.encode wt modulo div sz (coef_div_modulus * (s-Associational.eval c))). (* subtraction coefficient *)
- Let coef_mod : mod_eq m (Positional.eval (n:=sz) wt coef) 0 := eq_refl.
+ (* These definitions are inferred from those above *)
+ Definition m := Eval vm_compute in Z.to_pos (s - Associational.eval c). (* modulus *)
+ Definition sz2 := Eval vm_compute in ((sz * 2) - 1)%nat.
+ Definition coef := Eval vm_compute in (@Positional.encode wt modulo div sz (coef_div_modulus * (s-Associational.eval c))). (* subtraction coefficient *)
+ Definition coef_mod : mod_eq m (Positional.eval (n:=sz) wt coef) 0 := eq_refl.
Lemma sz_nonzero : sz <> 0%nat. Proof. vm_decide. Qed.
Lemma wt_nonzero i : wt i <> 0.