X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=src%2Fruntime.mli;h=c4990175a8dc5ece691a26b15e30a97365d184c6;hb=4309f9456521bffcab5ff79abe1ed826744c3a57;hp=eec59805e5d7898c0fbef59ea418765d5bc81e3f;hpb=0578813dc7114276daf382d47661f027c973eb35;p=SXSI%2Fxpathcomp.git diff --git a/src/runtime.mli b/src/runtime.mli index eec5980..c499017 100644 --- a/src/runtime.mli +++ b/src/runtime.mli @@ -2,7 +2,9 @@ module type S = sig type result_set val top_down_run : Ata.t -> Tree.t -> Tree.node -> result_set val bottom_up_run : Ata.t -> Tree.t -> Compile.text_query * string -> result_set - val grammar_run : Ata.t -> Grammar.t -> unit -> result_set + val grammar_run : Ata.t -> Grammar2.t -> unit -> result_set + val naive_top_down_run : Ata.t -> Tree.t -> Tree.node -> result_set + val twopass_top_down_run : Ata.t -> Tree.t -> Tree.node -> result_set end module Make (U : ResJIT.S) : S with type result_set = U.NS.t