X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Flambda-delta%2Flib%2Flog.mli;h=3e093575a8e8873e4b0759a6d26fdcac94fb4c06;hb=32f2a8f8016b2c6c7fb88189fc0ea0c7f9336555;hp=b5bc99adfe2c41174295b6238be32e3e91d172ca;hpb=f983656c56d37a50536e50a319114dbfa592c9a0;p=helm.git diff --git a/helm/software/lambda-delta/lib/log.mli b/helm/software/lambda-delta/lib/log.mli index b5bc99adf..3e093575a 100644 --- a/helm/software/lambda-delta/lib/log.mli +++ b/helm/software/lambda-delta/lib/log.mli @@ -10,7 +10,7 @@ V_______________________________________________________________ *) type ('a, 'b) item = Term of 'a * 'b - | Context of 'a + | LEnv of 'a | Warn of string | String of string | Loc @@ -18,8 +18,8 @@ type ('a, 'b) item = Term of 'a * 'b type ('a, 'b) message = ('a, 'b) item list type ('a, 'b) specs = { - pp_term : 'a -> Format.formatter -> 'b -> unit; - pp_context: Format.formatter -> 'a -> unit + pp_term: 'a -> Format.formatter -> 'b -> unit; + pp_lenv: Format.formatter -> 'a -> unit } val loc: int ref @@ -46,13 +46,16 @@ val items1: string -> ('a, 'b) message val t_items1: string -> 'a -> 'b -> ('a, 'b) message -val ct_items1: +val et_items1: string -> 'a -> string -> 'b -> ('a, 'b) message -val ct_items2: - string -> 'a -> string -> 'b -> string -> 'a -> string -> 'b -> +val et_items2: + string -> 'a -> string -> 'b -> + ?sc2:string -> ?c2:'a -> string -> 'b -> ('a, 'b) message -val ct_items3: - string -> 'a -> string -> 'b -> string -> 'b -> string -> 'b -> +val et_items3: + string -> 'a -> string -> 'b -> + ?sc2:string -> ?c2:'a -> string -> 'b -> + ?sc3:string -> ?c3:'a -> string -> 'b -> ('a, 'b) message