Idris2Doc : Control.Category.Records.Braided

Control.Category.Records.Braided

(source)

Definitions

recordBraidedR : Type
  A monoidal category is *braided* when it is possible to flip the
order of the tensor product in a coherent way, determined by the
braiding isomorphism.

Additionally, a braided monoidal category may be *symmetric*,
requiring that `(.braid) = (.braid')`. Since the only difference
is in laws, the same record is used for this case.

See `Braided` for required laws.

Totality: total
Visibility: public export
Constructor: 
MkBraidedR : (hom : Homobj) -> (tensor : (obj->obj->obj)) -> (unit : obj) ->Braidedhomtensorunit=>BraidedR

Projections:
.assoc : (rec : BraidedR) ->rec.hom (rec.tensor (rec.tensorab) c) (rec.tensora (rec.tensorbc))
  The left-biased associator. This must be the inverse of `(.assoc')`.
.assoc' : (rec : BraidedR) ->rec.hom (rec.tensora (rec.tensorbc)) (rec.tensor (rec.tensorab) c)
  The right-biased associator. This must be the inverse of `(.assoc)`.
.braid : (rec : BraidedR) ->rec.hom (rec.tensorab) (rec.tensorba)
  The braiding of the category.
.braid' : (rec : BraidedR) ->rec.hom (rec.tensorba) (rec.tensorab)
  The inverse of `(.braid)`, the braiding of the category.
.braidedR : BraidedR->BraidedR
  Convert this into a `BraidedR`.
.categoryR : BraidedR->CategoryR
  Convert this into a `CategoryR`.
.comp : (rec : BraidedR) ->rec.hombc->rec.homab->rec.homac
  Binary right-to-left composition of morphisms.
.flipBraid : BraidedR->BraidedR
  Invert the braiding of the monoidal category. If the braiding is
symmetric, this does nothing.
.hom : ({rec:0} : BraidedR) ->Hom ({rec:0}.obj)
.id : (rec : BraidedR) ->rec.homaa
  The identity morphism of an object `a`.
.impl : ({rec:0} : BraidedR) ->Braided ({rec:0}.hom) ({rec:0}.tensor) ({rec:0}.unit)
.monoidalR : BraidedR->MonoidalR
  Convert this into a `MonoidalR`.
0.obj : BraidedR->Type
.tensor : ({rec:0} : BraidedR) ->{rec:0}.obj->{rec:0}.obj->{rec:0}.obj
.tensorR : (rec : BraidedR) ->EndoBifunctorR (rec.categoryR)
  Return the tensor product as a `BifunctorR`.
.unit : ({rec:0} : BraidedR) ->{rec:0}.obj
.unitl : (rec : BraidedR) ->rec.hom (rec.tensor (rec.unit) a) a
  The left unitor.
.unitl' : (rec : BraidedR) ->rec.homa (rec.tensor (rec.unit) a)
  The inverse of `(.unitl)`, the left unitor.
.unitr : (rec : BraidedR) ->rec.hom (rec.tensora (rec.unit)) a
  The right unitor.
.unitr' : (rec : BraidedR) ->rec.homa (rec.tensora (rec.unit))
  The inverse of `(.unitr)`, the right unitor.
.hom : ({rec:0} : BraidedR) ->Hom ({rec:0}.obj)
Totality: total
Visibility: public export
.tensor : ({rec:0} : BraidedR) ->{rec:0}.obj->{rec:0}.obj->{rec:0}.obj
Totality: total
Visibility: public export
.unit : ({rec:0} : BraidedR) ->{rec:0}.obj
Totality: total
Visibility: public export
.impl : ({rec:0} : BraidedR) ->Braided ({rec:0}.hom) ({rec:0}.tensor) ({rec:0}.unit)
Totality: total
Visibility: public export
PreBraidedR : Type
  See `PreMonoidal`.

Totality: total
Visibility: public export
.categoryR : BraidedR->CategoryR
  Convert this into a `CategoryR`.

Totality: total
Visibility: public export
.id : (rec : BraidedR) ->rec.homaa
  The identity morphism of an object `a`.

Totality: total
Visibility: public export
.comp : (rec : BraidedR) ->rec.hombc->rec.homab->rec.homac
  Binary right-to-left composition of morphisms.

Totality: total
Visibility: public export
.tensorR : (rec : BraidedR) ->EndoBifunctorR (rec.categoryR)
  Return the tensor product as a `BifunctorR`.

Totality: total
Visibility: public export
.monoidalR : BraidedR->MonoidalR
  Convert this into a `MonoidalR`.

Totality: total
Visibility: public export
.assoc : (rec : BraidedR) ->rec.hom (rec.tensor (rec.tensorab) c) (rec.tensora (rec.tensorbc))
  The left-biased associator. This must be the inverse of `(.assoc')`.

Totality: total
Visibility: public export
.assoc' : (rec : BraidedR) ->rec.hom (rec.tensora (rec.tensorbc)) (rec.tensor (rec.tensorab) c)
  The right-biased associator. This must be the inverse of `(.assoc)`.

Totality: total
Visibility: public export
.unitl : (rec : BraidedR) ->rec.hom (rec.tensor (rec.unit) a) a
  The left unitor.

Totality: total
Visibility: public export
.unitl' : (rec : BraidedR) ->rec.homa (rec.tensor (rec.unit) a)
  The inverse of `(.unitl)`, the left unitor.

Totality: total
Visibility: public export
.unitr : (rec : BraidedR) ->rec.hom (rec.tensora (rec.unit)) a
  The right unitor.

Totality: total
Visibility: public export
.unitr' : (rec : BraidedR) ->rec.homa (rec.tensora (rec.unit))
  The inverse of `(.unitr)`, the right unitor.

Totality: total
Visibility: public export
.braidedR : BraidedR->BraidedR
  Convert this into a `BraidedR`.

Totality: total
Visibility: public export
.braid : (rec : BraidedR) ->rec.hom (rec.tensorab) (rec.tensorba)
  The braiding of the category.

Totality: total
Visibility: public export
.braid' : (rec : BraidedR) ->rec.hom (rec.tensorba) (rec.tensorab)
  The inverse of `(.braid)`, the braiding of the category.

Totality: total
Visibility: public export
.flipBraid : BraidedR->BraidedR
  Invert the braiding of the monoidal category. If the braiding is
symmetric, this does nothing.

Totality: total
Visibility: public export