diff options
| author | Pierre-Marie Pédrot | 2020-10-06 14:58:45 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2020-11-04 13:43:57 +0100 |
| commit | ab6ebfc1f42d96d50763f2dcd6b8322b12613d3d (patch) | |
| tree | c7f7a53b2d563c481f43ef3c416f92bcb4164c8e /engine/eConstr.ml | |
| parent | f4c1b8b9ffdb5e531685130824fc4ce03a3e9794 (diff) | |
Further code simplification in arbitrary hint interpretation.
We reuse the standard code path for term interpretation instead of trying
to mangle it.
Diffstat (limited to 'engine/eConstr.ml')
| -rw-r--r-- | engine/eConstr.ml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engine/eConstr.ml b/engine/eConstr.ml index bb2873b486..0c84dee572 100644 --- a/engine/eConstr.ml +++ b/engine/eConstr.ml @@ -628,6 +628,9 @@ let subst_var subst c = of_constr (Vars.subst_var subst (to_constr c)) let subst_univs_level_constr subst c = of_constr (Vars.subst_univs_level_constr subst (to_constr c)) +let subst_univs_constr subst c = + of_constr (UnivSubst.subst_univs_constr subst (to_constr c)) + (** Operations that dot NOT commute with evar-normalization *) let noccurn sigma n term = let rec occur_rec n c = match kind sigma c with |
