diff options
| author | Jasper Hugunin | 2020-12-15 20:48:37 -0800 |
|---|---|---|
| committer | Jasper Hugunin | 2020-12-15 20:48:37 -0800 |
| commit | 051f55b15195f77374dd434c05d4a13251b3f8bc (patch) | |
| tree | 7c1947390d650c2a9560eb3672d900c3e33b07d7 | |
| parent | 7f6883f9a5a6593e667ba4e21fdeccda5c80c589 (diff) | |
Modify Bool/Zerob.v to compile with -mangle-names
| -rw-r--r-- | theories/Bool/Zerob.v | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/theories/Bool/Zerob.v b/theories/Bool/Zerob.v index aff5008410..418fc88489 100644 --- a/theories/Bool/Zerob.v +++ b/theories/Bool/Zerob.v @@ -19,26 +19,26 @@ Definition zerob (n:nat) : bool := | S _ => false end. -Lemma zerob_true_intro : forall n:nat, n = 0 -> zerob n = true. +Lemma zerob_true_intro (n : nat) : n = 0 -> zerob n = true. Proof. destruct n; [ trivial with bool | inversion 1 ]. Qed. #[global] Hint Resolve zerob_true_intro: bool. -Lemma zerob_true_elim : forall n:nat, zerob n = true -> n = 0. +Lemma zerob_true_elim (n : nat) : zerob n = true -> n = 0. Proof. destruct n; [ trivial with bool | inversion 1 ]. Qed. -Lemma zerob_false_intro : forall n:nat, n <> 0 -> zerob n = false. +Lemma zerob_false_intro (n : nat) : n <> 0 -> zerob n = false. Proof. destruct n; [ destruct 1; auto with bool | trivial with bool ]. Qed. #[global] Hint Resolve zerob_false_intro: bool. -Lemma zerob_false_elim : forall n:nat, zerob n = false -> n <> 0. +Lemma zerob_false_elim (n : nat) : zerob n = false -> n <> 0. Proof. destruct n; [ inversion 1 | auto with bool ]. Qed. |
