Skip to content

Commit 81fec2f

Browse files
authored
rm dup lemmas (#1129)
1 parent 489caf7 commit 81fec2f

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

CHANGELOG_UNRELEASED.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@
9090

9191
### Removed
9292

93+
- in `forms.v`:
94+
+ lemmas `eq_map_mx`, `map_mx_id`
95+
9396
### Infrastructure
9497

9598
### Misc

theories/forms.v

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,6 @@ Structure revop X Y Z (f : Y -> X -> Z) := RevOp {
3939
_ : forall x, f x =1 fun_of_revop^~ x
4040
}.
4141

42-
Lemma eq_map_mx (R S : ringType) m n (M : 'M[R]_(m,n))
43-
(g f : R -> S) : f =1 g -> M ^ f = M ^ g.
44-
Proof. by move=> eq_fg; apply/matrixP=> i j; rewrite !mxE. Qed.
45-
46-
Lemma map_mx_id (R : ringType) m n (M : 'M[R]_(m,n)) : M ^ id = M.
47-
Proof. by apply/matrixP=> i j; rewrite !mxE. Qed.
48-
4942
Lemma eq_map_mx_id (R : ringType) m n (M : 'M[R]_(m,n)) (f : R -> R) :
5043
f =1 id -> M ^ f = M.
5144
Proof. by move=> /eq_map_mx->; rewrite map_mx_id. Qed.

0 commit comments

Comments
 (0)