aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/class_tactics.mli
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-10-04 19:06:02 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-10-04 19:06:02 +0000
commitcf7d42d1c64e8a8a1c1400f5264c7d9f96757669 (patch)
treec126a2eb9329e14f247073b8c3058300948701b2 /tactics/class_tactics.mli
parenta3beca520724057a010a4b972b43d12bcf09f27e (diff)
Splitting Class_tactics between code and CAMLP4/5 declarations.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16847 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/class_tactics.mli')
-rw-r--r--tactics/class_tactics.mli32
1 files changed, 32 insertions, 0 deletions
diff --git a/tactics/class_tactics.mli b/tactics/class_tactics.mli
new file mode 100644
index 000000000..0b74027c3
--- /dev/null
+++ b/tactics/class_tactics.mli
@@ -0,0 +1,32 @@
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2012 *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
+
+open Names
+open Constr
+open Tacmach
+
+val catchable : exn -> bool
+
+val set_typeclasses_debug : bool -> unit
+val get_typeclasses_debug : unit -> bool
+
+val set_typeclasses_depth : int option -> unit
+val get_typeclasses_depth : unit -> int option
+
+val progress_evars : tactic -> tactic
+
+val typeclasses_eauto : ?only_classes:bool -> ?st:transparent_state ->
+ Auto.hint_db_name list -> tactic
+
+val head_of_constr : Id.t -> Term.constr -> tactic
+
+val not_evar : constr -> tactic
+
+val is_ground : constr -> tactic
+
+val autoapply : constr -> Auto.hint_db_name -> tactic