aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-07-17 08:07:28 +0200
committerEmilio Jesus Gallego Arias2019-07-31 11:13:05 +0200
commiteb6a7c1aaebe8bd777e03439666b8b2c18db5cd3 (patch)
tree862f050fd7c36fa4cd03517b6e20883dba6501c9 /tactics
parent2d864be049b7696ef15b8e1b65b6a34a8e8c4ee8 (diff)
[funind] Port aux function to the new tactic engine.
Diffstat (limited to 'tactics')
-rw-r--r--tactics/eauto.ml2
-rw-r--r--tactics/eauto.mli2
2 files changed, 2 insertions, 2 deletions
diff --git a/tactics/eauto.ml b/tactics/eauto.ml
index cc3e78f3b8..d4e4322bef 100644
--- a/tactics/eauto.ml
+++ b/tactics/eauto.ml
@@ -408,7 +408,7 @@ let e_search_auto debug (in_depth,p) lems db_list gl =
(* let e_search_auto = CProfile.profile5 e_search_auto_key e_search_auto *)
let eauto_with_bases ?(debug=Off) np lems db_list =
- Proofview.V82.of_tactic (Hints.wrap_hint_warning (Proofview.V82.tactic (tclTRY (e_search_auto debug np lems db_list))))
+ Hints.wrap_hint_warning (Proofview.V82.tactic (tclTRY (e_search_auto debug np lems db_list)))
let eauto ?(debug=Off) np lems dbnames =
let db_list = make_db_list dbnames in
diff --git a/tactics/eauto.mli b/tactics/eauto.mli
index ec99baef45..f9347b7b0f 100644
--- a/tactics/eauto.mli
+++ b/tactics/eauto.mli
@@ -26,7 +26,7 @@ val gen_eauto : ?debug:debug -> bool * int -> delayed_open_constr list ->
val eauto_with_bases :
?debug:debug ->
bool * int ->
- delayed_open_constr list -> hint_db list -> Proofview.V82.tac
+ delayed_open_constr list -> hint_db list -> unit Proofview.tactic
val autounfold : hint_db_name list -> Locus.clause -> unit Proofview.tactic
val autounfold_tac : hint_db_name list option -> Locus.clause -> unit Proofview.tactic