| author | nipkow | 
| Mon, 26 Aug 2024 22:52:27 +0200 | |
| changeset 80776 | 3a9e570c916d | 
| parent 80674 | 5dec26c3688d | 
| child 80897 | 5328d67ec647 | 
| permissions | -rw-r--r-- | 
| 41959 | 1 | (* Title: Pure/Isar/generic_target.ML | 
| 38309 | 2 | Author: Makarius | 
| 3 | Author: Florian Haftmann, TU Muenchen | |
| 4 | ||
| 5 | Common target infrastructure. | |
| 6 | *) | |
| 7 | ||
| 8 | signature GENERIC_TARGET = | |
| 9 | sig | |
| 60345 
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
 haftmann parents: 
60344diff
changeset | 10 | (*auxiliary*) | 
| 
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
 haftmann parents: 
60344diff
changeset | 11 | val export_abbrev: Proof.context -> | 
| 
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
 haftmann parents: 
60344diff
changeset | 12 | (term -> term) -> term -> term * ((string * sort) list * (term list * term list)) | 
| 62764 | 13 | val check_mixfix: Proof.context -> binding * (string * sort) list -> mixfix -> mixfix | 
| 60345 
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
 haftmann parents: 
60344diff
changeset | 14 | val check_mixfix_global: binding * bool -> mixfix -> mixfix | 
| 
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
 haftmann parents: 
60344diff
changeset | 15 | |
| 60340 | 16 | (*background primitives*) | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 17 | val background_foundation: ((binding * typ) * mixfix) * (binding * term) -> | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 18 | term list * term list -> local_theory -> (term * thm) * local_theory | 
| 78085 | 19 | val background_declaration: Morphism.declaration_entity -> local_theory -> local_theory | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 20 | val background_abbrev: binding * term -> term list -> local_theory -> (term * term) * local_theory | 
| 71788 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 21 | val add_foundation_interpretation: (binding * (term * term list) -> Context.generic -> Context.generic) -> | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 22 | theory -> theory | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 23 | |
| 60340 | 24 | (*nested local theories primitives*) | 
| 67652 | 25 | val standard_facts: local_theory -> Proof.context -> Attrib.fact list -> Attrib.fact list | 
| 26 | val standard_notes: (int * int -> bool) -> string -> Attrib.fact list -> | |
| 63269 | 27 | local_theory -> local_theory | 
| 78085 | 28 | val standard_declaration: (int * int -> bool) -> Morphism.declaration_entity -> | 
| 78072 | 29 | local_theory -> local_theory | 
| 60340 | 30 | val standard_const: (int * int -> bool) -> Syntax.mode -> (binding * mixfix) * term -> | 
| 31 | local_theory -> local_theory | |
| 73845 | 32 | val local_interpretation: Locale.registration -> | 
| 33 | local_theory -> local_theory | |
| 60340 | 34 | |
| 35 | (*lifting target primitives to local theory operations*) | |
| 40782 | 36 | val define: (((binding * typ) * mixfix) * (binding * term) -> | 
| 37 | term list * term list -> local_theory -> (term * thm) * local_theory) -> | |
| 46992 
eeea81b86b70
refined Local_Theory.define vs. Local_Theory.define_internal, which allows to pass alternative name to the foundational axiom -- expecially important for 'instantiation' or 'overloading', which loose name information due to Long_Name.base_name cooking etc.;
 wenzelm parents: 
46916diff
changeset | 38 | bool -> (binding * mixfix) * (Attrib.binding * term) -> local_theory -> | 
| 40782 | 39 | (term * (string * thm)) * local_theory | 
| 47250 
6523a21076a8
clarified Generic_Target.notes: always perform Attrib.partial_evaluation;
 wenzelm parents: 
47249diff
changeset | 40 | val notes: | 
| 67652 | 41 | (string -> Attrib.fact list -> Attrib.fact list -> local_theory -> local_theory) -> | 
| 42 | string -> Attrib.fact list -> local_theory -> (string * thm list) list * local_theory | |
| 60337 | 43 | val abbrev: (Syntax.mode -> binding * mixfix -> term -> | 
| 57160 | 44 | term list * term list -> local_theory -> local_theory) -> | 
| 60337 | 45 | Syntax.mode -> (binding * mixfix) * term -> local_theory -> (term * term) * local_theory | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 46 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 47 | (*theory target primitives*) | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 48 | val theory_target_foundation: ((binding * typ) * mixfix) * (binding * term) -> | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 49 | term list * term list -> local_theory -> (term * thm) * local_theory | 
| 67652 | 50 | val theory_target_notes: string -> Attrib.fact list -> Attrib.fact list -> | 
| 51 | local_theory -> local_theory | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 52 | val theory_target_abbrev: Syntax.mode -> (binding * mixfix) -> term -> term list * term list -> | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 53 | local_theory -> local_theory | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 54 | |
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 55 | (*theory target operations*) | 
| 60344 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 56 | val theory_abbrev: Syntax.mode -> (binding * mixfix) * term -> | 
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 57 | local_theory -> (term * term) * local_theory | 
| 78085 | 58 | val theory_declaration: Morphism.declaration_entity -> local_theory -> local_theory | 
| 73845 | 59 | val theory_registration: Locale.registration -> local_theory -> local_theory | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 60 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 61 | (*locale target primitives*) | 
| 67652 | 62 | val locale_target_notes: string -> string -> Attrib.fact list -> Attrib.fact list -> | 
| 63 | local_theory -> local_theory | |
| 63339 | 64 | val locale_target_abbrev: string -> Syntax.mode -> | 
| 65 | (binding * mixfix) -> term -> term list * term list -> local_theory -> local_theory | |
| 78095 | 66 |   val locale_target_declaration: string -> {syntax: bool, pos: Position.T} ->
 | 
