aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2016-03-08 14:38:46 -0500
committerGravatar Jason Gross <jgross@mit.edu>2016-03-08 14:38:46 -0500
commit003f348b0b69236309467d8e543c4da2c853de1b (patch)
tree6b0993a3031ffbc4504d568d9e64491dcf42365a
parent406085b41e0b4d8cfc314da7abd3af4ac29d765b (diff)
Remove [Admitted]; [Qed] is now under a second
-rw-r--r--src/CompleteEdwardsCurve/CompleteEdwardsCurveTheorems.v10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/CompleteEdwardsCurve/CompleteEdwardsCurveTheorems.v b/src/CompleteEdwardsCurve/CompleteEdwardsCurveTheorems.v
index 01b3584c0..8ef1b95d4 100644
--- a/src/CompleteEdwardsCurve/CompleteEdwardsCurveTheorems.v
+++ b/src/CompleteEdwardsCurve/CompleteEdwardsCurveTheorems.v
@@ -18,10 +18,10 @@ Section CompleteEdwardsCurveTheorems.
postprocess [Fpostprocess; try exact Fq_1_neq_0; try assumption],
constants [Fconstant],
div (@Fmorph_div_theory q),
- power_tac (@Fpower_theory q) [Fexp_tac]).
+ power_tac (@Fpower_theory q) [Fexp_tac]).
Add Field Ffield_notConstant : (OpaqueFieldTheory q)
- (constants [notConstant]).
+ (constants [notConstant]).
Ltac clear_prm :=
generalize dependent a; intro a; intros;
@@ -34,7 +34,7 @@ Section CompleteEdwardsCurveTheorems.
mkPoint p1 pf1 = mkPoint p2 pf2.
Proof.
destruct p1, p2; intros; find_injection; intros; subst; apply f_equal.
- apply UIP_dec, F_eq_dec. (* this is a hack. We actually don't care about the equality of the proofs. However, we *can* prove it, and knowing it lets us use the universal equality instead of a type-specific equivalence, which makes many things nicer. *)
+ apply UIP_dec, F_eq_dec. (* this is a hack. We actually don't care about the equality of the proofs. However, we *can* prove it, and knowing it lets us use the universal equality instead of a type-specific equivalence, which makes many things nicer. *)
Qed.
Hint Resolve point_eq.
@@ -55,11 +55,11 @@ Section CompleteEdwardsCurveTheorems.
Lemma twistedAddAssoc : forall A B C, (A+(B+C) = (A+B)+C)%E.
Proof.
- (* The Ltac takes ~15s, the Qed takes longer than I have had patience for *)
+ (* The Ltac takes ~15s, the Qed no longer takes longer than I have had patience for *)
Edefn; F_field_simplify_eq; try abstract (rewrite ?@F_pow_2_r in *; clear_prm; F_nsatz);
repeat split; match goal with [ |- _ = 0%F -> False ] => admit end;
fail "unreachable".
- Admitted.
+ Qed.
Lemma zeroIsIdentity : forall P, (P + zero = P)%E.
Proof.