aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authormsozeau2008-11-07 14:11:35 +0000
committermsozeau2008-11-07 14:11:35 +0000
commit559dd3e37eab5023598eb3ef7cd0a86a3674ae8a (patch)
tree153b21aa4151626793a790ca7202daea18736bbf /tactics
parent6d7cd9583e50c60c5dfa076f4f8a3b8add37a755 (diff)
Add the ability to give a specific tactic to solve each obligation in
Program. No syntax to do it yet. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11550 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
-rw-r--r--tactics/tacinterp.mli3
1 files changed, 3 insertions, 0 deletions
diff --git a/tactics/tacinterp.mli b/tactics/tacinterp.mli
index 0d41db8a43..6faae3adc1 100644
--- a/tactics/tacinterp.mli
+++ b/tactics/tacinterp.mli
@@ -48,6 +48,9 @@ and interp_sign =
val constr_of_id : Environ.env -> identifier -> constr
(* To embed several objects in Coqast.t *)
+val tactic_in : (interp_sign -> glob_tactic_expr) -> Dyn.t
+val tactic_out : Dyn.t -> (interp_sign -> glob_tactic_expr)
+
val tacticIn : (interp_sign -> raw_tactic_expr) -> raw_tactic_expr
val globTacticIn : (interp_sign -> glob_tactic_expr) -> raw_tactic_expr
val valueIn : value -> raw_tactic_arg