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.
[Loading ML file number_string_notation_plugin.cmxs (using legacy method) ... done]
Local Open Scope pointed_scope. Local Open Scope trunc_scope. (** * Evaluation fibrations and self-maps *) (* The type of unpointed self maps of A, pointed at the identity map. *) Definition selfmaps (A : Type) : pType := [A -> A, idmap]. (** The unrestricted evaluation map. *) Definition ev (A : pType) : selfmaps A ->* A := Build_pMap _ _ (fun f : selfmaps A => f pt) idpath. (** The evaluation fibration of an unpointed map [X -> A]. *) Definition evfib {X : pType} {A : Type} (f : X -> A) : comp (X -> A) (tr f) -> A := fun g => g.1 pt. (** If [f] is pointed, then the evaluation fibration of [f] is too. *) Definition pevfib {A X : pType} (f : X ->* A) : pcomp (X -> A) f ->* A := Build_pMap _ _ (fun g : pcomp (X -> A) f => g.1 pt) (point_eq f). (* The evaluation map of the identity. *) Definition ev1 (A : pType) := pevfib (A:=A) pmap_idmap.