Stream: General

Topic: Attributes and locale interpretations


view this post on Zulip Lukas Stevens (Sep 21 2023 at 13:40):

I wrote some ML code that declares a locale and defines two datatypes and a constant inside this locale. The code marks some theorems of the data types (e.g. selectors) and the definition as code_unfold. I'd like to interpret this locale in an anonymous context where the corresponding theorems should be marked as code_unfold. Unfortunately, this only seems to work with global_interpretation. Is it possible to avoid global_interpretation?

Example below:

theory Scratch imports Main
begin

locale foo
begin
definition "bar = True"
declare bar_def[code_unfold]
end

context
begin
interpretation foo .
definition "foobar1 = bar"
(* Does not work *)
export_code foobar1 in SML
end

context
begin
global_interpretation foo .
definition "foobar2 = bar"
(* Does work *)
export_code foobar2 in SML
end

end

Last updated: May 02 2024 at 01:06 UTC