X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_kernel%2FnCicPp.ml;h=a0f0a8afb906c6f6991f47f3a5a6f8c23a9eed6d;hb=c4b189a6732274861fa93587019af6d5206f9a79;hp=216da00a40fc96aeaf617c458a399e10faafde82;hpb=9e86c8d0eb60817cc583568343b265dddceae93d;p=helm.git diff --git a/helm/software/components/ng_kernel/nCicPp.ml b/helm/software/components/ng_kernel/nCicPp.ml index 216da00a4..a0f0a8afb 100644 --- a/helm/software/components/ng_kernel/nCicPp.ml +++ b/helm/software/components/ng_kernel/nCicPp.ml @@ -47,70 +47,84 @@ let trivial_pp_term ~context ~subst ~metasenv ?(inside_fix=false) t = let buff = Buffer.create 100 in let f = Format.formatter_of_buffer buff in let module F = Format in - let rec aux ctx = function + let rec aux ?(toplevel=false) ctx = function | C.Rel m -> - (try F.fprintf f "%s" (List.nth ctx (m-1)) - with Failure _ -> F.fprintf f " -%d" (m - List.length context)) + (try + let name = List.nth ctx (m-1) in + F.fprintf f "%s" (if name = "_" then "__"^string_of_int m else name) + with Failure _ -> F.fprintf f " -%d" (m - List.length context)) | C.Const r -> F.fprintf f "%s" (r2s inside_fix r) | C.Prod ("_",s,t) -> + if not toplevel then F.fprintf f "("; F.fprintf f "@["; - aux ctx s; + aux ~toplevel:true ctx s; F.fprintf f "@;→ "; - aux ("_"::ctx) t; + aux ~toplevel ("_"::ctx) t; F.fprintf f "@]"; + if not toplevel then F.fprintf f ")"; | C.Prod (name,s,t) -> + if not toplevel then F.fprintf f "("; F.fprintf f "@["; F.fprintf f "@[∀%s:@;" name; - aux ctx s; + aux ~toplevel:true ctx s; F.fprintf f "@].@;"; - aux (name::ctx) t; + aux ~toplevel (name::ctx) t; F.fprintf f "@]"; + if not toplevel then F.fprintf f ")"; | C.Lambda (name,s,t) -> + if not toplevel then F.fprintf f "("; F.fprintf f "@["; F.fprintf f "λ%s:" name; - aux ctx s; + aux ~toplevel:true ctx s; F.fprintf f ".@;"; - aux (name::ctx) t; + aux ~toplevel (name::ctx) t; F.fprintf f "@]"; + if not toplevel then F.fprintf f ")"; | C.LetIn (name,ty,t,b) -> - F.fprintf f "let %s:" name; - aux ctx ty; - F.fprintf f "≝@;"; - aux ctx t; - F.fprintf f "in@;"; - (aux (name::ctx) b) + if not toplevel then F.fprintf f "("; + F.fprintf f "@["; + F.fprintf f "let %s:@;" name; + aux ~toplevel:true ctx ty; + F.fprintf f "@;≝ "; + aux ~toplevel:true ctx t; + F.fprintf f "@;in@;"; + (aux ~toplevel (name::ctx) b); + F.fprintf f "@]"; + if not toplevel then F.fprintf f ")"; | C.Match (r,oty,t,pl) -> F.fprintf f "@[match "; - aux ctx t; + aux ~toplevel:true ctx t; F.fprintf f "@;return "; - aux ctx oty; + aux ~toplevel:true ctx oty; F.fprintf f "@; @[[ "; if pl <> [] then begin F.fprintf f "@[%s ⇒@;" (r2s inside_fix (R.mk_constructor 1 r)); - aux ctx (List.hd pl); + aux ~toplevel:true ctx (List.hd pl); F.fprintf f "@]"; ignore(List.fold_left (fun i t -> F.fprintf f "@;| @[%s ⇒@;" (r2s inside_fix (R.mk_constructor i r)); - aux ctx t; + aux ~toplevel:true ctx t; F.fprintf f "@]"; i+1) 2 (List.tl pl)); end; F.fprintf f "]@] @]"; | C.Appl l -> - F.fprintf f "@[("; + F.fprintf f "@["; + if not toplevel then F.fprintf f "("; aux ctx (List.hd l); List.iter (fun x -> F.fprintf f "@;";aux ctx x) (List.tl l); - F.fprintf f ")@]" + if not toplevel then F.fprintf f ")"; + F.fprintf f "@]" | C.Implicit _ -> F.fprintf f "?" | C.Meta (n,_) -> F.fprintf f "?%d" n | C.Sort C.Prop -> F.fprintf f "Prop" | C.Sort C.CProp -> F.fprintf f "CProp" | C.Sort (C.Type n) -> F.fprintf f "Type%d" n in - aux (List.map fst context) t; + aux ~toplevel:true (List.map fst context) t; F.fprintf f "@?"; Buffer.contents buff ;;