src/Pure/Isar/theory_target.ML
author wenzelm
Wed, 28 Oct 2009 17:38:13 +0100
changeset 33282 c6364889fea5
parent 33173 b8ca12f6681a
child 33456 fbd47f9b9b12
child 33463 20a684caa533
permissions -rw-r--r--
misc tuning;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/theory_target.ML
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
30437
910a7aeb8dec more precise treatment of qualified bindings;
wenzelm
parents: 30364
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     4
25542
haftmann
parents: 25519
diff changeset
     5
Common theory/locale/class/instantiation/overloading targets.
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     6
*)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     7
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     8
signature THEORY_TARGET =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     9
sig
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    10
  val peek: local_theory -> {target: string, is_locale: bool,
25864
11f531354852 explicit type variables for instantiation
haftmann
parents: 25684
diff changeset
    11
    is_class: bool, instantiation: string list * (string * sort) list * sort,
11f531354852 explicit type variables for instantiation
haftmann
parents: 25684
diff changeset
    12
    overloading: (string * (string * typ) * bool) list}
25269
f9090ae5cec9 clarified theory target interface
haftmann
parents: 25240
diff changeset
    13
  val init: string option -> theory -> local_theory
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
    14
  val begin: string -> Proof.context -> local_theory
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
    15
  val context: xstring -> theory -> local_theory
25864
11f531354852 explicit type variables for instantiation
haftmann
parents: 25684
diff changeset
    16
  val instantiation: string list * (string * sort) list * sort -> theory -> local_theory
29971
68331b62c873 fixed signature
haftmann
parents: 29710
diff changeset
    17
  val instantiation_cmd: xstring list * xstring list * xstring -> theory -> local_theory
