X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_unification%2FcicRefine.mli;h=c239f8e1f5ff77a2b551fe0a05ee6cf7d66dff17;hb=3bb4ce11fb9d4c6375483a80344beb94c4517dd7;hp=2d4c0214a88992d499b3f5ecd6e653c116279117;hpb=b9043c364f2bd5a851c497eb75fc217518385a78;p=helm.git diff --git a/helm/ocaml/cic_unification/cicRefine.mli b/helm/ocaml/cic_unification/cicRefine.mli index 2d4c0214a..c239f8e1f 100644 --- a/helm/ocaml/cic_unification/cicRefine.mli +++ b/helm/ocaml/cic_unification/cicRefine.mli @@ -23,18 +23,13 @@ * http://cs.unibo.it/helm/. *) -exception NotRefinable of string -exception Uncertain of string -exception WrongUriToConstant of string -exception WrongUriToVariable of string -exception WrongUriToMutualInductiveDefinitions of string -exception MutCaseFixAndCofixRefineNotImplemented;; -exception FreeMetaFound of int;; +exception RefineFailure of string;; +exception Uncertain of string;; +exception AssertFailure of string;; (* type_of_aux' metasenv context term *) (* refines [term] and returns the refined form of [term], *) -(* its type, the computed substitution and the new metasenv. *) -(* The substitution returned is already unwinded *) +(* its type the new metasenv. *) val type_of_aux': Cic.metasenv -> Cic.context -> Cic.term -> - Cic.term * Cic.term * CicMetaSubst.substitution * Cic.metasenv + Cic.term * Cic.term * Cic.metasenv