| 67 | Morphism.declaration_entity -> local_theory -> local_theory | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 68 | val locale_target_const: string -> (morphism -> bool) -> Syntax.mode -> | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 69 | (binding * mixfix) * term -> local_theory -> local_theory | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 70 | |
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 71 | (*locale operations*) | 
| 60344 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 72 | val locale_abbrev: string -> Syntax.mode -> (binding * mixfix) * term -> | 
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 73 | local_theory -> (term * term) * local_theory | 
| 78095 | 74 |   val locale_declaration: string -> {syntax: bool, pervasive: bool, pos: Position.T} ->
 | 
| 75 | Morphism.declaration_entity -> local_theory -> local_theory | |
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 76 | val locale_const: string -> Syntax.mode -> (binding * mixfix) * term -> | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 77 | local_theory -> local_theory | 
| 73845 | 78 | val locale_dependency: string -> Locale.registration -> | 
| 79 | local_theory -> local_theory | |
| 45353 | 80 | end | 
| 38309 | 81 | |
| 82 | structure Generic_Target: GENERIC_TARGET = | |
| 83 | struct | |
| 84 | ||
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 85 | (** consts **) | 
| 38312 
9dd57db3c0f2
moved extra_tfrees check for mixfix syntax to Generic_Target
 haftmann parents: 
38311diff
changeset | 86 | |
| 60345 
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
 haftmann parents: 
