Timing.Program
val start : Goblint_timing__.Goblint_timing_intf.options -> unit
Start timing with options.
val stop : unit -> unit
Stop timing, but don't reset timing information.
val reset : unit -> unit
Reset timing information.
val enter : ?args:(string * Catapult.Tracing.arg) list -> string -> unit
enter name enters a new nested timed section called name.
enter name
name
custom data for TEF
val exit : string -> unit
exit name exits the current timed section called name. Sections must be exited in valid nested fashion.
exit name
val wrap : ?args:(string * Catapult.Tracing.arg) list -> string -> ('a -> 'b) -> 'a -> 'b
wrap name f x runs f x and measures it as a timed section called name.
wrap name f x
f x
val print : Stdlib.Format.formatter -> unit
Pretty-print current timing hierarchy.
val root : Goblint_timing__.Goblint_timing_intf.tree
Root node of timing tree. Must not be mutated!