X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Flambda-delta%2Fsrc%2Fcommon%2Fentity.ml;fp=helm%2Fsoftware%2Flambda-delta%2Fsrc%2Fcommon%2Fentity.ml;h=b88af255c288911108570404d60aa5a6e6188734;hb=f7988fc51f7c96617aa2b3320628645480af681a;hp=f587a8d54543d28e94d620d02cf740bb268a2f39;hpb=fa9e69af2ad5a22692f6fdd555d37bc6d80c5ad9;p=helm.git diff --git a/helm/software/lambda-delta/src/common/entity.ml b/helm/software/lambda-delta/src/common/entity.ml index f587a8d54..b88af255c 100644 --- a/helm/software/lambda-delta/src/common/entity.ml +++ b/helm/software/lambda-delta/src/common/entity.ml @@ -10,7 +10,6 @@ V_______________________________________________________________ *) module U = NUri -module G = Options module N = Level type uri = U.uri @@ -35,13 +34,6 @@ type 'term bind = Abst of N.level * 'term (* declaration: level, domain *) type 'term entity = attrs * uri * 'term bind (* attrs, name, binder *) -type status = { - delta: bool; (* global delta-expansion *) - rt: bool; (* reference typing *) - si: bool; (* sort inclusion *) - expand: bool (* always expand global definitions *) -} - (* helpers ******************************************************************) let common f (a, u, _) = f a u @@ -120,12 +112,3 @@ let xlate f xlate_term = function let f t = f (a, uri, Abbr t) in xlate_term f t | _, _, Void -> assert false - -let initial_status () = { - delta = false; rt = false; si = !G.si; expand = !G.expand -} - -let refresh_status st = {st with - si = !G.si; expand = !G.expand -} -