diff options
| author | Théo Zimmermann | 2017-12-07 22:27:19 +0100 |
|---|---|---|
| committer | Théo Zimmermann | 2017-12-11 13:34:55 +0100 |
| commit | ac2b757a7835672ba494bf42244b5d393e8db089 (patch) | |
| tree | db649017592a9b78d70c9abd33e490b758f75fc4 /pretyping/constr_matching.mli | |
| parent | 84a655b14bfc886447da9abc5cf141ab87ae4bd7 (diff) | |
Remove deprecated option Tactic Compat Context.
And some code simplification.
Diffstat (limited to 'pretyping/constr_matching.mli')
| -rw-r--r-- | pretyping/constr_matching.mli | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/pretyping/constr_matching.mli b/pretyping/constr_matching.mli index 60e1c34a15..e4d9ff9e1e 100644 --- a/pretyping/constr_matching.mli +++ b/pretyping/constr_matching.mli @@ -61,18 +61,10 @@ type matching_result = { m_sub : bound_ident_map * patvar_map; m_ctx : EConstr.t } -(** [match_subterm n pat c] returns the substitution and the context - corresponding to each **closed** subterm of [c] matching [pat]. *) -val match_subterm : env -> Evd.evar_map -> constr_pattern -> constr -> matching_result IStream.t - -(** [match_appsubterm pat c] returns the substitution and the context +(** [match_subterm pat c] returns the substitution and the context corresponding to each **closed** subterm of [c] matching [pat], considering application contexts as well. *) -val match_appsubterm : env -> Evd.evar_map -> constr_pattern -> constr -> matching_result IStream.t - -(** [match_subterm_gen] calls either [match_subterm] or [match_appsubterm] *) -val match_subterm_gen : env -> Evd.evar_map -> - bool (** true = with app context *) -> +val match_subterm : env -> Evd.evar_map -> binding_bound_vars * constr_pattern -> constr -> matching_result IStream.t |
