The category of frames.
- of :: (
- carrier : Type u_1
The underlying frame.
- str : Order.Frame βself
- )
Instances For
@[implicit_reducible]
@[implicit_reducible]
instance
Frm.instConcreteCategoryFrameHomCarrier :
CategoryTheory.ConcreteCategory Frm fun (x1 x2 : Frm) => FrameHom βx1 βx2
@[reducible, inline]
Typecheck a FrameHom as a morphism in Frm.
Instances For
Use the ConcreteCategory.hom projection for @[simps] lemmas.
Instances For
The results below duplicate the ConcreteCategory simp lemmas, but we can keep them for dsimp.
@[simp]
@[simp]
@[simp]
theorem
Frm.forget_map
{X Y : Frm}
(f : X βΆ Y)
:
(CategoryTheory.forget Frm).map f = β(CategoryTheory.ConcreteCategory.hom f)
theorem
Frm.ext
{X Y : Frm}
{f g : X βΆ Y}
(w : β (x : βX), (CategoryTheory.ConcreteCategory.hom f) x = (CategoryTheory.ConcreteCategory.hom g) x)
:
f = g
theorem
Frm.ext_iff
{X Y : Frm}
{f g : X βΆ Y}
:
f = g β β (x : βX), (CategoryTheory.ConcreteCategory.hom f) x = (CategoryTheory.ConcreteCategory.hom g) x
@[simp]
@[simp]
theorem
Frm.hom_comp
{X Y Z : Frm}
(f : X βΆ Y)
(g : Y βΆ Z)
:
Hom.hom (CategoryTheory.CategoryStruct.comp f g) = (Hom.hom g).comp (Hom.hom f)
@[simp]
@[simp]
theorem
Frm.ofHom_id
{X : Type u}
[Order.Frame X]
:
ofHom (FrameHom.id X) = CategoryTheory.CategoryStruct.id { carrier := X, str := instβ }
@[simp]
theorem
Frm.ofHom_comp
{X Y Z : Type u}
[Order.Frame X]
[Order.Frame Y]
[Order.Frame Z]
(f : FrameHom X Y)
(g : FrameHom Y Z)
:
ofHom (g.comp f) = CategoryTheory.CategoryStruct.comp (ofHom f) (ofHom g)
theorem
Frm.ofHom_apply
{X Y : Type u}
[Order.Frame X]
[Order.Frame Y]
(f : FrameHom X Y)
(x : X)
:
(CategoryTheory.ConcreteCategory.hom (ofHom f)) x = f x
theorem
Frm.inv_hom_apply
{X Y : Frm}
(e : X β
Y)
(x : βX)
:
(CategoryTheory.ConcreteCategory.hom e.inv) ((CategoryTheory.ConcreteCategory.hom e.hom) x) = x
theorem
Frm.hom_inv_apply
{X Y : Frm}
(e : X β
Y)
(s : βY)
:
(CategoryTheory.ConcreteCategory.hom e.hom) ((CategoryTheory.ConcreteCategory.hom e.inv) s) = s
@[implicit_reducible]
Constructs an isomorphism of frames from an order isomorphism between them.
Instances For
@[simp]