Skip to content

Commit c20b3da

Browse files
Update theories/boolp.v
Co-authored-by: Cyril Cohen <CohenCyril@users.noreply.github.com>
1 parent c861ce8 commit c20b3da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

theories/boolp.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -366,11 +366,11 @@ Lemma notLR P Q : (P = ~ Q) -> (~ P) = Q. Proof. exact: canLR notK. Qed.
366366

367367
Lemma notRL P Q : (~ P) = Q -> P = ~ Q. Proof. exact: canRL notK. Qed.
368368

369-
Lemma iff_notP (P Q : Prop) : (P <-> ~ Q) <-> (~ P <-> Q).
369+
Lemma iff_notr (P Q : Prop) : (P <-> ~ Q) <-> (~ P <-> Q).
370370
Proof. by split=> [/propext ->|/propext <-]; rewrite notK. Qed.
371371

372-
Lemma iff_not (P Q : Prop) : (P <-> Q) <-> (~ P <-> ~ Q).
373-
Proof. by split=> [PQ|/iff_notP]; [apply/iff_notP|]; rewrite notK. Qed.
372+
Lemma iff_not2 (P Q : Prop) : (~ P <-> ~ Q) <-> (P <-> Q).
373+
Proof. by split=> [iff_notP|PQ]; [|apply/iff_notP]; rewrite notK. Qed.
374374

375375
(* -------------------------------------------------------------------- *)
376376
(* assia : let's see if we need the simplpred machinery. In any case, we sould

0 commit comments

Comments
 (0)