X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmetadata%2FmetadataTypes.mli;h=5a2456de10fb2b1a62da4ebb431174807b18ddc6;hb=acf29bdbdcdc6ad8c2d9d27e8a47500981b605cd;hp=2914e97db091a725c883ceb7fb8b17bd923607f8;hpb=12cb072c7bbb5119f4328f637add61ae2228b8c7;p=helm.git diff --git a/helm/ocaml/metadata/metadataTypes.mli b/helm/ocaml/metadata/metadataTypes.mli index 2914e97db..5a2456de1 100644 --- a/helm/ocaml/metadata/metadataTypes.mli +++ b/helm/ocaml/metadata/metadataTypes.mli @@ -29,9 +29,16 @@ val mainhyp_pos : string val inhyp_pos : string val inbody_pos : string +type relation = + | Eq of int + | Le of int + | Lt of int + | Ge of int + | Gt of int + type main_position = - [ `MainConclusion of int option (* Pi depth *) - | `MainHypothesis of int option (* Pi depth *) + [ `MainConclusion of relation option (* Pi depth *) + | `MainHypothesis of relation option (* Pi depth *) ] type position = @@ -57,13 +64,21 @@ type constr = val constr_of_metadata: metadata -> constr + (** invoke this function to set the current owner. Afterwards the functions + * below will return the name of the table of the set owner *) +val ownerize_tables : string -> unit +val are_tables_ownerized : unit -> bool + val sort_tbl: unit -> string val rel_tbl: unit -> string val obj_tbl: unit -> string -(* val owners_tbl: unit -> string *) -val conclno_tbl: unit -> string -val conclno_hyp_tbl: unit -> string val name_tbl: unit -> string +val count_tbl: unit -> string -val ownerize_tables : string -> unit +val library_sort_tbl: string +val library_rel_tbl: string +val library_obj_tbl: string +val library_name_tbl: string +val library_count_tbl: string +val library_hits_tbl: string