X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=src%2Frun.mli;h=725192ebc943bbdbc88c9a8307bf912f3d790ff9;hb=fee64144491afab22d71f6e2de72a9f18f35cd55;hp=1efe4a789b579f3a298473455d7dcb94f27baddd;hpb=6ca42ffbd541cede6afcc473b563e54b848ee534;p=tatoo.git diff --git a/src/run.mli b/src/run.mli index 1efe4a7..725192e 100644 --- a/src/run.mli +++ b/src/run.mli @@ -12,9 +12,16 @@ (* ../LICENSE. *) (* *) (***********************************************************************) - +type stats = { run : int; + tree_size : int; + fetch_trans_cache_access : int; + fetch_trans_cache_hit : int; + eval_trans_cache_access : int; + eval_trans_cache_hit : int; + } module Make (T : Tree.S) : sig val eval : Ata.t -> T.t -> T.node list -> T.node list val full_eval : Ata.t -> T.t -> T.node list -> (State.t * T.node list) list + val stats : unit -> stats end