X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=ocaml%2Fparser.ml;h=6bcb70d909fd0b6117292aa2cdcb3b9a7d88da0f;hb=5682bf463b89edb7756020fe7b838eb846d6c771;hp=570809dd6d4a6c952ee0139851bd97bef7be2af1;hpb=82dd1911598932af386c4de46398624453e1fc31;p=fireball-separation.git diff --git a/ocaml/parser.ml b/ocaml/parser.ml index 570809d..6bcb70d 100644 --- a/ocaml/parser.ml +++ b/ocaml/parser.ml @@ -29,10 +29,10 @@ let explode s = ;; let implode l = - let res = String.create (List.length l) in + let res = Bytes.create (List.length l) in let rec aux i = function | [] -> res - | c :: l -> res.[i] <- c; aux (i + 1) l in + | c :: l -> Bytes.set res i c; aux (i + 1) l in aux 0 l ;; @@ -118,13 +118,11 @@ let parse x = | _, _, _ -> raise (ParsingError "???") ;; -let var_zero = "ω";; (* w is an invalid variable name *) - let parse_many strs = let f (x, y) z = match read_smt y (explode z) with | Some[tm], [], vars -> (tm :: x, vars) | _, _, _ -> raise (ParsingError "???") - in let aux = List.fold_left f ([], ([], [var_zero])) (* index zero is reserved *) + in let aux = List.fold_left f ([], ([], [])) (* index zero is reserved *) in let (tms, (_, free)) = aux strs in (List.rev tms, free) ;; @@ -140,70 +138,37 @@ let rec string_of_term = function let _ = prerr_endline (">>>" ^ string_of_term (parse "(\\x. x y z z1 k) z1 z j"));; -**********************************************************************) - - let parse' strs = - let (tms, free) = parse_many strs in - (* Replace pacmans and bottoms *) - let n_bot = try Util.index_of "BOT" free with Not_found -> min_int in - let n_pac = try Util.index_of "PAC" free with Not_found -> min_int in - let n_bomb = try Util.index_of "BOMB" free with Not_found -> min_int in - let n_z = try Util.index_of "Z" free with Not_found -> min_int in - let fix lev v = - if v = lev + n_bot then `Bottom - else if v = lev + n_pac then `Pacman - else if v = lev + n_bomb then `Lam(true, `Bottom) - else if v = lev + n_z then `Var(lev, 0) (* FIXME why zero? *) - else `Var(v,1) in (* 1 by default when variable not applied *) - (* Fix arity *) - let open Num in - let exclude_bottom = function - | #nf_nob as t -> t - | `Bottom -> raise (ParsingError "Input term not in normal form") in - let rec aux_nob lev : nf_nob -> nf = function - | `I((n,_), args) -> `I((n,1 + Listx.length args), Listx.map (fun t -> exclude_bottom (aux_nob lev t)) args) - | `Var(n,_) -> fix lev n - | `Lam(_,t) -> `Lam (true, aux (lev+1) t) - | `Match _ | `N _ -> assert false - | `Pacman -> assert false - and aux lev : Num.nf -> Num.nf = function - | #nf_nob as t -> aux_nob lev t - | `Bottom -> assert false in - List.map (aux 0) (tms :> Num.nf list), free -;; +*******************************************************************************) let problem_of_string s = -prerr_endline (s); let lines = Str.split (Str.regexp "[\n\r\x0c\t;]+") s in - (* let lines = List.map String.trim lines in *) + let head, lines = List.hd lines, List.tl lines in + let name = String.trim (String.sub head 1 (String.length head - 1)) in let lines = List.filter ((<>) "") lines in - prerr_endline("number of lines" ^ string_of_int (List.length lines)); - let aux (last, name, div, conv, ps) line = + let aux (last, div, conv, ps) line = let chr = String.sub line 0 1 in let line = String.trim (String.sub line 1 (String.length line - 1)) in - if line = "" then chr, name, div, conv, ps else + if line = "" then chr, div, conv, ps else let rec aux' chr line = if chr = "#" - then chr, name, div, conv, ps - else if chr = "$" - then "#", line, div, conv, ps + then chr, div, conv, ps else if chr = "D" - then chr, name, line, conv, ps + then chr, line, conv, ps else if chr = "C" - then chr, name, div, line::conv, ps + then chr, div, line::conv, ps else if chr = "N" - then chr, name, div, conv, line::ps + then chr, div, conv, line::ps else if chr = " " then aux' last line else raise (ParsingError ("Unexpected at beginning of problem: `" ^ chr ^ "` " ^ line)) in aux' chr line in - let _, name, div, conv, ps = List.fold_left aux ("#", "no label", "", [], []) lines in + let _, div, conv, ps = List.fold_left aux ("#", "", [], []) lines in let div_provided = div <> "" in let div = if div_provided then div else "BOT" in let strs = [div] @ ps @ conv in - if strs = ["BOT"] + if List.length ps = 0 && List.length conv = 0 then raise (ParsingError "empty problem"); (* parse' *) @@ -216,6 +181,7 @@ prerr_endline (s); if v = lev + n_bot then `Bottom else if v = lev + n_pac then `Pacman else if v = lev + n_bomb then `Lam(true, `Bottom) + else if v = lev then `Var(v, min_int) (* zero *) else `Var(v,1) in (* 1 by default when variable not applied *) (* Fix arity *) let open Num in @@ -223,7 +189,7 @@ prerr_endline (s); | #nf_nob as t -> t | `Bottom -> raise (ParsingError "Input term not in normal form") in let rec aux_nob lev : nf_nob -> nf = function - | `I((n,_), args) -> `I((n,1 + Listx.length args), Listx.map (fun t -> exclude_bottom (aux_nob lev t)) args) + | `I((n,_), args) -> `I((n,(if lev = 0 then 0 else 1) + Listx.length args), Listx.map (fun t -> exclude_bottom (aux_nob lev t)) args) | `Var(n,_) -> fix lev n | `Lam(_,t) -> `Lam (true, aux (lev+1) t) | `Match _ | `N _ -> assert false @@ -257,7 +223,7 @@ let ps = List.map ( let from_file path = - let lines = ref [""] in + let lines = ref ["#"] in let chan = open_in path in let _ = try while true; do