diff options
| author | Matthieu Sozeau | 2018-11-16 22:26:23 +0100 |
|---|---|---|
| committer | Matthieu Sozeau | 2018-11-16 22:26:23 +0100 |
| commit | f8a76b3d383abf468fb21df509f5da8f8aafa913 (patch) | |
| tree | 7b6da59938466bc632b4f2e8d0625814e813af06 /pretyping/pretyping.mli | |
| parent | 3ff6723f4032bdf8c155b30c496188e58787cd49 (diff) | |
| parent | ad6d5a658806d1c0cf46a39f58113bfbd2ac808d (diff) | |
Merge PR #8779: Remove the implicit tactic feature following #7229.
Diffstat (limited to 'pretyping/pretyping.mli')
| -rw-r--r-- | pretyping/pretyping.mli | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pretyping/pretyping.mli b/pretyping/pretyping.mli index 0f95d27528..2eaa77b822 100644 --- a/pretyping/pretyping.mli +++ b/pretyping/pretyping.mli @@ -35,7 +35,6 @@ type inference_hook = env -> evar_map -> Evar.t -> evar_map * constr type inference_flags = { use_typeclasses : bool; solve_unification_constraints : bool; - use_hook : inference_hook option; fail_evar : bool; expand_evars : bool } @@ -95,7 +94,7 @@ val understand : ?flags:inference_flags -> ?expected_type:typing_constraint -> with candidate and no other conversion problems that the one in [pending], however, it can contain more evars than the pending ones. *) -val solve_remaining_evars : inference_flags -> +val solve_remaining_evars : ?hook:inference_hook -> inference_flags -> env -> (* current map *) evar_map -> (* initial map *) evar_map -> evar_map (** Checking evars and pending conversion problems are all solved, |
