]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_refiner/nCicRefiner.mli
Added initial support for inversion principles in Matita NG.
[helm.git] / helm / software / components / ng_refiner / nCicRefiner.mli
index 7414770807cd2dde41355286ce4b8150cc90ba2e..b75ee3a815c6cf07dc0c60a0c5239929ac7e67f6 100644 (file)
@@ -16,17 +16,15 @@ exception Uncertain of (Stdpp.location * string) Lazy.t;;
 exception AssertFailure of string Lazy.t;;
 
 val typeof :
+ #NRstatus.status ->
  ?localise:(NCic.term -> Stdpp.location) ->
- look_for_coercion:(
-    NCic.metasenv -> NCic.substitution -> NCic.context -> 
-    (* inferred type, expected type *)
-    NCic.term -> NCic.term -> 
-      (* enriched metasenv, new term, its type, metavriable to
-       * be unified with the old term *)
-      (NCic.metasenv * NCic.term * NCic.term * NCic.term) list
-  ) ->
   NCic.metasenv -> NCic.substitution -> NCic.context -> 
   NCic.term -> NCic.term option -> (* term, expected type *)
     NCic.metasenv * NCic.substitution * NCic.term * NCic.term
     (*  menv, subst,refined term, type *)
 
+val typeof_obj :
+ #NRstatus.status ->
+ ?localise:(NCic.term -> Stdpp.location) ->
+  NCic.obj -> NCic.obj
+