X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_kernel%2FnCicReduction.mli;h=713edd1705050d14fe6ee2d1fee270a71f7fd713;hb=cdd019ea6419fc058a92b1aca950a4eff11188d1;hp=006dba9d4ed7b88615e6bc3a417d977791fc7bf8;hpb=002d456397be2f0046bb50356e80816f7296647d;p=helm.git diff --git a/helm/software/components/ng_kernel/nCicReduction.mli b/helm/software/components/ng_kernel/nCicReduction.mli index 006dba9d4..713edd170 100644 --- a/helm/software/components/ng_kernel/nCicReduction.mli +++ b/helm/software/components/ng_kernel/nCicReduction.mli @@ -11,6 +11,10 @@ (* $Id$ *) +exception AssertFailure of string Lazy.t;; + +val debug: bool ref + val whd : ?delta:int -> subst:NCic.substitution -> NCic.context -> NCic.term -> @@ -28,7 +32,8 @@ val are_convertible : (* performs head beta/(delta)/cast reduction; the default is to not perform delta reduction; if provided, ~upto is the maximum number of beta redexes reduced *) -val head_beta_reduce: ?delta:int -> ?upto:int -> NCic.term -> NCic.term +val head_beta_reduce: + ?delta:int -> ?upto:int -> ?subst:NCic.substitution -> NCic.term -> NCic.term type stack_item type environment_item @@ -38,6 +43,14 @@ type machine = int * environment_item list * NCic.term * stack_item list val reduce_machine : delta:int -> ?subst:NCic.substitution -> NCic.context -> machine -> machine * bool -val from_stack : stack_item -> machine +val from_stack : delta:int -> stack_item -> machine val unwind : machine -> NCic.term +val split_prods: + subst:NCic.substitution -> NCic.context -> int -> NCic.term -> + NCic.context * NCic.term + +(* to be used outside the kernel *) +val alpha_eq: + NCic.metasenv -> NCic.substitution -> + NCic.context -> NCic.term -> NCic.term -> bool