]> matita.cs.unibo.it Git - helm.git/blobdiff - components/cic/cic.ml
...
[helm.git] / components / cic / cic.ml
index 1becd44428bd3b4f9139c01280e0d47ef48de26e..1b02df3f1a12c7367a64a64cdc49fad3f7d1d9c0 100644 (file)
@@ -57,21 +57,25 @@ type name =
 
 type object_flavour =
   [ `Definition
+  | `MutualDefinition
   | `Fact
   | `Lemma
   | `Remark
   | `Theorem
   | `Variant
+  | `Axiom
   ]
 
 type object_class =
-  [ `Coercion
+  [ `Coercion of int
   | `Elim of sort   (** elimination principle; if sort is Type, the universe is
                       * not relevant *)
-  | `Record of (string * bool) list (** 
+  | `Record of (string * bool * int) list (** 
                         inductive type that encodes a record; the arguments are
-                        the record fields names and if they are coercions *)
+                        the record fields names and if they are coercions and
+                        then the coercion arity *)
   | `Projection     (** record projection *)
+  | `InversionPrinciple (** inversion principle *)
   ]
 
 type attribute =