]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_kernel/nCic.ml
Error message improved.
[helm.git] / helm / software / components / ng_kernel / nCic.ml
index c2e1c53d2d36cad3c6ccb022c0118fbb9e5d3871..afd73e53ef231a30a987b854e6eface05cddf5ea 100644 (file)
@@ -9,11 +9,14 @@
      \ /   This software is distributed as is, NO WARRANTY.     
       V_______________________________________________________________ *)
 
-(* $Id: nCicReduction.ml 8250 2008-03-25 17:56:20Z tassi $ *)
+(* $Id$ *)
 
 (********************************* TERMS ************************************)
 
-type sort = Prop | Type of int | CProp
+type universe = (bool * NUri.uri) list 
+  (* Max of non-empty list of named universes, or their successor (when true) *)
+
+type sort = Prop | Type of universe | CProp
 
 type implicit_annotation = [ `Closed | `Type | `Hole | `Term ]