X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=components%2Flibrary%2FcicCoercion.ml;h=638c0ce64a81d037749048c9a698362bde6b0916;hb=65662e7d8de61a338b636f208d04e85eb59e6b8e;hp=42a19bcf92fcea3cbcab72129101c62ea0a87b27;hpb=9ebbff1619da00a2d42e04def79c59d129ee4a92;p=helm.git diff --git a/components/library/cicCoercion.ml b/components/library/cicCoercion.ml index 42a19bcf9..638c0ce64 100644 --- a/components/library/cicCoercion.ml +++ b/components/library/cicCoercion.ml @@ -26,14 +26,14 @@ (* $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 * int) 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 ;;