Built with Alectryon. 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 univalent/saturated precategory, or just "category" *)Require Import Category.Core Category.Morphisms.Require Import HoTT.Basics HoTT.Tactics.Set Implicit Arguments.Generalizable All Variables.LocalOpen Scope morphism_scope.(** A category is a precategory for which [idtoiso] is an equivalence. *)NotationIsCategory C := (forallsd : object C, IsEquiv (@idtoiso C s d)).Notationisotoid C s d := (@equiv_inv _ _ (@idtoiso C s d) _).(** *** The objects of a category are a 1-type *)