Skip to content

Commit

Permalink
fix: Add simps tag to Trans instance for Equiv (#2456)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtopaz committed Feb 23, 2023
1 parent 1231af3 commit 0245850
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Mathlib/Logic/Equiv/Defs.lean
Expand Up @@ -183,6 +183,7 @@ protected def trans (e₁ : α ≃ β) (e₂ : β ≃ γ) : α ≃ γ :=
⟨e₂ ∘ e₁, e₁.symm ∘ e₂.symm, e₂.left_inv.comp e₁.left_inv, e₂.right_inv.comp e₁.right_inv⟩
#align equiv.trans Equiv.trans

@[simps]
instance : Trans Equiv Equiv Equiv where
trans := Equiv.trans

Expand Down

0 comments on commit 0245850

Please sign in to comment.