X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Flambda-delta%2Fbasic_rg%2FbrgReduction.mli;h=eebb157254fc5f1ccc38e5ea4705c6915c7295fb;hb=85521efd364ec494e4cc024bbf87182a312e1b7b;hp=7515967cd71520a93c9be988bd8eb36e0995d7fa;hpb=0dc347a7742e40a828fa98acba70078dd2d7cbd5;p=helm.git diff --git a/helm/software/lambda-delta/basic_rg/brgReduction.mli b/helm/software/lambda-delta/basic_rg/brgReduction.mli index 7515967cd..eebb15725 100644 --- a/helm/software/lambda-delta/basic_rg/brgReduction.mli +++ b/helm/software/lambda-delta/basic_rg/brgReduction.mli @@ -9,21 +9,18 @@ \ / This software is distributed as is, NO WARRANTY. V_______________________________________________________________ *) -type machine +type kam -val empty_machine: machine +val empty_kam: kam -val get: (unit -> 'a) -> (Brg.bind -> 'a) -> machine -> int -> 'a +val get: kam -> int -> Brg.bind -val push: (machine -> 'a) -> machine -> Brg.bind -> 'a +val push: kam -> Entity.attrs -> Brg.bind -> kam -val xwhd: (machine -> Brg.term -> 'a) -> machine -> Brg.term -> 'a +val xwhd: Entity.status -> kam -> Brg.term -> kam * Brg.term (* arguments: expected type, inferred type *) -val are_convertible: - (unit -> 'a) -> (unit -> 'a) -> - ?si:bool -> machine -> Brg.term -> machine -> Brg.term -> 'a +val are_convertible: + Entity.status -> kam -> Brg.term -> kam -> Brg.term -> bool -type message = (machine, Brg.term) Log.item list - -val specs: (machine, Brg.term) Log.specs +val specs: (kam, Brg.term) Log.specs