X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmetadata%2FmetadataConstraints.mli;h=48143490ff1682d3240d25eaa4781ba80bf4dd15;hb=afb25a74a7c9403c07c67e58efb6460207e228b3;hp=3de99469c51cef9e31f6866ad305406dcf1ecf41;hpb=282f371ba8533ea0e4e667265f9e4b04856bf972;p=helm.git diff --git a/helm/ocaml/metadata/metadataConstraints.mli b/helm/ocaml/metadata/metadataConstraints.mli index 3de99469c..48143490f 100644 --- a/helm/ocaml/metadata/metadataConstraints.mli +++ b/helm/ocaml/metadata/metadataConstraints.mli @@ -35,18 +35,20 @@ type term_signature = (string * string list) option * StringSet.t (** @return sorted list of theorem URIs, first URIs in the least have higher * relevance *) -val cmatch: dbd:Mysql.dbd -> Cic.term -> string list +val cmatch: dbd:Mysql.dbd -> ?facts:bool -> Cic.term -> string 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 -> Cic.term -> (int * string) list +val cmatch': dbd:Mysql.dbd -> ?facts:bool -> Cic.term -> (int * string) list type where = [ `Conclusion | `Statement ] (** signature matching extent *) (** @param where defaults to `Conclusion *) val sigmatch: dbd:Mysql.dbd -> - ?where:where -> term_signature -> + ?facts:bool -> + ?where:where -> + term_signature -> (int * string) list (** {2 Constraint engine} *) @@ -55,14 +57,18 @@ val sigmatch: type cardinality_condition = | Eq of int | Gt of int + | Lt of int (** @param concl_card cardinality condition on conclusion only * @param full_card cardinality condition on the whole statement + * @param diff required difference between the number of different constants in + * hypothesis and the number of different constants in body * @return list of URI satisfying given constraints *) val at_least: dbd:Mysql.dbd -> ?concl_card:cardinality_condition -> ?full_card:cardinality_condition -> + ?diff:cardinality_condition -> MetadataTypes.constr list -> string list