X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=src%2Frun.mli;h=579dd8a81cb182da3a79c4b83dba3d899fc20fa0;hb=30675098fce9aaa56027adc42042ea70c986fe01;hp=847632643134f5b2188a593b06e92627fb6ffebf;hpb=af9d790ca62e678e8e70ab8d8fa7f804985a75e0;p=tatoo.git diff --git a/src/run.mli b/src/run.mli index 8476326..579dd8a 100644 --- a/src/run.mli +++ b/src/run.mli @@ -12,8 +12,16 @@ (* ../LICENSE. *) (* *) (***********************************************************************) - +type stats = { run : int; + tree_size : int; + cache2_access : int; + cache2_hit : int; + cache5_access : int; + cache5_hit : int; + } module Make (T : Tree.S) : sig - val eval : Ata.t -> T.t -> T.node -> T.node list + 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