]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_kernel/nCicReduction.mli
...
[helm.git] / helm / software / components / ng_kernel / nCicReduction.mli
index 52b95cdda63353a3c73bcb81676879dcc30f1e04..c80da989d73c3bc53e29477de4df5e9b48e2e66d 100644 (file)
@@ -16,12 +16,28 @@ val whd :
   NCic.context -> NCic.term -> 
     NCic.term
 
-val are_convertible : 
-  ?subst:NCic.substitution -> 
-  NCic.context -> NCic.term -> NCic.term -> 
-  bool
+val set_get_relevance : 
+  (subst:NCic.substitution ->
+   NCic.context -> NCic.term -> NCic.term list -> bool list) -> unit
+
+val are_convertible :
+  ?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
+
+type stack_item
+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 * bool
+val from_stack : stack_item -> machine
+val unwind : machine -> NCic.term
+