Add a missing ';' and remove some dead code and outdated comments.
[tatoo.git] / src / main.ml
index af1c930..100581e 100644 (file)
 (***********************************************************************)
 
 (*
-  Time-stamp: <Last modified on 2013-03-10 09:49:00 CET by Kim Nguyen>
+  Time-stamp: <Last modified on 2013-03-10 10:49:33 CET by Kim Nguyen>
 *)
 
-(** use: xml_file "XPath querie"
-    or : xml_file -f XPath_querie_file
-    only the first line of XPath_querie_file is read
-*)
-
-module F = Auto.Formula
-module A = Auto.Ata
-module X = Xpath.Compile
-
-(* to force ocaml build to add Formula to the dependency chain even if
-   we don't use it yet*)
-
 let doc =
   let fd = open_in Sys.argv.(1) in
   let d = Tree.Naive.load_xml_file fd in
@@ -50,7 +38,7 @@ let () =
   fprintf err_formatter "Evaluating automaton:\n%!";
   let module Naive = Auto.Eval.Make(Tree.Naive) in
   let results = Naive.eval auto doc (Tree.Naive.root doc) in
-  output_string stdout "<xml_results>\n"
+  output_string stdout "<xml_results>\n";
   List.iter (fun n ->
     Tree.Naive.print_xml stdout doc n;
     output_char stdout '\n'