X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_kernel%2FnReference.mli;h=703d32d02e7f0e99418ec5041bab7eaf823abd5f;hb=6033870314160f36fa814914550682b304beaba0;hp=7f43c13e799cd3af071c6a6a0223941ac48c9cef;hpb=738ff6e752f9e5facba4e92bdb64453062f52c7d;p=helm.git diff --git a/helm/software/components/ng_kernel/nReference.mli b/helm/software/components/ng_kernel/nReference.mli index 7f43c13e7..703d32d02 100644 --- a/helm/software/components/ng_kernel/nReference.mli +++ b/helm/software/components/ng_kernel/nReference.mli @@ -15,13 +15,13 @@ exception IllFormedReference of string Lazy.t type spec = | Decl - | Def - | Fix of int * int (* fixno, recparamno *) + | Def of int (* height *) + | Fix of int * int * int (* fixno, recparamno, height *) | CoFix of int - | Ind of bool * int (* inductive, indtyno *) - | Con of int * int (* indtyno, constrno *) + | Ind of bool * int * int (* inductive, indtyno, leftno *) + | Con of int * int * int (* indtyno, constrno, leftno *) -type reference = private Ref of int * NUri.uri * spec +type reference = private Ref of NUri.uri * spec val eq: reference -> reference -> bool val string_of_reference: reference -> string