25864
11f531354852 explicit type variables for instantiation
haftmann
parents: 25684
diff changeset
    18
  val overloading: (string * (string * typ) * bool) list -> theory -> local_theory
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
    19
  val overloading_cmd: (string * string * bool) list -> theory -> local_theory
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    20
end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    21
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    22
structure TheoryTarget: THEORY_TARGET =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    23
struct
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    24
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    25
(* context data *)
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    26
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    27
datatype target = Target of {target: string, is_locale: bool,
25864
11f531354852 explicit type variables for instantiation
haftmann
parents: 25684
diff changeset
    28
  is_class: bool, instantiation: string list * (string * sort) list * sort,
11f531354852 explicit type variables for instantiation
haftmann
parents: 25684
diff changeset
    29
  overloading: (string * (string * typ) * bool) list};
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    30
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    31
fun make_target target is_locale is_class instantiation overloading =
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    32
  Target {target = target, is_locale = is_locale,
25519
8570745cb40b overloading target
haftmann
parents: 25514
diff changeset
    33
    is_class = is_class, instantiation = instantiation, overloading = overloading};
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
    34
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    35
val global_target = make_target "" false false ([], [], []) [];
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    36
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    37
structure Data = ProofDataFun
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    38
(
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    39
  type T = target;
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
    40
  fun init _ = global_target;
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    41
);
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    42
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    43
val peek = (fn Target args => args) o Data.get;
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    44
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    45
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    46
(* pretty *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    47
32785
ec5292653aff eliminated redundant parameters;
wenzelm
parents: 32009
diff changeset
    48
fun pretty_thy ctxt target is_class =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    49
  let
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    50
    val thy = ProofContext.theory_of ctxt;
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    51
    val target_name = (if is_class then "class " else "locale ") ^ Locale.extern thy target;
30437
910a7aeb8dec more precise treatment of qualified bindings;
wenzelm
parents: 30364
diff changeset
    52
    val fixes =
910a7aeb8dec more precise treatment of qualified bindings;
wenzelm
parents: 30364
diff changeset
    53
      map (fn (x, T) => (Binding.name x, SOME T, NoSyn)) (#1 (ProofContext.inferred_fixes ctxt));
910a7aeb8dec more precise treatment of qualified bindings;
wenzelm
parents: 30364
diff changeset
    54
    val assumes =
30473
e0b66c11e7e4 Assumption.all_prems_of, Assumption.all_assms_of;
wenzelm
parents: 30438
diff changeset
    55
      map (fn A => (Attrib.empty_binding, [(Thm.term_of A, [])])) (Assumption.all_assms_of ctxt);
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    56
    val elems =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    57
      (if null fixes then [] else [Element.Fixes fixes]) @
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    58
      (if null assumes then [] else [Element.Assumes assumes]);
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
    59
  in
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
    60
    if target = "" then []
25607
779c79c36c5e pretty for instantiation and overloading
haftmann
parents: 25597
diff changeset
    61
    else if null elems then [Pretty.str target_name]
779c79c36c5e pretty for instantiation and overloading
haftmann
parents: 25597
diff changeset
    62
    else [Pretty.big_list (target_name ^ " =")
779c79c36c5e pretty for instantiation and overloading
haftmann
parents: 25597
diff changeset
    63
      (map (Pretty.chunks o Element.pretty_ctxt ctxt) elems)]
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    64
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    65
32785
ec5292653aff eliminated redundant parameters;
wenzelm
parents: 32009
diff changeset
    66
fun pretty (Target {target, is_class, instantiation, overloading, ...}) ctxt =
25607
779c79c36c5e pretty for instantiation and overloading
haftmann
parents: 25597
diff changeset
    67
  Pretty.block [Pretty.str "theory", Pretty.brk 1,
779c79c36c5e pretty for instantiation and overloading
haftmann
parents: 25597
diff changeset
    68
      Pretty.str (Context.theory_name (ProofContext.theory_of ctxt))] ::
779c79c36c5e pretty for instantiation and overloading
haftmann
parents: 25597
diff changeset
    69
    (if not (null overloading) then [Overloading.pretty ctxt]
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29252
diff changeset
    70
     else if not (null (#1 instantiation)) then [Class_Target.pretty_instantiation ctxt]
32785
ec5292653aff eliminated redundant parameters;
wenzelm
parents: 32009
diff changeset
    71
     else pretty_thy ctxt target is_class);
25607
779c79c36c5e pretty for instantiation and overloading
haftmann
parents: 25597
diff changeset
    72
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    73
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    74
(* target declarations *)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    75
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    76
fun target_decl add (Target {target, ...}) d lthy =
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    77
  let
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
    78
    val d' = Morphism.transform (LocalTheory.target_morphism lthy) d;
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    79
    val d0 = Morphism.form d';
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    80
  in
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    81
    if target = "" then
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    82
      lthy
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    83
      |> LocalTheory.theory (Context.theory_map d0)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    84
      |> LocalTheory.target (Context.proof_map d0)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    85
    else
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    86
      lthy
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    87
      |> LocalTheory.target (add target d')
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    88
  end;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    89
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    90
val type_syntax = target_decl Locale.add_type_syntax;
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    91
val term_syntax = target_decl Locale.add_term_syntax;
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
    92
val declaration = target_decl Locale.add_declaration;
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    93
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
    94
fun class_target (Target {target, ...}) f =
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
    95
  LocalTheory.raw_theory f #>
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29252
diff changeset
    96
  LocalTheory.target (Class_Target.refresh_syntax target);
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    97
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    98
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    99
(* notes *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   100
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   101
fun import_export_proof ctxt (name, raw_th) =
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   102
  let
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   103
    val thy = ProofContext.theory_of ctxt;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   104
    val thy_ctxt = ProofContext.init thy;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   105
    val certT = Thm.ctyp_of thy;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   106
    val cert = Thm.cterm_of thy;
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   107
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   108
    (*export assumes/defines*)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   109
    val th = Goal.norm_result raw_th;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   110
    val (defs, th') = LocalDefs.export ctxt thy_ctxt th;
21708
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21691
diff changeset
   111
    val concl_conv = MetaSimplifier.rewrite true defs (Thm.cprop_of th);
30473
e0b66c11e7e4 Assumption.all_prems_of, Assumption.all_assms_of;
wenzelm
parents: 30438
diff changeset
   112
    val assms = map (MetaSimplifier.rewrite_rule defs o Thm.assume) (Assumption.all_assms_of ctxt);
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   113
    val nprems = Thm.nprems_of th' - Thm.nprems_of th;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   114
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   115
    (*export fixes*)
22692
1e057a3f087d proper ProofContext.infer_types;
wenzelm
parents: 22673
diff changeset
   116
    val tfrees = map TFree (Thm.fold_terms Term.add_tfrees th' []);
1e057a3f087d proper ProofContext.infer_types;
wenzelm
parents: 22673
diff changeset
   117
    val frees = map Free (Thm.fold_terms Term.add_frees th' []);
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   118
    val (th'' :: vs) = (th' :: map (Drule.mk_term o cert) (map Logic.mk_type tfrees @ frees))
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   119
      |> Variable.export ctxt thy_ctxt
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   120
      |> Drule.zero_var_indexes_list;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   121
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   122
    (*thm definition*)
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27690
diff changeset
   123
    val result = PureThy.name_thm true true Position.none name th'';
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   124
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   125
    (*import fixes*)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   126
    val (tvars, vars) =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   127
      chop (length tfrees) (map (Thm.term_of o Drule.dest_term) vs)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   128
      |>> map Logic.dest_type;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   129
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   130
    val instT = map_filter (fn (TVar v, T) => SOME (v, T) | _ => NONE) (tvars ~~ tfrees);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   131
    val inst = filter (is_Var o fst) (vars ~~ frees);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   132
    val cinstT = map (pairself certT o apfst TVar) instT;
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31869
diff changeset
   133
    val cinst = map (pairself (cert o Term.map_types (Term_Subst.instantiateT instT))) inst;
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   134
    val result' = Thm.instantiate (cinstT, cinst) result;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   135
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   136
    (*import assumes/defines*)
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   137
    val assm_tac = FIRST' (map (fn assm => Tactic.compose_tac (false, assm, 0)) assms);
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   138
    val result'' =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   139
      (case SINGLE (Seq.INTERVAL assm_tac 1 nprems) result' of
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   140
        NONE => raise THM ("Failed to re-import result", 0, [result'])
21845
da545169fe06 defs/notes: more robust transitivity reasoning;
wenzelm
parents: 21825
diff changeset
   141
      | SOME res => LocalDefs.trans_props ctxt [res, Thm.symmetric concl_conv])
21644
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   142
      |> Goal.norm_result
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27690
diff changeset
   143
      |> PureThy.name_thm false false Position.none name;
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   144
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   145
  in (result'', result) end;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   146
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
   147
fun notes (Target {target, is_locale, ...}) kind facts lthy =
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   148
  let
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   149
    val thy = ProofContext.theory_of lthy;
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   150
    val facts' = facts
28991
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
   151
      |> map (fn (a, bs) => (a, PureThy.burrow_fact (PureThy.name_multi
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
   152
          (LocalTheory.full_name lthy (fst a))) bs))
21615
1bd558879c44 notes: proper naming of thm proof, activated import_export_proof;
wenzelm
parents: 21613
diff changeset
   153
      |> PureThy.map_facts (import_export_proof lthy);
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   154
    val local_facts = PureThy.map_facts #1 facts'
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   155
      |> Attrib.map_facts (Attrib.attribute_i thy);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   156
    val target_facts = PureThy.map_facts #1 facts'
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   157
      |> is_locale ? Element.facts_map (Element.morph_ctxt (LocalTheory.target_morphism lthy));
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   158
    val global_facts = PureThy.map_facts #2 facts'
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   159
      |> Attrib.map_facts (if is_locale then K I else Attrib.attribute_i thy);
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   160
  in
33167
f02b804305d6 maintain group via name space, not tags;
wenzelm
parents: 32785
diff changeset
   161
    lthy
f02b804305d6 maintain group via name space, not tags;
wenzelm
parents: 32785
diff changeset
   162
    |> LocalTheory.theory (PureThy.note_thmss kind global_facts #> snd)
30761
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30519
diff changeset
   163
    |> not is_locale ? LocalTheory.target (ProofContext.note_thmss kind global_facts #> snd)
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
   164
    |> is_locale ? LocalTheory.target (Locale.add_thmss target kind target_facts)
30761
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30519
diff changeset
   165
    |> ProofContext.note_thmss kind local_facts
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   166
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   167
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   168
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   169
(* declare_const *)
24939
wenzelm
parents: 24935
diff changeset
   170
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   171
fun fork_mixfix (Target {is_locale, is_class, ...}) mx =
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   172
  if not is_locale then (NoSyn, NoSyn, mx)
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   173
  else if not is_class then (NoSyn, mx, NoSyn)
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   174
  else (mx, NoSyn, NoSyn);
25068
a11d25316c3d tuned fork_mixfix (back from class.ML);
wenzelm
parents: 25064
diff changeset
   175
33167
f02b804305d6 maintain group via name space, not tags;
wenzelm
parents: 32785
diff changeset
   176
fun locale_const (Target {target, is_class, ...}) (prmode as (mode, _)) ((b, mx), rhs) phi =
24939
wenzelm
parents: 24935
diff changeset
   177
  let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   178
    val b' = Morphism.binding phi b;
24939
wenzelm
parents: 24935
diff changeset
   179
    val rhs' = Morphism.term phi rhs;
28861
f53abb0733ee using name bindings
haftmann
parents: 28849
diff changeset
   180
    val arg = (b', Term.close_schematic_term rhs');
25372
a718f1ccaf1a locale_const: suppress in class body as well (prevents qualified printing);
wenzelm
parents: 25320
diff changeset
   181
    val similar_body = Type.similar_types (rhs, rhs');
25212
9dd61cb753ae locale_const: in_class workaround prevents additional locale version of class consts;
wenzelm
parents: 25150
diff changeset
   182
    (* FIXME workaround based on educated guess *)
30278
18ce07e05a95 Binding.prefix_of;
wenzelm
parents: 30242
diff changeset
   183
    val prefix' = Binding.prefix_of b';
33282
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   184
    val class_global =
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   185
      Binding.eq_name (b, b') andalso
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   186
      not (null prefix') andalso
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   187
      fst (snd (split_last prefix')) = Class_Target.class_prefix target;
24939
wenzelm
parents: 24935
diff changeset
   188
  in
25372
a718f1ccaf1a locale_const: suppress in class body as well (prevents qualified printing);
wenzelm
parents: 25320
diff changeset
   189
    not (is_class andalso (similar_body orelse class_global)) ?
25212
9dd61cb753ae locale_const: in_class workaround prevents additional locale version of class consts;
wenzelm
parents: 25150
diff changeset
   190
      (Context.mapping_result
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33167
diff changeset
   191
        (Sign.add_abbrev PrintMode.internal arg)
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33167
diff changeset
   192
        (ProofContext.add_abbrev PrintMode.internal arg)
25212
9dd61cb753ae locale_const: in_class workaround prevents additional locale version of class consts;
wenzelm
parents: 25150
diff changeset
   193
      #-> (fn (lhs' as Const (d, _), _) =>
25372
a718f1ccaf1a locale_const: suppress in class body as well (prevents qualified printing);
wenzelm
parents: 25320
diff changeset
   194
          similar_body ?
25212
9dd61cb753ae locale_const: in_class workaround prevents additional locale version of class consts;
wenzelm
parents: 25150
diff changeset
   195
            (Context.mapping (Sign.revert_abbrev mode d) (ProofContext.revert_abbrev mode d) #>
9dd61cb753ae locale_const: in_class workaround prevents additional locale version of class consts;
wenzelm
parents: 25150
diff changeset
   196
             Morphism.form (ProofContext.target_notation true prmode [(lhs', mx)]))))
24939
wenzelm
parents: 24935
diff changeset
   197
  end;
wenzelm
parents: 24935
diff changeset
   198
30223
24d975352879 renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents: 29971
diff changeset
   199
fun syntax_error c = error ("Illegal mixfix syntax for overloaded constant " ^ quote c);
24d975352879 renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents: 29971
diff changeset
   200
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27690
diff changeset
   201
fun declare_const (ta as Target {target, is_locale, is_class, ...}) depends ((b, T), mx) lthy =
24939
wenzelm
parents: 24935
diff changeset
   202
  let
wenzelm
parents: 24935
diff changeset
   203
    val xs = filter depends (#1 (ProofContext.inferred_fixes (LocalTheory.target_of lthy)));
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   204
    val U = map #2 xs ---> T;
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   205
    val (mx1, mx2, mx3) = fork_mixfix ta mx;
33282
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   206
    val (const, lthy') = lthy |>
30519
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30473
diff changeset
   207
      (case Class_Target.instantiation_param lthy b of
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   208
        SOME c' =>
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   209
          if mx3 <> NoSyn then syntax_error c'
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25542
diff changeset
   210
          else LocalTheory.theory_result (AxClass.declare_overloaded (c', U))
30519
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30473
diff changeset
   211
            ##> Class_Target.confirm_declaration b
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   212
        | NONE =>
30519
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30473
diff changeset
   213
            (case Overloading.operation lthy b of
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   214
              SOME (c', _) =>
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   215
                if mx3 <> NoSyn then syntax_error c'
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   216
                else LocalTheory.theory_result (Overloading.declare (c', U))
30519
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30473
diff changeset
   217
                  ##> Overloading.confirm b
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33167
diff changeset
   218
            | NONE => LocalTheory.theory_result (Sign.declare_const ((b, U), mx3))));
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   219
    val t = Term.list_comb (const, map Free xs);
24939
wenzelm
parents: 24935
diff changeset
   220
  in
wenzelm
parents: 24935
diff changeset
   221
    lthy'
33167
f02b804305d6 maintain group via name space, not tags;
wenzelm
parents: 32785
diff changeset
   222
    |> is_locale ? term_syntax ta (locale_const ta Syntax.mode_default ((b, mx2), t))
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33167
diff changeset
   223
    |> is_class ? class_target ta (Class_Target.declare target ((b, mx1), t))
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27690
diff changeset
   224
    |> LocalDefs.add_def ((b, NoSyn), t)
24939
wenzelm
parents: 24935
diff changeset
   225
  end;
wenzelm
parents: 24935
diff changeset
   226
wenzelm
parents: 24935
diff changeset
   227
wenzelm
parents: 24935
diff changeset
   228
(* abbrev *)
wenzelm
parents: 24935
diff changeset
   229
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27690
diff changeset
   230
fun abbrev (ta as Target {target, is_locale, is_class, ...}) prmode ((b, mx), t) lthy =
24939
wenzelm
parents: 24935
diff changeset
   231
  let
25053
2b86fac03ec5 misc cleanup of abbrev/local_const;
wenzelm
parents: 25040
diff changeset
   232
    val thy_ctxt = ProofContext.init (ProofContext.theory_of lthy);
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   233
    val target_ctxt = LocalTheory.target_of lthy;
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   234
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   235
    val (mx1, mx2, mx3) = fork_mixfix ta mx;
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   236
    val t' = Assumption.export_term lthy target_ctxt t;
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   237
    val xs = map Free (rev (Variable.add_fixed target_ctxt t' []));
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   238
    val u = fold_rev lambda xs t';
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   239
    val global_rhs =
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   240
      singleton (Variable.export_terms (Variable.declare_term u target_ctxt) thy_ctxt) u;
25121
fbea3ca04d51 tuned abbrev interface;
wenzelm
parents: 25105
diff changeset
   241
  in
fbea3ca04d51 tuned abbrev interface;
wenzelm
parents: 25105
diff changeset
   242
    lthy |>
fbea3ca04d51 tuned abbrev interface;
wenzelm
parents: 25105
diff changeset
   243
     (if is_locale then
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33167
diff changeset
   244
        LocalTheory.theory_result (Sign.add_abbrev PrintMode.internal (b, global_rhs))
25121
fbea3ca04d51 tuned abbrev interface;
wenzelm
parents: 25105
diff changeset
   245
        #-> (fn (lhs, _) =>
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   246
          let val lhs' = Term.list_comb (Logic.unvarify lhs, xs) in
33167
f02b804305d6 maintain group via name space, not tags;
wenzelm
parents: 32785
diff changeset
   247
            term_syntax ta (locale_const ta prmode ((b, mx2), lhs')) #>
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33167
diff changeset
   248
            is_class ? class_target ta (Class_Target.abbrev target prmode ((b, mx1), t'))
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   249
          end)
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   250
      else
25121
fbea3ca04d51 tuned abbrev interface;
wenzelm
parents: 25105
diff changeset
   251
        LocalTheory.theory
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33167
diff changeset
   252
          (Sign.add_abbrev (#1 prmode) (b, global_rhs) #-> (fn (lhs, _) =>
25121
fbea3ca04d51 tuned abbrev interface;
wenzelm
parents: 25105
diff changeset
   253
           Sign.notation true prmode [(lhs, mx3)])))
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33167
diff changeset
   254
    |> ProofContext.add_abbrev PrintMode.internal (b, t) |> snd
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27690
diff changeset
   255
    |> LocalDefs.fixed_abbrev ((b, NoSyn), t)
24939
wenzelm
parents: 24935
diff changeset
   256
  end;
wenzelm
parents: 24935
diff changeset
   257
wenzelm
parents: 24935
diff changeset
   258
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   259
(* define *)
24939
wenzelm
parents: 24935
diff changeset
   260
32785
ec5292653aff eliminated redundant parameters;
wenzelm
parents: 32009
diff changeset
   261
fun define ta kind ((b, mx), ((name, atts), rhs)) lthy =
24939
wenzelm
parents: 24935
diff changeset
   262
  let
24987
50b07326da38 local_theory: incorporated consts into axioms;
wenzelm
parents: 24983
diff changeset
   263
    val thy = ProofContext.theory_of lthy;
24939
wenzelm
parents: 24935
diff changeset
   264
    val thy_ctxt = ProofContext.init thy;
wenzelm
parents: 24935
diff changeset
   265
30437
910a7aeb8dec more precise treatment of qualified bindings;
wenzelm
parents: 30364
diff changeset
   266
    val name' = Thm.def_binding_optional b name;
24987
50b07326da38 local_theory: incorporated consts into axioms;
wenzelm
parents: 24983
diff changeset
   267
    val (rhs', rhs_conv) =
50b07326da38 local_theory: incorporated consts into axioms;
wenzelm
parents: 24983
diff changeset
   268
      LocalDefs.export_cterm lthy thy_ctxt (Thm.cterm_of thy rhs) |>> Thm.term_of;
50b07326da38 local_theory: incorporated consts into axioms;
wenzelm
parents: 24983
diff changeset
   269
    val xs = Variable.add_fixed (LocalTheory.target_of lthy) rhs' [];
24939
wenzelm
parents: 24935
diff changeset
   270
    val T = Term.fastype_of rhs;
wenzelm
parents: 24935
diff changeset
   271
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   272
    (*const*)
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27690
diff changeset
   273
    val ((lhs, local_def), lthy2) = lthy |> declare_const ta (member (op =) xs) ((b, T), mx);
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   274
    val (_, lhs') = Logic.dest_equals (Thm.prop_of local_def);
24939
wenzelm
parents: 24935
diff changeset
   275
wenzelm
parents: 24935
diff changeset
   276
    (*def*)
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   277
    val (global_def, lthy3) = lthy2
33282
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   278
      |> LocalTheory.theory_result
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   279
        (case Overloading.operation lthy b of
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   280
          SOME (_, checked) => Overloading.define checked name' (fst (dest_Const lhs'), rhs')
30519
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30473
diff changeset
   281
        | NONE =>
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30473
diff changeset
   282
            if is_none (Class_Target.instantiation_param lthy b)
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30473
diff changeset
   283
            then Thm.add_def false false (name', Logic.mk_equals (lhs', rhs'))
33282
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   284
            else AxClass.define_overloaded name' (fst (dest_Const lhs'), rhs'));
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   285
    val def = LocalDefs.trans_terms lthy3
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   286
      [(*c == global.c xs*)     local_def,
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   287
       (*global.c xs == rhs'*)  global_def,
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   288
       (*rhs' == rhs*)          Thm.symmetric rhs_conv];
24939
wenzelm
parents: 24935
diff changeset
   289
25105
c9f67836c4d8 internal tuning: class_target, fork_mixfix, declare_const (singleton), abbrev;
wenzelm
parents: 25096
diff changeset
   290
    (*note*)
24939
wenzelm
parents: 24935
diff changeset
   291
    val ([(res_name, [res])], lthy4) = lthy3
26132
c927c3ed82c9 implicit use of LocalTheory.group etc.;
wenzelm
parents: 26054
diff changeset
   292
      |> notes ta kind [((name', atts), [([def], [])])];
24939
wenzelm
parents: 24935
diff changeset
   293
  in ((lhs, (res_name, res)), lthy4) end;
wenzelm
parents: 24935
diff changeset
   294
wenzelm
parents: 24935
diff changeset
   295
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   296
(* init *)
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   297
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   298
local
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   299
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   300
fun init_target _ NONE = global_target
29710
f2e70a0636b9 strict check for locale target
haftmann
parents: 29576
diff changeset
   301
  | init_target thy (SOME target) = if Locale.defined thy (Locale.intern thy target)
f2e70a0636b9 strict check for locale target
haftmann
parents: 29576
diff changeset
   302
      then make_target target true (Class_Target.is_class thy target) ([], [], []) []
f2e70a0636b9 strict check for locale target
haftmann
parents: 29576
diff changeset
   303
      else error ("No such locale: " ^ quote target);
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   304
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
   305
fun init_ctxt (Target {target, is_locale, is_class, instantiation, overloading}) =
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29252
diff changeset
   306
  if not (null (#1 instantiation)) then Class_Target.init_instantiation instantiation
25519
8570745cb40b overloading target
haftmann
parents: 25514
diff changeset
   307
  else if not (null overloading) then Overloading.init overloading
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   308
  else if not is_locale then ProofContext.init
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
   309
  else if not is_class then Locale.init target
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29252
diff changeset
   310
  else Class_Target.init target;
25269
f9090ae5cec9 clarified theory target interface
haftmann
parents: 25240
diff changeset
   311
25542
haftmann
parents: 25519
diff changeset
   312
fun init_lthy (ta as Target {target, instantiation, overloading, ...}) =
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   313
  Data.put ta #>
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30344
diff changeset
   314
  LocalTheory.init (Long_Name.base_name target)
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   315
   {pretty = pretty ta,
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   316
    abbrev = abbrev ta,
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   317
    define = define ta,
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   318
    notes = notes ta,
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   319
    type_syntax = type_syntax ta,
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   320
    term_syntax = term_syntax ta,
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   321
    declaration = declaration ta,
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   322
    reinit = fn lthy => init_lthy_ctxt ta (ProofContext.theory_of lthy),
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   323
    exit = LocalTheory.target_of o
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29252
diff changeset
   324
      (if not (null (#1 instantiation)) then Class_Target.conclude_instantiation
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   325
       else if not (null overloading) then Overloading.conclude
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   326
       else I)}
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   327
and init_lthy_ctxt ta = init_lthy ta o init_ctxt ta;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   328
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   329
fun gen_overloading prep_const raw_ops thy =
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   330
  let
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   331
    val ctxt = ProofContext.init thy;
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   332
    val ops = raw_ops |> map (fn (name, const, checked) =>
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   333
      (name, Term.dest_Const (prep_const ctxt const), checked));
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
   334
  in thy |> init_lthy_ctxt (make_target "" false false ([], [], []) ops) end;
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   335
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   336
in
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   337
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   338
fun init target thy = init_lthy_ctxt (init_target thy target) thy;
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   339
fun begin target ctxt = init_lthy (init_target (ProofContext.theory_of ctxt) (SOME target)) ctxt;
25269
f9090ae5cec9 clarified theory target interface
haftmann
parents: 25240
diff changeset
   340
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   341
fun context "-" thy = init NONE thy
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
   342
  | context target thy = init (SOME (Locale.intern thy target)) thy;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   343
33282
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   344
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   345
(* other targets *)
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   346
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
   347
fun instantiation arities = init_lthy_ctxt (make_target "" false false arities []);
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29252
diff changeset
   348
fun instantiation_cmd raw_arities thy =
31869
01fed718958c mutual instances
haftmann
parents: 30761
diff changeset
   349
  instantiation (Class_Target.read_multi_arity thy raw_arities) thy;
25519
8570745cb40b overloading target
haftmann
parents: 25514
diff changeset
   350
26049
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   351
val overloading = gen_overloading (fn ctxt => Syntax.check_term ctxt o Const);
8186c03194ed overloading: reduced code redundancy, no xstrings here;
wenzelm
parents: 25984
diff changeset
   352
val overloading_cmd = gen_overloading Syntax.read_term;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25395
diff changeset
   353
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   354
end;
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   355
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   356
end;
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   357