]> matita.cs.unibo.it Git - helm.git/commitdiff
cosmetic changes
authorStefano Zacchiroli <zack@upsilon.cc>
Fri, 4 Feb 2005 09:14:32 +0000 (09:14 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Fri, 4 Feb 2005 09:14:32 +0000 (09:14 +0000)
helm/ocaml/metadata/metadataTypes.ml
helm/ocaml/metadata/metadataTypes.mli

index b52f522468584789df867f3cc4124c6cd897f50c..5542825893d65369c9099bb36579d51abdb98d31 100644 (file)
@@ -67,7 +67,6 @@ let constr_of_metadata: metadata -> constr = function
 let sort_tbl_original = "refSort"
 let rel_tbl_original = "refRel"
 let obj_tbl_original = "refObj"
-let owners_tbl_original = "owners"
 let conclno_tbl_original = "no_inconcl_aux"
 let conclno_hyp_tbl_original = "no_concl_hyp"
 let name_tbl_original = "objectName"
@@ -76,7 +75,6 @@ let name_tbl_original = "objectName"
 let sort_tbl_real = ref sort_tbl_original
 let rel_tbl_real = ref rel_tbl_original
 let obj_tbl_real = ref obj_tbl_original
-let owners_tbl_real = ref owners_tbl_original
 let conclno_tbl_real = ref conclno_tbl_original
 let conclno_hyp_tbl_real = ref conclno_hyp_tbl_original
 let name_tbl_real = ref name_tbl_original 
@@ -85,7 +83,6 @@ let name_tbl_real = ref name_tbl_original
 let sort_tbl () = ! sort_tbl_real ;; 
 let rel_tbl () = ! rel_tbl_real ;; 
 let obj_tbl () = ! obj_tbl_real ;; 
-let owners_tbl () = ! owners_tbl_real ;; 
 let conclno_tbl () = ! conclno_tbl_real ;; 
 let conclno_hyp_tbl () = ! conclno_hyp_tbl_real ;; 
 let name_tbl () = ! name_tbl_real ;; 
@@ -95,7 +92,6 @@ let ownerize_tables owner =
   sort_tbl_real := ( sort_tbl_original ^ "_" ^ owner) ;
   rel_tbl_real := ( rel_tbl_original ^ "_" ^ owner) ;
   obj_tbl_real := ( obj_tbl_original ^ "_" ^ owner) ;
-  owners_tbl_real := ( owners_tbl_original ^ "_" ^ owner) ;
   conclno_tbl_real := ( conclno_tbl_original ^ "_" ^ owner) ;
   conclno_hyp_tbl_real := ( conclno_hyp_tbl_original ^ "_" ^ owner) ;
   name_tbl_real := ( name_tbl_original ^ "_" ^ owner) 
index 2914e97db091a725c883ceb7fb8b17bd923607f8..86f0df6ece47411f9e57d0d6502549384030641d 100644 (file)
@@ -57,13 +57,14 @@ 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 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 ownerize_tables : string -> unit
-