]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_kernel/nCic.ml
Error message fixed (dereferencing must be done eagerly, not when the error is
[helm.git] / helm / software / components / ng_kernel / nCic.ml
index fead92210f45053b925c7acbc82aeb6f55b64cce..32b79f02a2f898a2dadd8472b7aef08a38adca36 100644 (file)
@@ -56,11 +56,13 @@ type hypothesis = string * context_entry   (* name, entry *)
 
 type context = hypothesis list
 
-type conjecture = string option * context * term
+type meta_attrs = [`Name of string | `IsSort | `InScope | `OutScope of int] list
+
+type conjecture =  meta_attrs * context * term
 
 type metasenv = (int * conjecture) list
 
-type subst_entry = string option * context * term * term (* name,ctx,bo,ty *)
+type subst_entry = meta_attrs * context * term * term (* name,ctx,bo,ty *)
 
 type substitution = (int * subst_entry) list