X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_kernel%2FnCicReduction.mli;h=ba32fe15dd18f2cb38c6af0dc055fae94d72bbe5;hb=235d5cc96af46d0406bdd28222f56b3ee2bf827e;hp=696723bf6ad158b4bab916b2c5c9c72a4e7505c5;hpb=05adc7f9da7d66a14fd4417911e9f22b9bf9583f;p=helm.git diff --git a/helm/software/components/ng_kernel/nCicReduction.mli b/helm/software/components/ng_kernel/nCicReduction.mli index 696723bf6..ba32fe15d 100644 --- a/helm/software/components/ng_kernel/nCicReduction.mli +++ b/helm/software/components/ng_kernel/nCicReduction.mli @@ -11,8 +11,10 @@ (* $Id$ *) +exception AssertFailure of string Lazy.t;; + val whd : - ?delta:int -> ?subst:NCic.substitution -> + ?delta:int -> subst:NCic.substitution -> NCic.context -> NCic.term -> NCic.term @@ -28,7 +30,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 @@ -41,3 +44,11 @@ val reduce_machine : val from_stack : 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