From: acondolu Date: Tue, 25 Jul 2017 14:49:11 +0000 (+0200) Subject: Fix in pretty-printing of match X-Git-Tag: weak-reduction-separation~2 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=9ad3734756bdab9ea23884a7bddbfaa599dbd3ae;p=fireball-separation.git Fix in pretty-printing of match --- diff --git a/ocaml/num.ml b/ocaml/num.ml index 56ae90a..66bdd85 100644 --- a/ocaml/num.ml +++ b/ocaml/num.ml @@ -127,7 +127,7 @@ let rec string_of_term = | `Lam _ as t -> "(" ^ string_of_term_no_pars_lam lev l t ^ ")" | `Match(t,(v,ar),bs_lift,bs,args) -> (* assert (bs_lift = lev); *) - "(["^ varname lev l v ^ (if debug_display_arities then ":"^ string_of_int ar else "") ^",match " ^ string_of_term_no_pars lev l (t :> nf) ^ + "(["^ varname 0 l v ^ (if debug_display_arities then ":"^ string_of_int ar else "") ^",match " ^ string_of_term_no_pars lev l (t :> nf) ^ " with " ^ String.concat " | " (List.map (fun (n,t) -> string_of_int n ^ " => " ^ string_of_term l (t :> nf)) !bs) ^ "] " ^ String.concat " " (List.map (string_of_term l) (args :> nf list)) ^ ")" and string_of_term_no_pars_app lev l = function