chore(tests/lean/run/matrix): simplify same_dim_irrel proof
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
60d5e87a66
commit
42a8fb5965
1 changed files with 1 additions and 2 deletions
|
@ -5,8 +5,7 @@ variable same_dim {A : Type} : matrix A → matrix A → Prop
|
|||
variable add {A : Type} (m1 m2 : matrix A) {H : same_dim m1 m2} : matrix A
|
||||
|
||||
theorem same_dim_irrel {A : Type} {m1 m2 : matrix A} {H1 H2 : same_dim m1 m2} : @add A m1 m2 H1 = @add A m1 m2 H2 :=
|
||||
have eq : H1 = H2, from rfl,
|
||||
subst eq rfl
|
||||
rfl
|
||||
|
||||
theorem same_dim_eq_args {A : Type} {m1 m2 m1' m2' : matrix A} (H1 : m1 = m1') (H2 : m2 = m2') (H : same_dim m1 m2) : same_dim m1' m2' :=
|
||||
subst H1 (subst H2 H)
|
||||
|
|
Loading…
Reference in a new issue