]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_kernel/nCicReduction.mli
parameter sintax added to axiom statement
[helm.git] / helm / software / components / ng_kernel / nCicReduction.mli
index 691d6605d3875f6e023607f3f0e62390308ef136..35159fc1c9d07c0346c368ae12946b59ea030ecc 100644 (file)
 
 (* $Id$ *)
 
+exception AssertFailure of string Lazy.t;;
+
+val debug: bool ref
+
 val whd : 
   ?delta:int -> subst:NCic.substitution -> 
   NCic.context -> NCic.term -> 
@@ -39,6 +43,15 @@ 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 from_env : delta:int -> environment_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