60344diff
changeset | 87 | fun export_abbrev lthy preprocess rhs = | 
| 60342 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 88 | let | 
| 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 89 | val thy_ctxt = Proof_Context.init_global (Proof_Context.theory_of lthy); | 
| 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 90 | |
| 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 91 | val rhs' = rhs | 
| 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 92 | |> Assumption.export_term lthy (Local_Theory.target_of lthy) | 
| 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 93 | |> preprocess; | 
| 63339 | 94 | val term_params = | 
| 95 | map Free (sort (Variable.fixed_ord lthy o apply2 #1) (Variable.add_fixed lthy rhs' [])); | |
| 60342 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 96 | val u = fold_rev lambda term_params rhs'; | 
| 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 97 | val global_rhs = singleton (Variable.polymorphic thy_ctxt) u; | 
| 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 98 | |
| 74266 | 99 | val type_tfrees = TFrees.build (TFrees.add_tfreesT (Term.fastype_of u)); | 
| 60342 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 100 | val extra_tfrees = | 
| 74278 | 101 | TFrees.build (TFrees.add_tfrees_unless (TFrees.defined type_tfrees) u) | 
| 74284 
8d1e27a23dd1
clarified order of extra TFrees: underlying fast_string_ord coincides with Name.invent (e.g. from type inference);
 wenzelm parents: 
74282diff
changeset | 102 | |> TFrees.keys; | 
| 60342 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 103 | val type_params = map (Logic.mk_type o TFree) extra_tfrees; | 
| 60345 
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
 haftmann parents: 
60344diff
changeset | 104 | in (global_rhs, (extra_tfrees, (type_params, term_params))) end; | 
| 60342 
df9b153d866b
separate function to compute exported abbreviation
 haftmann parents: 
60341diff
changeset | 105 | |
| 38312 
9dd57db3c0f2
moved extra_tfrees check for mixfix syntax to Generic_Target
 haftmann parents: 
38311diff
changeset | 106 | fun check_mixfix ctxt (b, extra_tfrees) mx = | 
| 62767 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62764diff
changeset | 107 | if null extra_tfrees then mx | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62764diff
changeset | 108 | else | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62764diff
changeset | 109 | (if Context_Position.is_visible ctxt then | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62764diff
changeset | 110 | warning | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62764diff
changeset | 111 |         ("Additional type variable(s) in specification of " ^ Binding.print b ^ ": " ^
 | 
| 74284 
8d1e27a23dd1
clarified order of extra TFrees: underlying fast_string_ord coincides with Name.invent (e.g. from type inference);
 wenzelm parents: 
74282diff
changeset | 112 | commas (map (Syntax.string_of_typ ctxt o TFree) extra_tfrees) ^ | 
| 62767 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62764diff
changeset | 113 | (if Mixfix.is_empty mx then "" | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62764diff
changeset | 114 | else "\nDropping mixfix syntax " ^ Pretty.string_of (Mixfix.pretty_mixfix mx))) | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62764diff
changeset | 115 | else (); NoSyn); | 
| 38312 
9dd57db3c0f2
moved extra_tfrees check for mixfix syntax to Generic_Target
 haftmann parents: 
38311diff
changeset | 116 | |
| 47291 
6a641856a0e9
better drop background syntax if entity depends on parameters;
 wenzelm parents: 
47290diff
changeset | 117 | fun check_mixfix_global (b, no_params) mx = | 
| 62752 | 118 | if no_params orelse Mixfix.is_empty mx then mx | 
| 119 | else | |
| 120 |     (warning ("Dropping global mixfix syntax: " ^ Binding.print b ^ " " ^
 | |
| 62767 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62764diff
changeset | 121 | Pretty.string_of (Mixfix.pretty_mixfix mx)); NoSyn); | 
| 47291 
6a641856a0e9
better drop background syntax if entity depends on parameters;
 wenzelm parents: 
47290diff
changeset | 122 | |
| 61701 
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
 ballarin parents: 
61261diff
changeset | 123 | fun same_const (Const (c, _), Const (c', _)) = c = c' | 
| 
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
 ballarin parents: 
61261diff
changeset | 124 | | same_const (t $ _, t' $ _) = same_const (t, t') | 
| 80674 | 125 | | same_const _ = false; | 
| 61701 
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
 ballarin parents: 
61261diff
changeset | 126 | |
| 78072 | 127 | fun const_decl phi_pred prmode ((b, mx), rhs) = Morphism.entity (fn phi => fn context => | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 128 | if phi_pred phi then | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 129 | let | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 130 | val b' = Morphism.binding phi b; | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 131 | val rhs' = Morphism.term phi rhs; | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 132 | val same_shape = Term.aconv_untyped (rhs, rhs'); | 
| 61701 
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
 ballarin parents: 
61261diff
changeset | 133 | val same_stem = same_shape orelse same_const (rhs, rhs'); | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 134 | val const_alias = | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 135 | if same_shape then | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 136 | (case rhs' of | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 137 | Const (c, T) => | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 138 | let | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 139 | val thy = Context.theory_of context; | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 140 | val ctxt = Context.proof_of context; | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 141 | in | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 142 | (case Type_Infer_Context.const_type ctxt c of | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 143 | SOME T' => if Sign.typ_equiv thy (T, T') then SOME c else NONE | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 144 | | NONE => NONE) | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 145 | end | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 146 | | _ => NONE) | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 147 | else NONE; | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 148 | in | 
| 60283 | 149 | (case const_alias of | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 150 | SOME c => | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 151 | context | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 152 | |> Context.mapping (Sign.const_alias b' c) (Proof_Context.const_alias b' c) | 
| 78072 | 153 | |> Morphism.form_entity (Proof_Context.generic_notation true prmode [(rhs', mx)]) | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 154 | | NONE => | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 155 | context | 
| 62764 | 156 | |> Proof_Context.generic_add_abbrev Print_Mode.internal | 
| 157 | (b', Term.close_schematic_term rhs') | |
| 61701 
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
 ballarin parents: 
61261diff
changeset | 158 | |-> (fn (const as Const (c, _), _) => same_stem ? | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 159 | (Proof_Context.generic_revert_abbrev (#1 prmode) c #> | 
| 62764 | 160 | same_shape ? | 
| 78072 | 161 | Morphism.form_entity (Proof_Context.generic_notation true prmode [(const, mx)])))) | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 162 | end | 
| 78072 | 163 | else context); | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 164 | |
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 165 | |
| 60283 | 166 | |
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 167 | (** background primitives **) | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 168 | |
| 71788 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 169 | structure Foundation_Interpretations = Theory_Data | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 170 | ( | 
| 78044 
2c3f4d80abfb
more standard merge order, following logical structure of imports rather than physical serials;
 wenzelm parents: 
74561diff
changeset | 171 | type T = ((binding * (term * term list) -> Context.generic -> Context.generic) * stamp) list | 
| 
2c3f4d80abfb
more standard merge order, following logical structure of imports rather than physical serials;
 wenzelm parents: 
74561diff
changeset | 172 | val empty = []; | 
| 
2c3f4d80abfb
more standard merge order, following logical structure of imports rather than physical serials;
 wenzelm parents: 
74561diff
changeset | 173 | val merge = Library.merge (eq_snd (op =)); | 
| 71788 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 174 | ); | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 175 | |
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 176 | fun add_foundation_interpretation f = | 
| 78044 
2c3f4d80abfb
more standard merge order, following logical structure of imports rather than physical serials;
 wenzelm parents: 
74561diff
changeset | 177 | Foundation_Interpretations.map (cons (f, stamp ())); | 
| 71788 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 178 | |
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 179 | fun foundation_interpretation binding_const_params lthy = | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 180 | let | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 181 | val interps = Foundation_Interpretations.get (Proof_Context.theory_of lthy); | 
| 78044 
2c3f4d80abfb
more standard merge order, following logical structure of imports rather than physical serials;
 wenzelm parents: 
74561diff
changeset | 182 | val interp = fold (fn (f, _) => f binding_const_params) interps; | 
| 71788 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 183 | in | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 184 | lthy | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 185 | |> Local_Theory.background_theory (Context.theory_map interp) | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 186 | |> Local_Theory.map_contexts (K (Context.proof_map interp)) | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 187 | end; | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 188 | |
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 189 | fun background_foundation (((b, U), mx), (b_def, rhs)) (type_params, term_params) lthy = | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 190 | let | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 191 | val params = type_params @ term_params; | 
| 71788 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 192 | val target_params = type_params | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 193 | @ take_prefix is_Free (Variable.export_terms lthy (Local_Theory.target_of lthy) term_params); | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 194 | val mx' = check_mixfix_global (b, null params) mx; | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 195 | |
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 196 | val (const, lthy2) = lthy | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 197 | |> Local_Theory.background_theory_result (Sign.declare_const lthy ((b, U), mx')); | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 198 | val lhs = Term.list_comb (const, params); | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 199 | |
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 200 | val ((_, def), lthy3) = lthy2 | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 201 | |> Local_Theory.background_theory_result | 
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
60924diff
changeset | 202 | (Thm.add_def (Proof_Context.defs_context lthy2) false false | 
| 71788 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 203 | (Thm.def_binding_optional b b_def, Logic.mk_equals (lhs, rhs))) | 
| 
ca3ac5238c41
hooks for foundational terms: protection of foundational terms during simplification
 haftmann parents: 
71178diff
changeset | 204 | ||> foundation_interpretation (b, (const, target_params)); | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 205 | in ((lhs, def), lthy3) end; | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 206 | |
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 207 | fun background_declaration decl lthy = | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 208 | let | 
| 71178 | 209 | fun theory_decl context = | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 210 | Local_Theory.standard_form lthy | 
| 71178 | 211 | (Proof_Context.init_global (Context.theory_of context)) decl context; | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 212 | in Local_Theory.background_theory (Context.theory_map theory_decl) lthy end; | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 213 | |
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 214 | fun background_abbrev (b, global_rhs) params = | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 215 | Local_Theory.background_theory_result (Sign.add_abbrev Print_Mode.internal (b, global_rhs)) | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58028diff
changeset | 216 | #>> apply2 (fn t => Term.list_comb (Logic.unvarify_global t, params)) | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 217 | |
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 218 | |
| 60283 | 219 | |
| 60340 | 220 | (** nested local theories primitives **) | 
| 221 | ||
| 222 | fun standard_facts lthy ctxt = | |
| 223 | Attrib.transform_facts (Local_Theory.standard_morphism lthy ctxt); | |
| 224 | ||
| 225 | fun standard_notes pred kind facts lthy = | |
| 226 | Local_Theory.map_contexts (fn level => fn ctxt => | |
| 227 | if pred (Local_Theory.level lthy, level) | |
| 228 | then Attrib.local_notes kind (standard_facts lthy ctxt facts) ctxt |> snd | |
| 229 | else ctxt) lthy; | |
| 230 | ||
| 231 | fun standard_declaration pred decl lthy = | |
| 232 | Local_Theory.map_contexts (fn level => fn ctxt => | |
| 233 | if pred (Local_Theory.level lthy, level) | |
| 234 | then Context.proof_map (Local_Theory.standard_form lthy ctxt decl) ctxt | |
| 235 | else ctxt) lthy; | |
| 236 | ||
| 237 | fun standard_const pred prmode ((b, mx), rhs) = | |
| 238 | standard_declaration pred (const_decl (K true) prmode ((b, mx), rhs)); | |
| 239 | ||
| 73846 | 240 | fun standard_registration pred registration lthy = | 
| 241 | Local_Theory.map_contexts (fn level => | |
| 242 | if pred (Local_Theory.level lthy, level) | |
| 243 | then Context.proof_map (Locale.add_registration registration) | |
| 244 | else I) lthy; | |
| 245 | ||
| 74361 
690928dd6f8f
apply declarations from interpretations in eigen context also
 haftmann parents: 
74284diff
changeset | 246 | val local_interpretation = standard_registration (fn (n, level) => level >= n - 1); | 
| 73845 | 247 | |
| 248 | ||
| 60340 | 249 | |
| 250 | (** lifting target primitives to local theory operations **) | |
| 38312 
9dd57db3c0f2
moved extra_tfrees check for mixfix syntax to Generic_Target
 haftmann parents: 
38311diff
changeset | 251 | |
| 38309 | 252 | (* define *) | 
| 253 | ||
| 46992 
eeea81b86b70
refined Local_Theory.define vs. Local_Theory.define_internal, which allows to pass alternative name to the foundational axiom -- expecially important for 'instantiation' or 'overloading', which loose name information due to Long_Name.base_name cooking etc.;
 wenzelm parents: 
46916diff
changeset | 254 | fun define foundation internal ((b, mx), ((b_def, atts), rhs)) lthy = | 
| 38309 | 255 | let | 
| 59616 | 256 | val thy_ctxt = Proof_Context.init_global (Proof_Context.theory_of lthy); | 
| 38309 | 257 | |
| 258 | (*term and type parameters*) | |
| 59621 
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
 wenzelm parents: 
59616diff
changeset | 259 | val ((defs, _), rhs') = Thm.cterm_of lthy rhs | 
| 47276 | 260 | |> Local_Defs.export_cterm lthy thy_ctxt ||> Thm.term_of; | 
| 38309 | 261 | |
| 47272 
ca31cfa509b1
refined define/abbrev: allow extra fixes in aux. context vs. bottom target (NB: export_term expands defined variables, leaving fixed ones);
 wenzelm parents: 
47250diff
changeset | 262 | val xs = Variable.add_fixed lthy rhs' []; | 
| 38309 | 263 | val T = Term.fastype_of rhs; | 
| 74266 | 264 | val type_tfrees = TFrees.build (TFrees.add_tfreesT T #> fold (TFrees.add_tfreesT o #2) xs); | 
| 74230 | 265 | val extra_tfrees = | 
| 74278 | 266 | TFrees.build (rhs |> TFrees.add_tfrees_unless (TFrees.defined type_tfrees)) | 
| 74284 
8d1e27a23dd1
clarified order of extra TFrees: underlying fast_string_ord coincides with Name.invent (e.g. from type inference);
 wenzelm parents: 
74282diff
changeset | 267 | |> TFrees.keys; | 
| 38312 
9dd57db3c0f2
moved extra_tfrees check for mixfix syntax to Generic_Target
 haftmann parents: 
38311diff
changeset | 268 | val mx' = check_mixfix lthy (b, extra_tfrees) mx; | 
| 38309 | 269 | |
| 270 | val type_params = map (Logic.mk_type o TFree) extra_tfrees; | |
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58028diff
changeset | 271 | val term_params = map Free (sort (Variable.fixed_ord lthy o apply2 #1) xs); | 
| 38309 | 272 | val params = type_params @ term_params; | 
| 273 | ||
| 274 | val U = map Term.fastype_of params ---> T; | |
| 275 | ||
| 276 | (*foundation*) | |
| 45353 | 277 | val ((lhs', global_def), lthy2) = lthy | 
| 278 | |> foundation (((b, U), mx'), (b_def, rhs')) (type_params, term_params); | |
| 38309 | 279 | |
| 280 | (*local definition*) | |
| 63344 | 281 | val ([(lhs, (_, local_def))], lthy3) = lthy2 | 
| 63346 | 282 | |> Context_Position.set_visible false | 
| 63352 | 283 | |> Local_Defs.define [((b, NoSyn), (Binding.empty_atts, lhs'))] | 
| 63346 | 284 | ||> Context_Position.restore_visible lthy2; | 
| 47240 | 285 | |
| 286 | (*result*) | |
| 47238 | 287 | val def = | 
| 47240 | 288 | Thm.transitive local_def global_def | 
| 59621 
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
 wenzelm parents: 
59616diff
changeset | 289 | |> Local_Defs.contract lthy3 defs (Thm.cterm_of lthy3 (Logic.mk_equals (lhs, rhs))); | 
| 38315 | 290 | val ([(res_name, [res])], lthy4) = lthy3 | 
| 47080 | 291 | |> Local_Theory.notes [((if internal then Binding.empty else b_def, atts), [([def], [])])]; | 
| 38315 | 292 | in ((lhs, (res_name, res)), lthy4) end; | 
| 38309 | 293 | |
| 294 | ||
| 295 | (* notes *) | |
| 296 | ||
| 47250 
6523a21076a8
clarified Generic_Target.notes: always perform Attrib.partial_evaluation;
 wenzelm parents: 
47249diff
changeset | 297 | local | 
| 
6523a21076a8
clarified Generic_Target.notes: always perform Attrib.partial_evaluation;
 wenzelm parents: 
47249diff
changeset | 298 | |
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
79435diff
changeset | 299 | val name_thm1 = Global_Theory.name_thm Global_Theory.official1; | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
79435diff
changeset | 300 | val name_thm2 = Global_Theory.name_thm Global_Theory.unofficial2; | 
| 79357 | 301 | |
| 79356 
e9828380e7e3
more robust: avoid crash of AFP/Transition_Systems_and_Automata (amending fe4bd39bfeac and 43d8385db923);
 wenzelm parents: 
79355diff
changeset | 302 | fun thm_def (name, pos) thm lthy = | 
| 79357 | 303 | if #1 name <> "" andalso Proofterm.zproof_enabled (Proofterm.get_proofs_level ()) then | 
| 304 | Local_Theory.background_theory_result (Thm.store_zproof (name, pos) thm) lthy | |
| 79356 
e9828380e7e3
more robust: avoid crash of AFP/Transition_Systems_and_Automata (amending fe4bd39bfeac and 43d8385db923);
 wenzelm parents: 
79355diff
changeset | 305 | else (thm, lthy); | 
| 79355 
fe4bd39bfeac
more robust: zproofs need to be enabled (amending 43d8385db923);
 wenzelm parents: 
79354diff
changeset | 306 | |
| 79359 
5b01b93de062
more robust: avoid crash of Thm.solve_constraints due to changed background theory, e.g. relevant for AFP/Transition_Systems_and_Automata;
 wenzelm parents: 
79358diff
changeset | 307 | fun thm_definition (name_pos, thm) lthy = | 
| 38309 | 308 | let | 
| 79352 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 309 | val thy_ctxt = Proof_Context.init_global (Proof_Context.theory_of lthy); | 
| 38309 | 310 | |
| 311 | (*export assumes/defines*) | |
| 79353 | 312 | val ((defs, asms), thm') = Local_Defs.export lthy thy_ctxt thm; | 
| 79352 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 313 | val asms' = map (rewrite_rule lthy (Drule.norm_hhf_eqs @ defs)) asms; | 
| 38309 | 314 | |
| 315 | (*export fixes*) | |
| 74281 | 316 | val tfrees = | 
| 79353 | 317 |       TFrees.build (Thm.fold_terms {hyps = true} TFrees.add_tfrees thm')
 | 
| 74284 
8d1e27a23dd1
clarified order of extra TFrees: underlying fast_string_ord coincides with Name.invent (e.g. from type inference);
 wenzelm parents: 
74282diff
changeset | 318 | |> TFrees.keys |> map TFree; | 
| 74281 | 319 | val frees = | 
| 79353 | 320 |       Frees.build (Thm.fold_terms {hyps = true} Frees.add_frees thm')
 | 
| 74281 | 321 | |> Frees.list_set_rev |> map Free; | 
| 79353 | 322 | val (schematic_thm :: variables) = | 
| 323 | (thm' :: map (Drule.mk_term o Thm.cterm_of lthy) (map Logic.mk_type tfrees @ frees)) | |
| 79352 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 324 | |> Variable.export lthy thy_ctxt | 
| 38309 | 325 | |> Drule.zero_var_indexes_list; | 
| 326 | ||
| 327 | (*thm definition*) | |
| 79357 | 328 | val (global_thm, lthy') = thm_def name_pos (name_thm1 name_pos schematic_thm) lthy; | 
| 38309 | 329 | |
| 330 | (*import fixes*) | |
| 331 | val (tvars, vars) = | |
| 79353 | 332 | chop (length tfrees) (map (Thm.term_of o Drule.dest_term) variables) | 
| 38309 | 333 | |>> map Logic.dest_type; | 
| 334 | ||
| 74220 
c49134ee16c1
more scalable data structure (but: rarely used many arguments);
 wenzelm parents: 
73846diff
changeset | 335 | val instT = | 
| 74266 | 336 | TVars.build (fold2 (fn a => fn b => | 
| 337 | (case a of TVar v => TVars.add (v, b) | _ => I)) tvars tfrees); | |
| 79354 
43d8385db923
more thorough thm definition via Global_Theory.register_proofs: store (and purge) zproofs;
 wenzelm parents: 
79353diff
changeset | 338 | val cinstT = TVars.map (K (Thm.ctyp_of lthy')) instT; | 
| 74220 
c49134ee16c1
more scalable data structure (but: rarely used many arguments);
 wenzelm parents: 
73846diff
changeset | 339 | val cinst = | 
| 74282 | 340 | Vars.build | 
| 341 | (fold2 (fn v => fn t => | |
| 342 | (case v of | |
| 343 | Var (xi, T) => | |
| 344 | Vars.add ((xi, Term_Subst.instantiateT instT T), | |
| 79435 | 345 | Thm.cterm_of lthy' (Term.map_types (Term_Subst.instantiateT_same instT) t)) | 
| 74282 | 346 | | _ => I)) vars frees); | 
| 79353 | 347 | val fixed_thm = Thm.instantiate (cinstT, cinst) global_thm; | 
| 38309 | 348 | |
| 349 | (*import assumes/defines*) | |
| 79353 | 350 | val local_thm = | 
| 351 | (fold (curry op COMP) asms' fixed_thm | |
| 352 |         handle THM _ => raise THM ("Failed to re-import result", 0, fixed_thm :: asms'))
 | |
| 353 | |> Local_Defs.contract lthy defs (Thm.cprop_of thm) | |
| 79352 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 354 | |> Goal.norm_result lthy | 
| 79357 | 355 | |> name_thm2 name_pos; | 
| 38309 | 356 | |
| 79354 
43d8385db923
more thorough thm definition via Global_Theory.register_proofs: store (and purge) zproofs;
 wenzelm parents: 
79353diff
changeset | 357 | in ((local_thm, global_thm), lthy') end; | 
| 38309 | 358 | |
| 47250 
6523a21076a8
clarified Generic_Target.notes: always perform Attrib.partial_evaluation;
 wenzelm parents: 
47249diff
changeset | 359 | in | 
| 
6523a21076a8
clarified Generic_Target.notes: always perform Attrib.partial_evaluation;
 wenzelm parents: 
47249diff
changeset | 360 | |
| 79359 
5b01b93de062
more robust: avoid crash of Thm.solve_constraints due to changed background theory, e.g. relevant for AFP/Transition_Systems_and_Automata;
 wenzelm parents: 
79358diff
changeset | 361 | fun notes target_notes kind facts0 lthy = | 
| 38309 | 362 | let | 
| 79359 
5b01b93de062
more robust: avoid crash of Thm.solve_constraints due to changed background theory, e.g. relevant for AFP/Transition_Systems_and_Automata;
 wenzelm parents: 
79358diff
changeset | 363 | val facts = Attrib.map_thms (Goal.norm_result lthy) facts0; | 
| 79352 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 364 | val (facts', lthy') = | 
| 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 365 | (facts, lthy) |-> fold_map (fn (a, thms) => fn lthy1 => | 
| 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 366 | let | 
| 79372 | 367 | val thms1 = Thm_Name.expr (Local_Theory.full_name_pos lthy1 (fst a)) thms; | 
| 79352 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 368 | val (thms2, lthy2) = | 
| 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 369 | (thms1, lthy1) |-> fold_map (fn (args, atts) => | 
| 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 370 | fold_map thm_definition args #>> rpair atts); | 
| 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 371 | in ((a, thms2), lthy2) end); | 
| 79347 | 372 | val local_facts = Attrib.map_thms #1 facts'; | 
| 373 | val global_facts = Attrib.map_thms #2 facts'; | |
| 38309 | 374 | in | 
| 79352 
e25c17f574f1
clarified signature: support update of local_theory;
 wenzelm parents: 
79351diff
changeset | 375 | lthy' | 
| 79354 
43d8385db923
more thorough thm definition via Global_Theory.register_proofs: store (and purge) zproofs;
 wenzelm parents: 
79353diff
changeset | 376 | |> target_notes kind global_facts (Attrib.partial_evaluation lthy' local_facts) | 
| 47249 
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
 wenzelm parents: 
47246diff
changeset | 377 | |> Attrib.local_notes kind local_facts | 
| 38309 | 378 | end; | 
| 379 | ||
| 47250 
6523a21076a8
clarified Generic_Target.notes: always perform Attrib.partial_evaluation;
 wenzelm parents: 
47249diff
changeset | 380 | end; | 
| 
6523a21076a8
clarified Generic_Target.notes: always perform Attrib.partial_evaluation;
 wenzelm parents: 
47249diff
changeset | 381 | |
| 38309 | 382 | |
| 383 | (* abbrev *) | |
| 384 | ||
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 385 | fun abbrev target_abbrev prmode ((b, mx), rhs) lthy = | 
| 38309 | 386 | let | 
| 60345 
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
 haftmann parents: 
60344diff
changeset | 387 | val (global_rhs, (extra_tfrees, (type_params, term_params))) = export_abbrev lthy I rhs; | 
| 38312 
9dd57db3c0f2
moved extra_tfrees check for mixfix syntax to Generic_Target
 haftmann parents: 
38311diff
changeset | 388 | val mx' = check_mixfix lthy (b, extra_tfrees) mx; | 
| 38309 | 389 | in | 
| 390 | lthy | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 391 | |> target_abbrev prmode (b, mx') global_rhs (type_params, term_params) | 
| 63346 | 392 | |> Context_Position.set_visible false | 
| 57109 | 393 | |> Proof_Context.add_abbrev Print_Mode.internal (b, rhs) |> snd | 
| 394 | |> Local_Defs.fixed_abbrev ((b, NoSyn), rhs) | |
| 62992 | 395 | ||> Context_Position.restore_visible lthy | 
| 38309 | 396 | end; | 
| 397 | ||
| 38341 
72dba5bd5f63
moved theory-level target operation fragements to Generic_Target; adjusted bootstrap order
 haftmann parents: 
38315diff
changeset | 398 | |
| 60283 | 399 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 400 | (** theory target primitives **) | 
| 38341 
72dba5bd5f63
moved theory-level target operation fragements to Generic_Target; adjusted bootstrap order
 haftmann parents: 
38315diff
changeset | 401 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 402 | fun theory_target_foundation (((b, U), mx), (b_def, rhs)) (type_params, term_params) = | 
| 47284 
0e65b6a016dc
clarified background_foundation vs. theory_foundation (with const_declaration);
 wenzelm parents: 
47283diff
changeset | 403 | background_foundation (((b, U), mx), (b_def, rhs)) (type_params, term_params) | 
| 57192 
180e955711cf
yet another attempt for terminology: foo_target_bar denotes an operation bar operating solely on the target context of target foo, foo_bar denotes a whole stack of operations to accomplish bar for target foo
 haftmann parents: 
57191diff
changeset | 404 | #-> (fn (lhs, def) => standard_const (op <>) Syntax.mode_default ((b, mx), lhs) | 
| 57057 | 405 | #> pair (lhs, def)); | 
| 47284 
0e65b6a016dc
clarified background_foundation vs. theory_foundation (with const_declaration);
 wenzelm parents: 
47283diff
changeset | 406 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 407 | fun theory_target_notes kind global_facts local_facts = | 
| 57191 | 408 | Local_Theory.background_theory (Attrib.global_notes kind global_facts #> snd) | 
| 409 | #> standard_notes (op <>) kind local_facts; | |
| 38341 
72dba5bd5f63
moved theory-level target operation fragements to Generic_Target; adjusted bootstrap order
 haftmann parents: 
38315diff
changeset | 410 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 411 | fun theory_target_abbrev prmode (b, mx) global_rhs params = | 
| 47286 
392c4cd97e5c
more uniform theory_abbrev with const_declaration;
 wenzelm parents: 
47285diff
changeset | 412 | Local_Theory.background_theory_result | 
| 57109 | 413 | (Sign.add_abbrev (#1 prmode) (b, global_rhs) #-> | 
| 47291 
6a641856a0e9
better drop background syntax if entity depends on parameters;
 wenzelm parents: 
47290diff
changeset | 414 | (fn (lhs, _) => (* FIXME type_params!? *) | 
| 63339 | 415 | Sign.notation true prmode | 
| 416 | [(lhs, check_mixfix_global (b, null (snd params)) mx)] #> pair lhs)) | |
| 62764 | 417 | #-> (fn lhs => | 
| 418 | standard_const (op <>) prmode | |
| 419 | ((b, if null (snd params) then NoSyn else mx), | |
| 420 | Term.list_comb (Logic.unvarify_global lhs, snd params))); | |
| 38341 
72dba5bd5f63
moved theory-level target operation fragements to Generic_Target; adjusted bootstrap order
 haftmann parents: 
38315diff
changeset | 421 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 422 | |
| 74361 
690928dd6f8f
apply declarations from interpretations in eigen context also
 haftmann parents: 
74284diff
changeset | 423 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 424 | (** theory operations **) | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 425 | |
| 60344 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 426 | val theory_abbrev = abbrev theory_target_abbrev; | 
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 427 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 428 | fun theory_declaration decl = | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 429 | background_declaration decl #> standard_declaration (K true) decl; | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 430 | |
| 73846 | 431 | fun target_registration lthy {inst, mixin, export} =
 | 
| 432 |   {inst = inst, mixin = mixin,
 | |
| 433 | export = export $> Proof_Context.export_morphism lthy (Local_Theory.target_of lthy)}; | |
| 434 | ||
| 435 | fun theory_registration registration lthy = | |
| 436 | lthy | |
| 437 | |> (Local_Theory.raw_theory o Context.theory_map) | |
| 438 | (Locale.add_registration (target_registration lthy registration)) | |
| 439 | |> standard_registration (K true) registration; | |
| 73845 | 440 | |
| 60283 | 441 | |
| 74361 
690928dd6f8f
apply declarations from interpretations in eigen context also
 haftmann parents: 
74284diff
changeset | 442 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 443 | (** locale target primitives **) | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 444 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 445 | fun locale_target_notes locale kind global_facts local_facts = | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 446 | Local_Theory.background_theory | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 447 | (Attrib.global_notes kind (Attrib.map_facts (K []) global_facts) #> snd) #> | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 448 | (fn lthy => lthy |> | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 449 | Local_Theory.target (fn ctxt => ctxt |> | 
| 67654 | 450 | Locale.add_facts locale kind (standard_facts lthy ctxt local_facts))) #> | 
| 57191 | 451 | standard_notes (fn (this, other) => other <> 0 andalso this <> other) kind local_facts; | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 452 | |
| 78095 | 453 | fun locale_target_declaration locale params decl lthy = lthy | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 454 | |> Local_Theory.target (fn ctxt => ctxt |> | 
| 78095 | 455 | Locale.add_declaration locale params | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 456 | (Morphism.transform (Local_Theory.standard_morphism lthy ctxt) decl)); | 
| 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 457 | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 458 | fun locale_target_const locale phi_pred prmode ((b, mx), rhs) = | 
| 78095 | 459 |   locale_target_declaration locale {syntax = true, pos = Binding.pos_of b}
 | 
| 460 | (const_decl phi_pred prmode ((b, mx), rhs)); | |
| 60341 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 461 | |
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 462 | |
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 463 | (** locale operations **) | 
| 
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
 haftmann parents: 
60340diff
changeset | 464 | |
| 78095 | 465 | fun locale_declaration locale {syntax, pervasive, pos} decl =
 | 
| 57193 | 466 | pervasive ? background_declaration decl | 
| 78095 | 467 |   #> locale_target_declaration locale {syntax = syntax, pos = pos} decl
 | 
| 57193 | 468 | #> standard_declaration (fn (_, other) => other <> 0) decl; | 
| 469 | ||
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 470 | fun locale_const locale prmode ((b, mx), rhs) = | 
| 57192 
180e955711cf
yet another attempt for terminology: foo_target_bar denotes an operation bar operating solely on the target context of target foo, foo_bar denotes a whole stack of operations to accomplish bar for target foo
 haftmann parents: 
57191diff
changeset | 471 | locale_target_const locale (K true) prmode ((b, mx), rhs) | 
| 
180e955711cf
yet another attempt for terminology: foo_target_bar denotes an operation bar operating solely on the target context of target foo, foo_bar denotes a whole stack of operations to accomplish bar for target foo
 haftmann parents: 
57191diff
changeset | 472 | #> standard_const (fn (this, other) => other <> 0 andalso this <> other) prmode ((b, mx), rhs); | 
| 57190 
05ad9aae4537
recovered structure of module, which got somehow convoluted due to incremental modifications
 haftmann parents: 
57189diff
changeset | 473 | |
| 73846 | 474 | fun locale_dependency loc registration lthy = | 
| 475 | lthy | |
| 476 | |> Local_Theory.raw_theory (Locale.add_dependency loc registration) | |
| 477 | |> standard_registration (K true) registration; | |
| 73845 | 478 | |
| 60344 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 479 | |
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 480 | (** locale abbreviations **) | 
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 481 | |
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 482 | fun locale_target_abbrev locale prmode (b, mx) global_rhs params = | 
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 483 | background_abbrev (b, global_rhs) (snd params) | 
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 484 | #-> (fn (lhs, _) => locale_const locale prmode ((b, mx), lhs)); | 
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 485 | |
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 486 | fun locale_abbrev locale = abbrev (locale_target_abbrev locale); | 
| 
a40369ea3ba5
self-contained formulation of abbrev for named targets
 haftmann parents: 
60342diff
changeset | 487 | |
| 38309 | 488 | end; |