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 -*-  *)
(** * Propositional resizing *)

[Loading ML file number_string_notation_plugin.cmxs (using legacy method) ... done]
Local Open Scope path_scope. (** See the note by [Funext] in Overture.v regarding classes for axioms *) Monomorphic Axiom PropResizing : Type0. Existing Class PropResizing. (** Mark this axiom as a "global axiom", which some of our tactics will automatically handle. *) Global Instance is_global_axiom_propresizing : IsGlobalAxiom PropResizing := {}. Axiom resize_hprop : forall `{PropResizing} (A : Type@{i}) `{IsHProp A}, Type@{j}. Axiom equiv_resize_hprop : forall `{PropResizing} (A : Type@{i}) `{IsHProp A}, A <~> resize_hprop A. Global Instance ishprop_resize_hprop `{PropResizing} (A : Type) `{IsHProp A} : IsHProp (resize_hprop A) := istrunc_equiv_istrunc A (equiv_resize_hprop A).