NamegenThis 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
val intro_pattern_naming_eq : intro_pattern_naming_expr -> intro_pattern_naming_expr -> boolEqualities on intro_pattern_naming
val default_prop_ident : Names.Id.tval default_small_ident : Names.Id.tval default_type_ident : Names.Id.tval default_non_dependent_ident : Names.Id.tval default_dependent_ident : Names.Id.tval lowercase_first_char : Names.Id.t -> stringval sort_hdchar : Sorts.t -> stringval hdchar : Environ.env -> Evd.evar_map -> EConstr.types -> stringval id_of_name_using_hdchar : Environ.env -> Evd.evar_map -> EConstr.types -> Names.Name.t -> Names.Id.tval named_hd : Environ.env -> Evd.evar_map -> EConstr.types -> Names.Name.t -> Names.Name.tval head_name : Evd.evar_map -> EConstr.types -> Names.Id.t optionval mkProd_name : Environ.env -> Evd.evar_map -> (Names.Name.t EConstr.binder_annot * EConstr.types * EConstr.types) -> EConstr.typesval mkLambda_name : Environ.env -> Evd.evar_map -> (Names.Name.t EConstr.binder_annot * EConstr.types * EConstr.constr) -> EConstr.constrval prod_name : Environ.env -> Evd.evar_map -> (Names.Name.t EConstr.binder_annot * EConstr.types * EConstr.types) -> EConstr.typesDeprecated synonyms of mkProd_name and mkLambda_name
val lambda_name : Environ.env -> Evd.evar_map -> (Names.Name.t EConstr.binder_annot * EConstr.types * EConstr.constr) -> EConstr.constrval prod_create : Environ.env -> Evd.evar_map -> (EConstr.ERelevance.t * EConstr.types * EConstr.types) -> EConstr.constrval lambda_create : Environ.env -> Evd.evar_map -> (EConstr.ERelevance.t * EConstr.types * EConstr.constr) -> EConstr.constrval name_assumption : Environ.env -> Evd.evar_map -> EConstr.rel_declaration -> EConstr.rel_declarationval name_context : Environ.env -> Evd.evar_map -> EConstr.rel_context -> EConstr.rel_contextval mkProd_or_LetIn_name : Environ.env -> Evd.evar_map -> EConstr.types -> EConstr.rel_declaration -> EConstr.typesval mkLambda_or_LetIn_name : Environ.env -> Evd.evar_map -> EConstr.constr -> EConstr.rel_declaration -> EConstr.constrval it_mkProd_or_LetIn_name : Environ.env -> Evd.evar_map -> EConstr.types -> EConstr.rel_context -> EConstr.typesval it_mkLambda_or_LetIn_name : Environ.env -> Evd.evar_map -> EConstr.constr -> EConstr.rel_context -> EConstr.constrval next_ident_away_from : Names.Id.t -> (Names.Id.t -> bool) -> Names.Id.tAvoid clashing with a name satisfying some predicate
val next_ident_away : Names.Id.t -> Names.Id.Set.t -> Names.Id.tnext_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:
original_id does not appear in the list of unwanted_ids, then original_id is returned.if original_id appears in the list of unwanted_ids, then this function returns a new id that:
original_id,unwanted_ids,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.
val next_ident_away_in_goal : Environ.env -> Names.Id.t -> Names.Id.Set.t -> Names.Id.tAvoid clashing with a name already used in current module
val next_global_ident_away : Names.Id.t -> Names.Id.Set.t -> Names.Id.tAvoid clashing with a name already used in current module but tolerate overwriting section variables, as in goals
val next_name_away : Names.Name.t -> Names.Id.Set.t -> Names.Id.tDefault is default_non_dependent_ident
val next_name_away_with_default : string -> Names.Name.t -> Names.Id.Set.t -> Names.Id.tval next_name_away_with_default_using_types : string -> Names.Name.t -> Names.Id.Set.t -> EConstr.types -> Names.Id.tval set_reserved_typed_name : (EConstr.types -> Names.Name.t) -> unitval make_all_rel_context_name_different : Environ.env -> Evd.evar_map -> EConstr.rel_context -> Environ.env * EConstr.rel_contextval make_all_name_different : Environ.env -> Evd.evar_map -> Environ.envmodule Generator : sig ... endtype 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 compute_displayed_name_in : 'a Generator.t -> Environ.env -> Evd.evar_map -> renaming_flags -> 'a -> Names.Name.t -> EConstr.constr -> Names.Name.t * 'aval compute_displayed_let_name_in : 'a Generator.t -> Environ.env -> Evd.evar_map -> renaming_flags -> 'a -> Names.Name.t -> Names.Name.t * 'aval compute_displayed_name_in_gen : 'a Generator.t -> (Evd.evar_map -> int -> 'constr -> bool) -> Environ.env -> Evd.evar_map -> 'a -> Names.Name.t -> 'constr -> Names.Name.t * 'a