X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Flambda-delta%2Fbasic_rg%2FbrgReduction.mli;h=840b72fd3a2999654c86ad74e31279ac5c070e58;hb=2e451dca46e509fd7e7772f3d2e438c189ce10a1;hp=dd97b0d4d9429cf79e0a8c361e94507307c1e23f;hpb=cca5f6b7431b846b7bdcbf813632cb79580d5874;p=helm.git diff --git a/helm/software/lambda-delta/basic_rg/brgReduction.mli b/helm/software/lambda-delta/basic_rg/brgReduction.mli index dd97b0d4d..840b72fd3 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 TypeError of Brg.message +type kam -type machine +val empty_kam: kam -val empty_machine: machine +val get: (unit -> 'a) -> (Brg.bind -> 'a) -> kam -> int -> 'a -val get: (Brg.bind -> 'a) -> machine -> int -> 'a +val push: kam -> Brg.bind -> kam -val push: (machine -> 'a) -> machine -> Brg.bind -> 'a +val xwhd: Entity.status -> kam -> Brg.term -> kam * Brg.term -(* arguments: expected type, inferred type, typed term *) -val assert_conversion: - (unit -> 'a) -> ?si:bool -> ?rt:bool -> - machine -> Brg.term -> Brg.term -> Brg.term -> 'a +(* arguments: expected type, inferred type *) +val are_convertible: + Entity.status -> kam -> Brg.term -> kam -> Brg.term -> bool -val message1: - string -> machine -> Brg.term -> (Brg.context, Brg.term) Log.message +val specs: (kam, Brg.term) Log.specs