Add a missing ';' and remove some dead code and outdated comments.
authorKim Nguyễn <kn@lri.fr>
Sun, 10 Mar 2013 09:51:48 +0000 (10:51 +0100)
committerKim Nguyễn <kn@lri.fr>
Sun, 10 Mar 2013 09:51:48 +0000 (10:51 +0100)
src/main.ml
tools/Makefile [deleted file]

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'
diff --git a/tools/Makefile b/tools/Makefile
deleted file mode 100644 (file)
index 89d8986..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-all: XPathEval.class  xml_diff
-
-
-xml_diff: xml_diff.ml
-       ocamlfind ocamlopt -o xml_diff -package expat -linkpkg xml_diff.ml
-
-XPathEval.class: XPathEval.java
-       javac XPathEval.java
-
-
-clean:
-       rm -f XPathEval.class xml_diff *.o *.cm*