X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Flambda-delta%2Fbasic_rg%2FbrgReduction.mli;h=eebb157254fc5f1ccc38e5ea4705c6915c7295fb;hb=2b1375e4b44e2ef351a6341a5bb0a4823e8daae5;hp=a8320ed557463663219be39e88c66a1976dd5dac;hpb=f3b4d265268a43ca98e6843b733109fdfe3f6b0b;p=helm.git diff --git a/helm/software/lambda-delta/basic_rg/brgReduction.mli b/helm/software/lambda-delta/basic_rg/brgReduction.mli index a8320ed55..eebb15725 100644 --- a/helm/software/lambda-delta/basic_rg/brgReduction.mli +++ b/helm/software/lambda-delta/basic_rg/brgReduction.mli @@ -9,20 +9,18 @@ \ / This software is distributed as is, NO WARRANTY. V_______________________________________________________________ *) -exception LRefNotFound of string Lazy.t +type kam -type context +val empty_kam: kam -type ho_whd_result = - | Sort of int - | Abst of Brg.term +val get: kam -> int -> Brg.bind -val empty_context: context +val push: kam -> Entity.attrs -> Brg.bind -> kam -val push: (context -> 'a) -> context -> Brg.bind -> Brg.term -> 'a +val xwhd: Entity.status -> kam -> Brg.term -> kam * Brg.term -val get: (Brg.bind * Brg.term -> 'a) -> context -> int -> 'a +(* arguments: expected type, inferred type *) +val are_convertible: + Entity.status -> kam -> Brg.term -> kam -> Brg.term -> bool -val are_convertible: (bool -> 'a) -> context -> Brg.term -> Brg.term -> 'a - -val ho_whd: (context -> ho_whd_result -> 'a) -> context -> Brg.term -> 'a +val specs: (kam, Brg.term) Log.specs