package coq-core
Install
Dune Dependency
Authors
Maintainers
Sources
md5=13d2793fc6413aac5168822313e4864e
sha512=ec8379df34ba6e72bcf0218c66fef248b0e4c5c436fb3f2d7dd83a2c5f349dd0874a67484fcf9c0df3e5d5937d7ae2b2a79274725595b4b0065a381f70769b42
doc/coq-core.engine/Namegen/index.html
Module Namegen
Source
This file features facilities to generate fresh names.
type intro_pattern_naming_expr =
| IntroIdentifier of Names.Id.t
| IntroFresh of Names.Id.t
| IntroAnonymous
General evar naming using intro patterns
Equalities on intro_pattern_naming
val id_of_name_using_hdchar :
Environ.env ->
Evd.evar_map ->
EConstr.types ->
Names.Name.t ->
Names.Id.t
val mkProd_name :
Environ.env ->
Evd.evar_map ->
(Names.Name.t Context.binder_annot * EConstr.types * EConstr.types) ->
EConstr.types
val mkLambda_name :
Environ.env ->
Evd.evar_map ->
(Names.Name.t Context.binder_annot * EConstr.types * EConstr.constr) ->
EConstr.constr
val prod_name :
Environ.env ->
Evd.evar_map ->
(Names.Name.t Context.binder_annot * EConstr.types * EConstr.types) ->
EConstr.types
Deprecated synonyms of mkProd_name
and mkLambda_name
val lambda_name :
Environ.env ->
Evd.evar_map ->
(Names.Name.t Context.binder_annot * EConstr.types * EConstr.constr) ->
EConstr.constr
val prod_create :
Environ.env ->
Evd.evar_map ->
(Sorts.relevance * EConstr.types * EConstr.types) ->
EConstr.constr
val lambda_create :
Environ.env ->
Evd.evar_map ->
(Sorts.relevance * EConstr.types * EConstr.constr) ->
EConstr.constr
val name_assumption :
Environ.env ->
Evd.evar_map ->
EConstr.rel_declaration ->
EConstr.rel_declaration
val mkProd_or_LetIn_name :
Environ.env ->
Evd.evar_map ->
EConstr.types ->
EConstr.rel_declaration ->
EConstr.types
val mkLambda_or_LetIn_name :
Environ.env ->
Evd.evar_map ->
EConstr.constr ->
EConstr.rel_declaration ->
EConstr.constr
val it_mkProd_or_LetIn_name :
Environ.env ->
Evd.evar_map ->
EConstr.types ->
EConstr.rel_context ->
EConstr.types
val it_mkLambda_or_LetIn_name :
Environ.env ->
Evd.evar_map ->
EConstr.constr ->
EConstr.rel_context ->
EConstr.constr
Avoid clashing with a name satisfying some predicate
next_ident_away original_id unwanted_ids
returns a new identifier as close as possible to the original_id
while avoiding all unwanted_ids
.
In particular:
- if
original_id
does not appear in the list ofunwanted_ids
, thenoriginal_id
is returned. if
original_id
appears in the list ofunwanted_ids
, then this function returns a new id that:- has the same root as the
original_id
, - does not occur in the list of
unwanted_ids
, - has the smallest possible subscript.
- has the same root as the
where by subscript of some identifier we mean last part of it that is composed only from (decimal) digits and by root of some identifier we mean the whole identifier except for the subscript.
E.g. if we take foo42
, then 42
is the subscript, and foo
is the root.
Avoid clashing with a name already used in current module
Avoid clashing with a name already used in current module but tolerate overwriting section variables, as in goals
Default is default_non_dependent_ident
val next_name_away_with_default_using_types :
string ->
Names.Name.t ->
Names.Id.Set.t ->
EConstr.types ->
Names.Id.t
type renaming_flags =
| RenamingForCasesPattern of Names.Name.t list * EConstr.constr
(*avoid only global constructors
*)| RenamingForGoal
(*avoid all globals (as in intro)
*)| RenamingElsewhereFor of Names.Name.t list * EConstr.constr
val make_all_rel_context_name_different :
Environ.env ->
Evd.evar_map ->
EConstr.rel_context ->
Environ.env * EConstr.rel_context
val compute_displayed_name_in :
Environ.env ->
Evd.evar_map ->
renaming_flags ->
Names.Id.Set.t ->
Names.Name.t ->
EConstr.constr ->
Names.Name.t * Names.Id.Set.t
val compute_displayed_let_name_in :
Environ.env ->
Evd.evar_map ->
renaming_flags ->
Names.Id.Set.t ->
Names.Name.t ->
Names.Name.t * Names.Id.Set.t
val compute_displayed_name_in_gen :
(Evd.evar_map -> int -> 'a -> bool) ->
Environ.env ->
Evd.evar_map ->
Names.Id.Set.t ->
Names.Name.t ->
'a ->
Names.Name.t * Names.Id.Set.t