X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Frun.mli;h=7704494ba2fb9240d46ea81f69f74b2d459b024d;hp=e124e8ae19e6f77cc63b6ed9ff509fe62b79c172;hb=3b9dbcd9318dba41999dc6cc43093edbe5bc4c5d;hpb=3406b26f1ea26a997d7f194c547439891c108ce6 diff --git a/src/run.mli b/src/run.mli index e124e8a..7704494 100644 --- a/src/run.mli +++ b/src/run.mli @@ -12,16 +12,10 @@ (* ../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) (L : Node_list.S with type node = T.node) : + + +module Make (T : Tree.S) : sig - val eval : Ata.t -> T.t -> L.t -> L.t - val full_eval : Ata.t -> T.t -> L.t -> (State.t * L.t) list - val stats : unit -> stats + val eval : Ata.t -> T.t -> T.node Sequence.t -> T.node Sequence.t + val full_eval : Ata.t -> T.t -> T.node Sequence.t -> (State.t * T.node Sequence.t) list end