X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmetadata%2FmetadataConstraints.mli;h=63757ae47c772861dba3e141051c6dfa0c2c5b38;hb=4167cea65ca58897d1a3dbb81ff95de5074700cc;hp=0d66557414365452837ed1eabef188624880dfae;hpb=f3581a88f462038ba4d97d1702ae86650e269fc5;p=helm.git diff --git a/helm/ocaml/metadata/metadataConstraints.mli b/helm/ocaml/metadata/metadataConstraints.mli index 0d6655741..63757ae47 100644 --- a/helm/ocaml/metadata/metadataConstraints.mli +++ b/helm/ocaml/metadata/metadataConstraints.mli @@ -23,33 +23,34 @@ * http://helm.cs.unibo.it/ *) -module StringSet : Set.S with type elt = string +module UriManagerSet : Set.S with type elt = UriManager.uri + (** @return * main: constant in main position and, for polymorphic constants, type * instantitation * constants: constants appearing in term *) -type term_signature = (string * string list) option * StringSet.t +type term_signature = (UriManager.uri * UriManager.uri list) option * UriManagerSet.t (** {2 Candidates filtering} *) (** @return sorted list of theorem URIs, first URIs in the least have higher * relevance *) -val cmatch: dbd:Mysql.dbd -> ?facts:bool -> Cic.term -> string list +val cmatch: dbd:HMysql.dbd -> ?facts:bool -> Cic.term -> UriManager.uri list (** as cmatch, but returned list is not sorted but rather tagged with * relevance information: higher the tag, higher the relevance *) -val cmatch': dbd:Mysql.dbd -> ?facts:bool -> Cic.term -> (int * string) list +val cmatch': dbd:HMysql.dbd -> ?facts:bool -> Cic.term -> (int * UriManager.uri) list type where = [ `Conclusion | `Statement ] (** signature matching extent *) (** @param where defaults to `Conclusion *) val sigmatch: - dbd:Mysql.dbd -> + dbd:HMysql.dbd -> ?facts:bool -> ?where:where -> term_signature -> - (int * string) list + (int * UriManager.uri) list (** {2 Constraint engine} *) @@ -77,19 +78,19 @@ val add_constraint: * @return list of URI satisfying given constraints *) val at_least: - dbd:Mysql.dbd -> + dbd:HMysql.dbd -> ?concl_card:cardinality_condition -> ?full_card:cardinality_condition -> ?diff:cardinality_condition -> ?rating:rating_criterion -> MetadataTypes.constr list -> - string list + UriManager.uri list (** @param where defaults to `Conclusion *) val at_most: - dbd:Mysql.dbd -> - ?where:where -> StringSet.t -> - (string -> bool) + dbd:HMysql.dbd -> + ?where:where -> UriManagerSet.t -> + (UriManager.uri -> bool) val add_all_constr: ?tbl:string -> @@ -100,11 +101,11 @@ val add_all_constr: int * string list * string list val exec: - dbd:Mysql.dbd -> + dbd:HMysql.dbd -> ?rating:[ `Hits ] -> int * string list * string list -> - string list + UriManager.uri list val signature_of: Cic.term -> term_signature -val constants_of: Cic.term -> StringSet.t +val constants_of: Cic.term -> UriManagerSet.t