aboutsummaryrefslogtreecommitdiff
path: root/src/Util/NUtil.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/Util/NUtil.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/Util/NUtil.v')
-rw-r--r--src/Util/NUtil.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Util/NUtil.v b/src/Util/NUtil.v
index 6f50642c3..1faa1da95 100644
--- a/src/Util/NUtil.v
+++ b/src/Util/NUtil.v
@@ -126,7 +126,7 @@ Module N.
(0 <= z2 < 2 ^ (Z.of_nat sz2))%Z ->
Word.combine (ZNWord sz1 z1) (ZNWord sz2 z2) =
ZNWord (sz1 + sz2) (Z.lor z1 (Z.shiftl z2 (Z.of_nat sz1))).
- Proof.
+ Proof using Type.
cbv [ZNWord]; intros.
rewrite !Word.NToWord_nat.
match goal with |- ?a = _ => rewrite <- (Word.natToWord_wordToNat a) end.