Module UnivGen
val set_remote_new_univ_id : univ_unique_id RemoteCounter.installerval new_univ_id : unit -> univ_unique_idfor the stm
val new_univ_global : unit -> Univ.Level.UGlobal.tval fresh_level : unit -> Univ.Level.tval new_univ : unit -> Univ.Universe.tval new_Type : unit -> Constr.typesval new_Type_sort : unit -> Sorts.tval new_global_univ : unit -> Univ.Universe.t Univ.in_universe_context_setval new_sort_in_family : Sorts.family -> Sorts.t
val fresh_instance : Univ.AUContext.t -> Univ.Instance.t Univ.in_universe_context_setval fresh_instance_from : ?loc:Loc.t -> Univ.AUContext.t -> Univ.Instance.t option -> Univ.Instance.t Univ.in_universe_context_setval fresh_sort_in_family : Sorts.family -> Sorts.t Univ.in_universe_context_setval fresh_constant_instance : Environ.env -> Names.Constant.t -> Constr.pconstant Univ.in_universe_context_setval fresh_inductive_instance : Environ.env -> Names.inductive -> Constr.pinductive Univ.in_universe_context_setval fresh_constructor_instance : Environ.env -> Names.constructor -> Constr.pconstructor Univ.in_universe_context_setval fresh_global_instance : ?loc:Loc.t -> ?names:Univ.Instance.t -> Environ.env -> Names.GlobRef.t -> Constr.constr Univ.in_universe_context_setval fresh_global_or_constr_instance : Environ.env -> Globnames.global_reference_or_constr -> Constr.constr Univ.in_universe_context_setval fresh_universe_context_set_instance : Univ.ContextSet.t -> Univ.universe_level_subst * Univ.ContextSet.tGet fresh variables for the universe context. Useful to make tactics that manipulate constrs in universe contexts polymorphic.
val global_of_constr : Constr.constr -> Names.GlobRef.t Univ.puniversesRaises
Not_foundif not a global reference.
val constr_of_global_univ : Names.GlobRef.t Univ.puniverses -> Constr.constrval extend_context : 'a Univ.in_universe_context_set -> Univ.ContextSet.t -> 'a Univ.in_universe_context_setval constr_of_monomorphic_global : Names.GlobRef.t -> Constr.constrCreate a fresh global in the global environment, without side effects. BEWARE: this raises an error on polymorphic constants/inductives: the constraints should be properly added to an evd. See Evd.fresh_global, Evarutil.new_global, and pf_constr_of_global for the proper way to get a fresh copy of a polymorphic global reference.
val constr_of_global : Names.GlobRef.t -> Constr.constrval type_of_global : Names.GlobRef.t -> Constr.types Univ.in_universe_context_setReturns the type of the global reference, by creating a fresh instance of polymorphic references and computing their instantiated universe context. (side-effect on the universe counter, use with care).