aboutsummaryrefslogtreecommitdiff
path: root/src/Reflection/Named/PositiveContext/DefaultsProperties.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/Reflection/Named/PositiveContext/DefaultsProperties.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/Reflection/Named/PositiveContext/DefaultsProperties.v')
-rw-r--r--src/Reflection/Named/PositiveContext/DefaultsProperties.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Reflection/Named/PositiveContext/DefaultsProperties.v b/src/Reflection/Named/PositiveContext/DefaultsProperties.v
index 0fb1254ce..435a4c74c 100644
--- a/src/Reflection/Named/PositiveContext/DefaultsProperties.v
+++ b/src/Reflection/Named/PositiveContext/DefaultsProperties.v
@@ -16,7 +16,7 @@ Section language.
Lemma name_list_unique_map_pos_of_succ_nat_seq a b
: name_list_unique (map BinPos.Pos.of_succ_nat (seq a b)).
- Proof.
+ Proof using Type.
unfold name_list_unique, oname_list_unique, mname_list_unique.
intros k n.
rewrite !map_map, firstn_map, skipn_map, firstn_seq, skipn_seq.
@@ -28,11 +28,11 @@ Section language.
Lemma name_list_unique_default_names_forf {var dummy t e}
: name_list_unique (@default_names_forf base_type_code op var dummy t e).
- Proof. apply name_list_unique_map_pos_of_succ_nat_seq. Qed.
+ Proof using Type. apply name_list_unique_map_pos_of_succ_nat_seq. Qed.
Lemma name_list_unique_default_names_for {var dummy t e}
: name_list_unique (@default_names_for base_type_code op var dummy t e).
- Proof. apply name_list_unique_map_pos_of_succ_nat_seq. Qed.
+ Proof using Type. apply name_list_unique_map_pos_of_succ_nat_seq. Qed.
Lemma name_list_unique_DefaultNamesFor {t e}
: name_list_unique (@DefaultNamesFor base_type_code op t e).
- Proof. apply name_list_unique_map_pos_of_succ_nat_seq. Qed.
+ Proof using Type. apply name_list_unique_map_pos_of_succ_nat_seq. Qed.
End language.