First implementation of compilation from XPath to automata using
[tatoo.git] / src / test.ml
index f62e68d..2dd1cae 100644 (file)
@@ -14,7 +14,7 @@
 (***********************************************************************)
 
 (*
-  Time-stamp: <Last modified on 2013-02-11 22:41:35 CET by Kim Nguyen>
+  Time-stamp: <Last modified on 2013-03-04 16:38:27 CET by Kim Nguyen>
 *)
 
 (** use: xml_file "XPath querie"
@@ -39,10 +39,14 @@ let query =
   let arg2 = Sys.argv.(2) in
   Xpath.Parser.parse (Ulexing.from_latin1_string arg2)
 
+let auto =
+  Xpath.Compile.path query
+
 open Format
 
 let () =
   fprintf err_formatter "Query: %a\n%!" Xpath.Ast.print_path query;
+  fprintf err_formatter "Automata: %a\n%!" Auto.Ata.print auto;
   fprintf err_formatter "Document:\n%!";
   Tree.Naive.print_xml stderr doc (Tree.Naive.root doc);
   exit 0