]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/metadata/metadataTypes.ml
ocaml 3.09 transition
[helm.git] / helm / ocaml / metadata / metadataTypes.ml
index 5284d96b5dd48377585ce62d8133cd0459dd824e..81eb35817dcfc3ad960d03a44650b0ebe63a91bb 100644 (file)
@@ -32,9 +32,16 @@ let mainhyp_pos = position_prefix ^ "MainHypothesis"
 let inhyp_pos = position_prefix ^ "InHypothesis"
 let inbody_pos = position_prefix ^ "InBody"
 
+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 =
@@ -49,13 +56,13 @@ type pi_depth = int
 type metadata =
   [ `Sort of Cic.sort * main_position
   | `Rel of main_position
-  | `Obj of string * position
+  | `Obj of UriManager.uri * position
   ]
 
 type constr =
   [ `Sort of Cic.sort * main_position list
   | `Rel of main_position list
-  | `Obj of string * position list
+  | `Obj of UriManager.uri * position list
   ]
 
 let constr_of_metadata: metadata -> constr = function