diff options
| author | letouzey | 2012-05-29 11:09:32 +0000 |
|---|---|---|
| committer | letouzey | 2012-05-29 11:09:32 +0000 |
| commit | 929d25a05585dd702739b6979e3822bfa6cdbadb (patch) | |
| tree | 54bca1fb70021de0fe7eb0478150069a5c04b708 /printing/tactic_printer.mli | |
| parent | ccac2bd2f351088a5cd5966dba331817f51ac19e (diff) | |
place all pretty-printing files in new dir printing/
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15391 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'printing/tactic_printer.mli')
| -rw-r--r-- | printing/tactic_printer.mli | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/printing/tactic_printer.mli b/printing/tactic_printer.mli new file mode 100644 index 0000000000..5ea579107f --- /dev/null +++ b/printing/tactic_printer.mli @@ -0,0 +1,23 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2010 *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +open Pp +open Sign +open Evd +open Tacexpr +open Proof_type + +(** These are the entry points for tactics, proof trees, ... *) + +val print_proof : evar_map -> named_context -> proof_tree -> std_ppcmds +val pr_rule : rule -> std_ppcmds +val pr_tactic : tactic_expr -> std_ppcmds +val print_script : + ?nochange:bool -> evar_map -> proof_tree -> std_ppcmds +val print_treescript : + ?nochange:bool -> evar_map -> proof_tree -> std_ppcmds |
