]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/src/common/entity.ml
when sort inclusion is enabled, we can produce conversion constraints in xml
[helm.git] / helm / software / lambda-delta / src / common / entity.ml
index f587a8d54543d28e94d620d02cf740bb268a2f39..b88af255c288911108570404d60aa5a6e6188734 100644 (file)
@@ -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
-}
-