2 let tptppath = ref "./";;
5 ("-ng",Arg.Set ng,"Matita ng syntax");
7 Arg.String (fun x -> tptppath := x),
8 "Where to find the Axioms/ and Problems/ directory")
13 let usage = "Usage: tptp2grafite [options] file" in
14 let inputfile = ref "" in
15 Arg.parse spec (fun s -> inputfile := s) usage;
16 if !inputfile = "" then
22 (Tptp2grafite.tptp2grafite ~filename:!inputfile ~tptppath:!tptppath ~ng:!ng ());