aboutsummaryrefslogtreecommitdiff
path: root/src/Algebra.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-04-04 14:35:43 -0400
committerGravatar Jason Gross <jasongross9@gmail.com>2017-04-04 16:05:55 -0400
commit331fe3fcfb27d87dcfb0585ced3c051f19aaedf2 (patch)
treea9af1a7f8bba3fb1f6e7d1610ca1553f5e5f23c2 /src/Algebra.v
parent6cba3c4e0572e9d917d3578c39f4f85cd3799b54 (diff)
Add [Proof using] to most proofs
This closes #146 and makes `make quick` faster. The changes were generated by adding [Global Set Suggest Proof Using.] to GlobalSettings.v, and then following [the instructions for a script I wrote](https://github.com/JasonGross/coq-tools#proof-using-helper).
Diffstat (limited to 'src/Algebra.v')
-rw-r--r--src/Algebra.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Algebra.v b/src/Algebra.v
index 7f1310957..ca86b54e4 100644
--- a/src/Algebra.v
+++ b/src/Algebra.v
@@ -148,7 +148,7 @@ Section ZeroNeqOne.
Context {T eq zero one} `{@is_zero_neq_one T eq zero one} `{Equivalence T eq}.
Lemma one_neq_zero : not (eq one zero).
- Proof.
+ Proof using Type*.
intro HH; symmetry in HH. auto using zero_neq_one.
Qed.
End ZeroNeqOne.