X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Flambda-delta%2Fbasic_ag%2Fbag.ml;h=79e7a042199597ff48f8d92a0806cff389f315a1;hb=590b41b39d52ae1e320bf1c01220b06fadb1ba8d;hp=3fa4568d1d21574de62884f771703a5b8cb8ab20;hpb=79684e8bd0f54b5c88fff981366bd8c78dd0fbe9;p=helm.git diff --git a/helm/software/lambda-delta/basic_ag/bag.ml b/helm/software/lambda-delta/basic_ag/bag.ml index 3fa4568d1..79e7a0421 100644 --- a/helm/software/lambda-delta/basic_ag/bag.ml +++ b/helm/software/lambda-delta/basic_ag/bag.ml @@ -12,8 +12,8 @@ (* kernel version: basic, absolute, global *) (* note : experimental *) -type uri = Unit.uri -type id = Unit.id +type uri = Entity.uri +type id = Entity.id type bind = Void (* exclusion *) | Abst of term (* abstraction *) @@ -22,13 +22,13 @@ type bind = Void (* exclusion *) and term = Sort of int (* hierarchy index *) | LRef of int (* location *) | GRef of uri (* reference *) - | Cast of term * term (* type, term *) + | Cast of term * term (* domain, element *) | Appl of term * term (* argument, function *) | Bind of int * id * bind * term (* location, name, binder, scope *) -type entry = bind Unit.entry (* age, uri, binder *) +type entry = bind Entity.entry (* age, uri, binder *) -type unit = bind Unit.unit +type entity = bind Entity.entity type lenv = (int * id * bind) list (* location, name, binder *)