aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/auto.mli
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-11-20 00:27:08 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-02-14 17:30:21 +0100
commit372b092aea6d077fe0a82eac74d742da8998c7ad (patch)
tree4345b93e0ba0bb5570624ef9f09840d424962111 /tactics/auto.mli
parent34e86e839be251717db96f1f5969d7724ab43097 (diff)
Auto API using EConstr.
Diffstat (limited to 'tactics/auto.mli')
-rw-r--r--tactics/auto.mli5
1 files changed, 3 insertions, 2 deletions
diff --git a/tactics/auto.mli b/tactics/auto.mli
index 403be9e1c..b0ecb4660 100644
--- a/tactics/auto.mli
+++ b/tactics/auto.mli
@@ -10,6 +10,7 @@
open Names
open Term
+open EConstr
open Clenv
open Pattern
open Decl_kinds
@@ -23,7 +24,7 @@ val default_search_depth : int ref
val auto_flags_of_state : transparent_state -> Unification.unify_flags
val connect_hint_clenv : polymorphic -> raw_hint -> clausenv ->
- ('a, 'r) Proofview.Goal.t -> clausenv * EConstr.constr
+ ('a, 'r) Proofview.Goal.t -> clausenv * constr
(** Try unification with the precompiled clause, then use registered Apply *)
val unify_resolve : polymorphic -> Unification.unify_flags -> (raw_hint * clausenv) -> unit Proofview.tactic
@@ -33,7 +34,7 @@ val unify_resolve : polymorphic -> Unification.unify_flags -> (raw_hint * clause
[Pattern.somatches], then replace [?1] [?2] metavars in tacast by the
right values to build a tactic *)
-val conclPattern : EConstr.constr -> constr_pattern option -> Genarg.glob_generic_argument -> unit Proofview.tactic
+val conclPattern : constr -> constr_pattern option -> Genarg.glob_generic_argument -> unit Proofview.tactic
(** The Auto tactic *)