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.
(* -*- mode: coq; mode: visual-line -*- *)

[Loading ML file number_string_notation_plugin.cmxs (using legacy method) ... done]
(** * Metatheory *) (** This directory contains files that prove important metatheoretic results about HoTT, but that are not important for internal development of mathematics in HoTT. Thus, no files in this directory should ever need to be imported by files outside of this directory. *) (** Many of these results are about ways to prove univalence and function extensionality (which in the main library we simply assert as axioms, though we track their usage with dummy typeclasses). For convenience, here we define the types of these two statements. *) Definition Funext_type@{i j max} := forall (A : Type@{i}) (P : A -> Type@{j}) f g, IsEquiv (@apD10@{i j max} A P f g). (** Univalence is a property of a single universe; its statement lives in a higher universe *) Definition Univalence_type@{i iplusone} : Type@{iplusone} := forall (A B : Type@{i}), IsEquiv (equiv_path@{i iplusone} A B).