12 lines
364 B
Text
12 lines
364 B
Text
|
set_option blast.simp false
|
||
|
|
||
|
example (A : Type₁) (a₁ a₂ : A) : a₁ = a₂ →
|
||
|
(λ (B : Type₁) (f : A → B), f a₁) = (λ (B : Type₁) (f : A → B), f a₂) :=
|
||
|
by blast
|
||
|
|
||
|
set_option blast.simp true
|
||
|
|
||
|
example (A : Type₁) (a₁ a₂ : A) : a₁ = a₂ →
|
||
|
(λ (B : Type₁) (f : A → B), f a₁) = (λ (B : Type₁) (f : A → B), f a₂) :=
|
||
|
by blast
|