aboutsummaryrefslogtreecommitdiff
path: root/src/ModularArithmetic
diff options
context:
space:
mode:
authorGravatar jadep <jade.philipoom@gmail.com>2016-07-18 09:37:36 -0400
committerGravatar jadep <jade.philipoom@gmail.com>2016-07-18 09:37:36 -0400
commit0fd535b57b93bada6cc00c2e372f2f94d2768567 (patch)
treeb7d7f7ea8e531cc306c812932c4544caa2ebf55a /src/ModularArithmetic
parentf8d72ab7f44ed944156bb969990f99bd93410a17 (diff)
ported IterAssocOp to use monoid rather than a billion context variables that add up to a monoid
Diffstat (limited to 'src/ModularArithmetic')
-rw-r--r--src/ModularArithmetic/ModularArithmeticTheorems.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ModularArithmetic/ModularArithmeticTheorems.v b/src/ModularArithmetic/ModularArithmeticTheorems.v
index 8e526745c..951f848bf 100644
--- a/src/ModularArithmetic/ModularArithmeticTheorems.v
+++ b/src/ModularArithmetic/ModularArithmeticTheorems.v
@@ -220,7 +220,7 @@ Section FandZ.
reflexivity.
Qed.
- Lemma pow_nat_iter_op_correct: forall (x:F m) n, (nat_iter_op mul 1) (N.to_nat n) x = x^n.
+ Lemma pow_nat_iter_op_correct: forall (x:F m) n, (@nat_iter_op _ mul 1) (N.to_nat n) x = x^n.
Proof.
induction n using N.peano_ind;
destruct (F_pow_spec x) as [pow_0 pow_succ];