summaryrefslogtreecommitdiff
path: root/src/helper.mli
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2019-02-13 20:40:51 -0500
committerGravatar Benjamin Barenblat <bbaren@google.com>2019-02-13 20:40:51 -0500
commit2ee22055c510a56c3d040fe023d0884b183bd68c (patch)
tree595eeed2159e90da8284b9e2d545430a61a60d04 /src/helper.mli
parent7ecbed522b4b4a9829eb9bd7b3f36db53788a77c (diff)
parent8018e923c75eb5504310864f821972f794b7d554 (diff)
Updated version 8.8.0+1.gbp069dc3b from 'upstream/8.8.0+1.gbp069dc3b'
Diffstat (limited to 'src/helper.mli')
-rw-r--r--src/helper.mli33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/helper.mli b/src/helper.mli
new file mode 100644
index 0000000..400e847
--- /dev/null
+++ b/src/helper.mli
@@ -0,0 +1,33 @@
+(***************************************************************************)
+(* This is part of aac_tactics, it is distributed under the terms of the *)
+(* GNU Lesser General Public License version 3 *)
+(* (see file LICENSE for more details) *)
+(* *)
+(* Copyright 2009-2010: Thomas Braibant, Damien Pous. *)
+(***************************************************************************)
+
+(** Debugging functions, that can be triggered on a per-file base. *)
+
+module type CONTROL =
+sig
+ val debug : bool
+ val time : bool
+ val printing : bool
+end
+module Debug :
+ functor (X : CONTROL) ->
+sig
+ (** {!debug} prints the string and end it with a newline *)
+ val debug : string -> unit
+ val debug_exception : string -> exn -> unit
+
+ (** {!time} computes the time spent in a function, and then
+ print it using the given format *)
+ val time :
+ ('a -> 'b) -> 'a -> (float -> unit, out_channel, unit) format -> 'b
+
+ (** {!pr_constr} print a Coq constructor, that can be labelled
+ by a string *)
+ val pr_constr : Environ.env -> Evd.evar_map -> string -> EConstr.constr -> unit
+
+ end