]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_omdoc/content.mli
* removed wrong unref
[helm.git] / helm / ocaml / cic_omdoc / content.mli
index 813a31053df36cbccca8dda5f1fbb5633ea86313..fea233da0d2d321511db9a8d74d46a018e339faa 100644 (file)
@@ -114,6 +114,7 @@ and 'term conclude_item =
 and 'term arg =
          Aux of string
        | Premise of premise
+       | Lemma of lemma
        | Term of 'term
        | ArgProof of 'term proof
        | ArgMethod of string (* ???? *)
@@ -124,6 +125,12 @@ and premise =
          premise_binder : string option;
          premise_n : int option;
        }
+
+and lemma =
+       { lemma_id: string;
+         lemma_name : string;
+         lemma_uri: string 
+       }
 ;;
  
 type 'term conjecture = id * int * 'term context * 'term
@@ -131,7 +138,6 @@ type 'term conjecture = id * int * 'term context * 'term
 and 'term context = 'term hypothesis list
 
 and 'term hypothesis =
- id *
  ['term decl_context_element | ('term,'term proof) def_context_element ] option
 ;;