Built with Alectryon, running Coq+SerAPI v8.18.0+0.18.3. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑ Ctrl+↓ to navigate, Ctrl+🖱️ to focus. On Mac, use instead of Ctrl.
(** * Definition of a strict category *)
[Loading ML file number_string_notation_plugin.cmxs (using legacy method) ... done]
Set Universe Polymorphism. Set Implicit Arguments. Generalizable All Variables. Set Asymmetric Patterns. Local Open Scope morphism_scope. (** Quoting the HoTT Book: *) (** Definition. A _strict category_ is a precategory whose type of objects is a set. *) Notation IsStrictCategory C := (IsHSet (object C)). Record StrictCategory := { precategory_strict :> PreCategory; isstrict_StrictCategory :> IsStrictCategory precategory_strict }. Global Existing Instance isstrict_StrictCategory.