X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_kernel%2FnCicReduction.mli;h=691d6605d3875f6e023607f3f0e62390308ef136;hb=3bfc56cd9b5afe52c3abfbef886ce82efa3bb3a3;hp=4828fbc2b5e8b56d804be26c6d0f90f4325c15c5;hpb=1ef41da37d7b39da1521f53d3b22981556bfbe68;p=helm.git diff --git a/helm/software/components/ng_kernel/nCicReduction.mli b/helm/software/components/ng_kernel/nCicReduction.mli index 4828fbc2b..691d6605d 100644 --- a/helm/software/components/ng_kernel/nCicReduction.mli +++ b/helm/software/components/ng_kernel/nCicReduction.mli @@ -12,23 +12,24 @@ (* $Id$ *) val whd : - ?delta:int -> ?subst:NCic.substitution -> + ?delta:int -> subst:NCic.substitution -> NCic.context -> NCic.term -> NCic.term val set_get_relevance : - (subst:NCic.substitution -> + (metasenv:NCic.metasenv -> subst:NCic.substitution -> NCic.context -> NCic.term -> NCic.term list -> bool list) -> unit val are_convertible : - ?subst:NCic.substitution -> + metasenv:NCic.metasenv -> subst:NCic.substitution -> NCic.context -> NCic.term -> NCic.term -> bool (* 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 @@ -36,7 +37,8 @@ type environment_item type machine = int * environment_item list * NCic.term * stack_item list val reduce_machine : - delta:int -> ?subst:NCic.substitution -> NCic.context -> machine -> machine + delta:int -> ?subst:NCic.substitution -> NCic.context -> machine -> + machine * bool val from_stack : stack_item -> machine val unwind : machine -> NCic.term