diff options
| author | Cyril Cohen | 2018-09-12 14:49:06 +0200 |
|---|---|---|
| committer | Cyril Cohen | 2018-10-26 10:22:44 +0200 |
| commit | efbdb223b3329d6cae0cecebdb6d98453fb489d4 (patch) | |
| tree | cf54971f580b3f77504e3c9623700c718e2bbe3c /mathcomp/ssreflect/eqtype.v | |
| parent | 76fb3c00580488f75362153f6ea252f9b4d4084b (diff) | |
Statement of `bool_irrelevance` more consistent with its name.
Diffstat (limited to 'mathcomp/ssreflect/eqtype.v')
| -rw-r--r-- | mathcomp/ssreflect/eqtype.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mathcomp/ssreflect/eqtype.v b/mathcomp/ssreflect/eqtype.v index 7c2a48e..f32d390 100644 --- a/mathcomp/ssreflect/eqtype.v +++ b/mathcomp/ssreflect/eqtype.v @@ -274,7 +274,7 @@ Canonical bool_eqType := Eval hnf in EqType bool bool_eqMixin. Lemma eqbE : eqb = eq_op. Proof. by []. Qed. -Lemma bool_irrelevance (x y : bool) (E E' : x = y) : E = E'. +Lemma bool_irrelevance (b : bool) (p1 p2 : b) : p1 = p2. Proof. exact: eq_irrelevance. Qed. Lemma negb_add b1 b2 : ~~ (b1 (+) b2) = (b1 == b2). |
