]> matita.cs.unibo.it Git - fireball-separation.git/commitdiff
Fix in pretty-printing of match
authoracondolu <andrea.condoluci@unibo.it>
Tue, 25 Jul 2017 14:49:11 +0000 (16:49 +0200)
committeracondolu <andrea.condoluci@unibo.it>
Tue, 25 Jul 2017 14:49:11 +0000 (16:49 +0200)
ocaml/num.ml

index aa9338c4c8d2d777fa45c5d0b74a85c376032dc7..485b56ea61a783ab3984e61a2b44b4222af368bd 100644 (file)
@@ -132,7 +132,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)) ^ ")"
   | `Bottom -> "BOT"