You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 15, 2022. It is now read-only.
module_ (๐ : Category ๐) {{_ : hasFiniteCoproducts ๐}} whererecord isFiniteCoproductGenerated : ๐ฐ ๐ wherefield fcgSize : โจ ๐ โฉ -> ไบบโ
field fcg : (a : โจ ๐ โฉ) -> ๐ ๐ฎ๐ง๐ [ fcgSize a ]แถ ๐
field fcgIso :โ (a : โจ ๐ โฉ) -> a โ โจแถ (fcg a)
The two options of adding a type family tracking a proposition on the generators would be in the signature or as a field. Since adding it as a field is infrastructurally simpler, and there is currently no other constraint, we do it this way.
What we have keep in mind is that with the current design "fcg" is a structure, the property which the elements have can be different in different situtations, one might think about how to formulate this in a way that the property does not have to be chosen and inherited, but is something which expresses "smallness", maybe something like this.
EDIT The next problem is that this property needs to be stable under isomorphisms of ๐, in order to have inheritance by coproduct preserving, eso functors.
The text was updated successfully, but these errors were encountered:
Our current definition of fcg is:
The two options of adding a type family tracking a proposition on the generators would be in the signature or as a field. Since adding it as a field is infrastructurally simpler, and there is currently no other constraint, we do it this way.
What we have keep in mind is that with the current design "fcg" is a structure, the property which the elements have can be different in different situtations, one might think about how to formulate this in a way that the property does not have to be chosen and inherited, but is something which expresses "smallness", maybe something like this.
EDIT The next problem is that this property needs to be stable under isomorphisms of ๐, in order to have inheritance by coproduct preserving, eso functors.
The text was updated successfully, but these errors were encountered: