2 let tptppath = ref "./";;
5 Arg.String (fun x -> tptppath := x),
6 "Where to find the Axioms/ and Problems/ directory")
11 let usage = "Usage: tptp2grafite [options] file" in
12 let inputfile = ref "" in
13 Arg.parse spec (fun s -> inputfile := s) usage;
14 if !inputfile = "" then
20 (Tptp2grafite.tptp2grafite ~filename:!inputfile ~tptppath:!tptppath ());