]> matita.cs.unibo.it Git - helm.git/blobdiff - components/library/cicCoercion.ml
Coercions are now generalized to the general form
[helm.git] / components / library / cicCoercion.ml
index 42a19bcf92fcea3cbcab72129101c62ea0a87b27..85dc9f65b83d8951022dc510a770b392e78043f7 100644 (file)
 (* $Id$ *)
 
 let close_coercion_graph_ref = ref
- (fun _ _ _ _ -> [] : 
-   CoercDb.coerc_carr -> CoercDb.coerc_carr -> UriManager.uri ->
+ (fun _ _ _ _ -> [] : 
+   CoercDb.coerc_carr -> CoercDb.coerc_carr -> UriManager.uri -> int ->
    string (* baseuri *) ->
-     (CoercDb.coerc_carr * CoercDb.coerc_carr * UriManager.uri * Cic.obj) list)
+     (CoercDb.coerc_carr * CoercDb.coerc_carr * UriManager.uri * int * Cic.obj) list)
 ;;
 
 let set_close_coercion_graph f = close_coercion_graph_ref := f;;
 
-let close_coercion_graph c1 c2 u s = 
-  !close_coercion_graph_ref c1 c2 u s
+let close_coercion_graph c1 c2 u sat s = 
+  !close_coercion_graph_ref c1 c2 u sat s
 ;;