aboutsummaryrefslogtreecommitdiff
path: root/tactics/auto.mli
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2016-09-15 18:11:54 +0200
committerPierre-Marie Pédrot2016-09-15 19:07:34 +0200
commit72ac4b32ac26fdba751ae48568d28b4dbb8edd14 (patch)
tree26ecc0cc236423fac993258cfc6a1252ea5ed0ee /tactics/auto.mli
parent1d432a8e7a2e728f0dbf909f95337f0ff2c33945 (diff)
Untangling Tacexpr from lower strata.
Diffstat (limited to 'tactics/auto.mli')
-rw-r--r--tactics/auto.mli21
1 files changed, 11 insertions, 10 deletions
diff --git a/tactics/auto.mli b/tactics/auto.mli
index f68190498f..1689bd73c7 100644
--- a/tactics/auto.mli
+++ b/tactics/auto.mli
@@ -14,6 +14,7 @@ open Clenv
open Pattern
open Decl_kinds
open Hints
+open Tactypes
val priority : ('a * full_hint) list -> ('a * full_hint) list
@@ -40,24 +41,24 @@ val conclPattern : constr -> constr_pattern option -> Genarg.glob_generic_argume
"nocore" amongst the databases. *)
val auto : ?debug:debug ->
- int -> Pretyping.delayed_open_constr list -> hint_db_name list -> unit Proofview.tactic
+ int -> delayed_open_constr list -> hint_db_name list -> unit Proofview.tactic
(** Auto with more delta. *)
val new_auto : ?debug:debug ->
- int -> Pretyping.delayed_open_constr list -> hint_db_name list -> unit Proofview.tactic
+ int -> delayed_open_constr list -> hint_db_name list -> unit Proofview.tactic
(** auto with default search depth and with the hint database "core" *)
val default_auto : unit Proofview.tactic
(** auto with all hint databases except the "v62" compatibility database *)
val full_auto : ?debug:debug ->
- int -> Pretyping.delayed_open_constr list -> unit Proofview.tactic
+ int -> delayed_open_constr list -> unit Proofview.tactic
(** auto with all hint databases except the "v62" compatibility database
and doing delta *)
val new_full_auto : ?debug:debug ->
- int -> Pretyping.delayed_open_constr list -> unit Proofview.tactic
+ int -> delayed_open_constr list -> unit Proofview.tactic
(** auto with default search depth and with all hint databases
except the "v62" compatibility database *)
@@ -65,19 +66,19 @@ val default_full_auto : unit Proofview.tactic
(** The generic form of auto (second arg [None] means all bases) *)
val gen_auto : ?debug:debug ->
- int option -> Pretyping.delayed_open_constr list -> hint_db_name list option -> unit Proofview.tactic
+ int option -> delayed_open_constr list -> hint_db_name list option -> unit Proofview.tactic
(** The hidden version of auto *)
val h_auto : ?debug:debug ->
- int option -> Pretyping.delayed_open_constr list -> hint_db_name list option -> unit Proofview.tactic
+ int option -> delayed_open_constr list -> hint_db_name list option -> unit Proofview.tactic
(** Trivial *)
val trivial : ?debug:debug ->
- Pretyping.delayed_open_constr list -> hint_db_name list -> unit Proofview.tactic
+ delayed_open_constr list -> hint_db_name list -> unit Proofview.tactic
val gen_trivial : ?debug:debug ->
- Pretyping.delayed_open_constr list -> hint_db_name list option -> unit Proofview.tactic
+ delayed_open_constr list -> hint_db_name list option -> unit Proofview.tactic
val full_trivial : ?debug:debug ->
- Pretyping.delayed_open_constr list -> unit Proofview.tactic
+ delayed_open_constr list -> unit Proofview.tactic
val h_trivial : ?debug:debug ->
- Pretyping.delayed_open_constr list -> hint_db_name list option -> unit Proofview.tactic
+ delayed_open_constr list -> hint_db_name list option -> unit Proofview.tactic