src/Pure/Isar/class.ML
author haftmann
Sat, 24 Oct 2020 15:16:54 +0000
changeset 72505 974071d873ba
parent 70387 35dd9212bf29
child 72516 17dc99589a91
permissions -rw-r--r--
tuned interfaces
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
     1
(*  Title:      Pure/Isar/class.ML
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     3
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
     4
Type classes derived from primitive axclasses and locales.
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     5
*)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     6
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
     7
signature CLASS =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     8
sig
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
     9
  (*classes*)
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
    10
  val is_class: theory -> class -> bool
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
    11
  val these_params: theory -> sort -> (string * (class * (string * typ))) list
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
    12
  val base_sort: theory -> class -> sort
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
    13
  val rules: theory -> class -> thm option * thm
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
    14
  val these_defs: theory -> sort -> thm list
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
    15
  val these_operations: theory -> sort -> (string * (class * ((typ * term) * bool))) list
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41270
diff changeset
    16
  val print_classes: Proof.context -> unit
25311
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
    17
  val init: class -> theory -> Proof.context
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
    18
  val begin: class list -> sort -> Proof.context -> Proof.context
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
    19
  val const: class -> (binding * mixfix) * term -> term list * term list ->
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
    20
    local_theory -> local_theory
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
    21
  val abbrev: class -> Syntax.mode -> (binding * mixfix) * term -> local_theory ->
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
    22
    (term * term) * local_theory
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
    23
  val redeclare_operations: theory -> sort -> Proof.context -> Proof.context
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
    24
  val class_prefix: string -> string
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
    25
  val register: class -> class list -> ((string * typ) * (string * typ)) list ->
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
    26
    sort -> morphism -> morphism -> thm option -> thm option -> thm -> theory -> theory
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    27
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    28
  (*instances*)
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
    29
  val instantiation: string list * (string * sort) list * sort -> theory -> local_theory
26247
b6608fbeaae1 some theorems named explicitly
haftmann
parents: 26238
diff changeset
    30
  val instantiation_instance: (local_theory -> local_theory)
b6608fbeaae1 some theorems named explicitly
haftmann
parents: 26238
diff changeset
    31
    -> local_theory -> Proof.state
b6608fbeaae1 some theorems named explicitly
haftmann
parents: 26238
diff changeset
    32
  val prove_instantiation_instance: (Proof.context -> tactic)
b6608fbeaae1 some theorems named explicitly
haftmann
parents: 26238
diff changeset
    33
    -> local_theory -> local_theory
28666
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
    34
  val prove_instantiation_exit: (Proof.context -> tactic)
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
    35
    -> local_theory -> theory
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
    36
  val prove_instantiation_exit_result: (morphism -> 'a -> 'b)
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
    37
    -> (Proof.context -> 'b -> tactic) -> 'a -> local_theory -> 'b * theory
31869
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
    38
  val read_multi_arity: theory -> xstring list * xstring list * xstring
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
    39
    -> string list * (string * sort) list * sort
38348
cf7b2121ad9d moved instantiation target formally to class_target.ML
haftmann
parents: 38107
diff changeset
    40
  val instantiation_cmd: xstring list * xstring list * xstring -> theory -> local_theory
38377
2dfd8b7b8274 stripped signature
haftmann
parents: 38348
diff changeset
    41
  val instance_arity_cmd: xstring list * xstring list * xstring -> theory -> Proof.state
69829
3bfa28b3a5b2 streamlined specification interfaces
haftmann
parents: 69058
diff changeset
    42
  val theory_map_result: string list * (string * sort) list * sort
3bfa28b3a5b2 streamlined specification interfaces
haftmann
parents: 69058
diff changeset
    43
    -> (morphism -> 'a -> 'b) -> (local_theory -> 'a * local_theory)
3bfa28b3a5b2 streamlined specification interfaces
haftmann
parents: 69058
diff changeset
    44
    -> (Proof.context -> 'b -> tactic) -> theory -> 'b * theory
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    45
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
    46
  (*subclasses*)
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
    47
  val classrel: class * class -> theory -> Proof.state
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
    48
  val classrel_cmd: xstring * xstring -> theory -> Proof.state
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
    49
  val register_subclass: class * class -> morphism option -> Element.witness option
54866
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
    50
    -> morphism -> local_theory -> local_theory
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
    51
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
    52
  (*tactics*)
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59423
diff changeset
    53
  val intro_classes_tac: Proof.context -> thm list -> tactic
60618
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60347
diff changeset
    54
  val standard_intro_classes_tac: Proof.context -> thm list -> tactic
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 59150
diff changeset
    55
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 59150
diff changeset
    56
  (*diagnostics*)
59423
3a0044e95eba backed out obsolete workaround from ef1edfb36af7
haftmann
parents: 59420
diff changeset
    57
  val pretty_specification: theory -> class -> Pretty.T list
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    58
end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    59
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38377
diff changeset
    60
structure Class: CLASS =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    61
struct
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    62
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    63
(** class data **)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    64
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
    65
datatype class_data = Class_Data of {
28715
238f9966c80e class morphism stemming from locale interpretation
haftmann
parents: 28674
diff changeset
    66
238f9966c80e class morphism stemming from locale interpretation
haftmann
parents: 28674
diff changeset
    67
  (* static part *)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    68
  consts: (string * string) list
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
    69
    (*locale parameter ~> constant name*),
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
    70
  base_sort: sort,
29545
4be5e49c74b1 tuned signature
haftmann
parents: 29526
diff changeset
    71
  base_morph: morphism
29439
83601bdadae8 construct explicit class morphism
haftmann
parents: 29362
diff changeset
    72
    (*static part of canonical morphism*),
32850
d95a7fd00bd4 proper merge of interpretation equations
haftmann
parents: 32805
diff changeset
    73
  export_morph: morphism,
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
    74
  assm_intro: thm option,
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
    75
  of_class: thm,
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
    76
  axiom: thm option,
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41270
diff changeset
    77
28715
238f9966c80e class morphism stemming from locale interpretation
haftmann
parents: 28674
diff changeset
    78
  (* dynamic part *)
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
    79
  defs: thm list,
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
    80
  operations: (string * (class * ((typ * term) * bool))) list
28715
238f9966c80e class morphism stemming from locale interpretation
haftmann
parents: 28674
diff changeset
    81
48106
22994525d0d4 clarifying comment
haftmann
parents: 48102
diff changeset
    82
  (* n.b.
22994525d0d4 clarifying comment
haftmann
parents: 48102
diff changeset
    83
    params = logical parameters of class
22994525d0d4 clarifying comment
haftmann
parents: 48102
diff changeset
    84
    operations = operations participating in user-space type system
22994525d0d4 clarifying comment
haftmann
parents: 48102
diff changeset
    85
  *)
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
    86
};
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    87
32850
d95a7fd00bd4 proper merge of interpretation equations
haftmann
parents: 32805
diff changeset
    88
fun make_class_data ((consts, base_sort, base_morph, export_morph, assm_intro, of_class, axiom),
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
    89
    (defs, operations)) =
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
    90
  Class_Data {consts = consts, base_sort = base_sort,
32850
d95a7fd00bd4 proper merge of interpretation equations
haftmann
parents: 32805
diff changeset
    91
    base_morph = base_morph, export_morph = export_morph, assm_intro = assm_intro,
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
    92
    of_class = of_class, axiom = axiom, defs = defs, operations = operations};
67625
eb11d722e3ef tuned whitespace;
wenzelm
parents: 67147
diff changeset
    93
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
    94
fun map_class_data f (Class_Data {consts, base_sort, base_morph, export_morph, assm_intro,
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
    95
    of_class, axiom, defs, operations}) =
32850
d95a7fd00bd4 proper merge of interpretation equations
haftmann
parents: 32805
diff changeset
    96
  make_class_data (f ((consts, base_sort, base_morph, export_morph, assm_intro, of_class, axiom),
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
    97
    (defs, operations)));
67625
eb11d722e3ef tuned whitespace;
wenzelm
parents: 67147
diff changeset
    98
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
    99
fun merge_class_data _ (Class_Data {consts = consts,
32850
d95a7fd00bd4 proper merge of interpretation equations
haftmann
parents: 32805
diff changeset
   100
    base_sort = base_sort, base_morph = base_morph, export_morph = export_morph, assm_intro = assm_intro,
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   101
    of_class = of_class, axiom = axiom, defs = defs1, operations = operations1},
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   102
  Class_Data {consts = _, base_sort = _, base_morph = _, export_morph = _, assm_intro = _,
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   103
    of_class = _, axiom = _, defs = defs2, operations = operations2}) =
32850
d95a7fd00bd4 proper merge of interpretation equations
haftmann
parents: 32805
diff changeset
   104
  make_class_data ((consts, base_sort, base_morph, export_morph, assm_intro, of_class, axiom),
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   105
    (Thm.merge_thms (defs1, defs2),
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   106
      AList.merge (op =) (K true) (operations1, operations2)));
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   107
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   108
structure Class_Data = Theory_Data
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   109
(
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   110
  type T = class_data Graph.T
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   111
  val empty = Graph.empty;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   112
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33519
diff changeset
   113
  val merge = Graph.join merge_class_data;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   114
);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   115
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   116
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   117
(* queries *)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   118
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   119
fun lookup_class_data thy class =
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   120
  (case try (Graph.get_node (Class_Data.get thy)) class of
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   121
    SOME (Class_Data data) => SOME data
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   122
  | NONE => NONE);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   123
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   124
fun the_class_data thy class =
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   125
  (case lookup_class_data thy class of
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   126
    NONE => error ("Undeclared class " ^ quote class)
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   127
  | SOME data => data);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   128
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   129
val is_class = is_some oo lookup_class_data;
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   130
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   131
val ancestry = Graph.all_succs o Class_Data.get;
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   132
val heritage = Graph.all_preds o Class_Data.get;
29509
1ff0f3f08a7b migrated class package to new locale implementation
haftmann
parents: 29439
diff changeset
   133
25002
haftmann
parents: 24981
diff changeset
   134
fun these_params thy =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   135
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   136
    fun params class =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   137
      let
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   138
        val const_typs = (#params o Axclass.get_info thy) class;
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   139
        val const_names = (#consts o the_class_data thy) class;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   140
      in
26518
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   141
        (map o apsnd)
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   142
          (fn c => (class, (c, (the o AList.lookup (op =) const_typs) c))) const_names
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   143
      end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   144
  in maps params o ancestry thy end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   145
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   146
val base_sort = #base_sort oo the_class_data;
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   147
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   148
fun rules thy class =
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   149
  let val {axiom, of_class, ...} = the_class_data thy class
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   150
  in (axiom, of_class) end;
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   151
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   152
fun all_assm_intros thy =
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   153
  Graph.fold (fn (_, (Class_Data {assm_intro, ...}, _)) => fold (insert Thm.eq_thm)
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   154
    (the_list assm_intro)) (Class_Data.get thy) [];
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   155
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   156
fun these_defs thy = maps (#defs o the_class_data thy) o ancestry thy;
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   157
fun these_operations thy = maps (#operations o the_class_data thy) o ancestry thy;
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29333
diff changeset
   158
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   159
val base_morphism = #base_morph oo the_class_data;
47078
wenzelm
parents: 47061
diff changeset
   160
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   161
fun morphism thy class =
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   162
  (case Element.eq_morphism thy (these_defs thy [class]) of
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   163
    SOME eq_morph => base_morphism thy class $> eq_morph
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   164
  | NONE => base_morphism thy class);
47078
wenzelm
parents: 47061
diff changeset
   165
32850
d95a7fd00bd4 proper merge of interpretation equations
haftmann
parents: 32805
diff changeset
   166
val export_morphism = #export_morph oo the_class_data;
28715
238f9966c80e class morphism stemming from locale interpretation
haftmann
parents: 28674
diff changeset
   167
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   168
fun pretty_param ctxt (c, ty) =
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   169
  Pretty.block
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   170
   [Name_Space.pretty ctxt (Proof_Context.const_space ctxt) c, Pretty.str " ::",
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   171
    Pretty.brk 1, Syntax.pretty_typ ctxt ty];
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   172
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41270
diff changeset
   173
fun print_classes ctxt =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   174
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   175
    val thy = Proof_Context.theory_of ctxt;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   176
    val algebra = Sign.classes_of thy;
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   177
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   178
    val class_space = Proof_Context.class_space ctxt;
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   179
    val type_space = Proof_Context.type_space ctxt;
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   180
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   181
    val arities =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   182
      Symtab.empty
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   183
      |> Symtab.fold (fn (tyco, arities) => fold (fn (class, _) =>
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   184
           Symtab.map_default (class, []) (insert (op =) tyco)) arities)
36328
4d9deabf6474 replaced Sorts.rep_algebra by slightly more abstract selectors classes_of/arities_of;
wenzelm
parents: 36323
diff changeset
   185
             (Sorts.arities_of algebra);
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   186
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   187
    fun prt_supersort class =
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   188
      Syntax.pretty_sort ctxt (Sign.minimize_sort thy (Sign.super_classes thy class));
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   189
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   190
    fun prt_arity class tyco =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   191
      let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   192
        val Ss = Sorts.mg_domain algebra tyco [class];
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24914
diff changeset
   193
      in Syntax.pretty_arity ctxt (tyco, Ss, [class]) end;
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   194
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   195
    fun prt_param (c, ty) = pretty_param ctxt (c, Type.strip_sorts_dummy ty);
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   196
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   197
    fun prt_entry class =
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   198
      Pretty.block
55763
4b3907cb5654 tuned signature;
wenzelm
parents: 55304
diff changeset
   199
        ([Pretty.keyword1 "class", Pretty.brk 1,
53539
51157ee7f5ba tuned signature;
wenzelm
parents: 53171
diff changeset
   200
          Name_Space.pretty ctxt class_space class, Pretty.str ":", Pretty.fbrk,
51157ee7f5ba tuned signature;
wenzelm
parents: 53171
diff changeset
   201
          Pretty.block [Pretty.str "supersort: ", prt_supersort class]] @
68098
e2bb1d95cbd0 more appropriate notion of emptiness
haftmann
parents: 67625
diff changeset
   202
          (case (these o Option.map #params o try (Axclass.get_info thy)) class of
e2bb1d95cbd0 more appropriate notion of emptiness
haftmann
parents: 67625
diff changeset
   203
            [] => []
e2bb1d95cbd0 more appropriate notion of emptiness
haftmann
parents: 67625
diff changeset
   204
          | params =>
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   205
              [Pretty.fbrk, Pretty.big_list "parameters:" (map prt_param params)]) @
68098
e2bb1d95cbd0 more appropriate notion of emptiness
haftmann
parents: 67625
diff changeset
   206
          (case (these o Symtab.lookup arities) class of
e2bb1d95cbd0 more appropriate notion of emptiness
haftmann
parents: 67625
diff changeset
   207
            [] => []
e2bb1d95cbd0 more appropriate notion of emptiness
haftmann
parents: 67625
diff changeset
   208
          | ars =>
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   209
              [Pretty.fbrk, Pretty.big_list "instances:"
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   210
                (map (prt_arity class) (sort (Name_Space.extern_ord ctxt type_space) ars))]));
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   211
  in
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   212
    Sorts.all_classes algebra
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   213
    |> sort (Name_Space.extern_ord ctxt class_space)
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 49687
diff changeset
   214
    |> map prt_entry
56334
6b3739fee456 some shortcuts for chunks, which sometimes avoid bulky string output;
wenzelm
parents: 56204
diff changeset
   215
    |> Pretty.writeln_chunks2
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   216
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   217
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   219
(* updaters *)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   220
32850
d95a7fd00bd4 proper merge of interpretation equations
haftmann
parents: 32805
diff changeset
   221
fun register class sups params base_sort base_morph export_morph
52636
238cec044ebf tuned variable names
haftmann
parents: 51685
diff changeset
   222
    some_axiom some_assm_intro of_class thy =
25002
haftmann
parents: 24981
diff changeset
   223
  let
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   224
    val operations = map (fn (v_ty as (_, ty), (c, _)) =>
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
   225
      (c, (class, ((ty, Free v_ty), false)))) params;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   226
    val add_class = Graph.new_node (class,
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58837
diff changeset
   227
        make_class_data (((map o apply2) fst params, base_sort,
61085
30b0c4584244 trim context for persistent storage;
wenzelm
parents: 60816
diff changeset
   228
          base_morph, export_morph, Option.map Thm.trim_context some_assm_intro,
30b0c4584244 trim context for persistent storage;
wenzelm
parents: 60816
diff changeset
   229
          Thm.trim_context of_class, Option.map Thm.trim_context some_axiom), ([], operations)))
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   230
      #> fold (curry Graph.add_edge class) sups;
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   231
  in Class_Data.map add_class thy end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   232
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   233
fun activate_defs class thms thy =
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   234
  (case Element.eq_morphism thy thms of
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   235
    SOME eq_morph =>
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   236
      fold (fn cls => fn thy =>
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   237
        Context.theory_map
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   238
          (Locale.amend_registration
69058
f4fb93197670 tuned signature;
wenzelm
parents: 69048
diff changeset
   239
            {inst = (cls, base_morphism thy cls),
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   240
              mixin = SOME (eq_morph, true),
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   241
              export = export_morphism thy cls}) thy) (heritage thy [class]) thy
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   242
  | NONE => thy);
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   243
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
   244
fun register_operation class (c, t) input_only thy =
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   245
  let
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29333
diff changeset
   246
    val base_sort = base_sort thy class;
29439
83601bdadae8 construct explicit class morphism
haftmann
parents: 29362
diff changeset
   247
    val prep_typ = map_type_tfree
83601bdadae8 construct explicit class morphism
haftmann
parents: 29362
diff changeset
   248
      (fn (v, sort) => if Name.aT = v
83601bdadae8 construct explicit class morphism
haftmann
parents: 29362
diff changeset
   249
        then TFree (v, base_sort) else TVar ((v, 0), sort));
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   250
    val t' = map_types prep_typ t;
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   251
    val ty' = Term.fastype_of t';
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   252
  in
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   253
    thy
57173
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   254
    |> (Class_Data.map o Graph.map_node class o map_class_data o apsnd o apsnd)
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
   255
        (cons (c, (class, ((ty', t'), input_only))))
57173
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   256
  end;
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   257
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   258
fun register_def class def_thm thy =
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   259
  let
61085
30b0c4584244 trim context for persistent storage;
wenzelm
parents: 60816
diff changeset
   260
    val sym_thm = Thm.trim_context (Thm.symmetric def_thm)
57173
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   261
  in
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   262
    thy
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   263
    |> (Class_Data.map o Graph.map_node class o map_class_data o apsnd o apfst)
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   264
        (cons sym_thm)
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   265
    |> activate_defs class [sym_thm]
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   266
  end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   267
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   268
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   269
(** classes and class target **)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   270
25002
haftmann
parents: 24981
diff changeset
   271
(* class context syntax *)
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   272
60347
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   273
fun make_rewrite t c_ty =
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   274
  let
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   275
    val (vs, t') = strip_abs t;
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   276
    val vts = map snd vs
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   277
      |> Name.invent_names Name.context Name.uu
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   278
      |> map (fn (v, T) => Var ((v, 0), T));
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   279
  in (betapplys (t, vts), betapplys (Const c_ty, vts)) end;
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   280
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
   281
fun these_unchecks thy =
60347
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   282
  these_operations thy
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   283
  #> map_filter (fn (c, (_, ((ty, t), input_only))) =>
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   284
    if input_only then NONE else SOME (make_rewrite t (c, ty)));
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   285
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   286
fun these_unchecks_reversed thy =
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   287
  these_operations thy
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   288
  #> map (fn (c, (_, ((ty, t), _))) => (Const (c, ty), t));
29577
08f783c5fcf0 code cleanup
haftmann
parents: 29558
diff changeset
   289
29632
c3d576157244 fixed reading of class specs: declare class operations in context
haftmann
parents: 29610
diff changeset
   290
fun redeclare_const thy c =
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30344
diff changeset
   291
  let val b = Long_Name.base_name c
29632
c3d576157244 fixed reading of class specs: declare class operations in context
haftmann
parents: 29610
diff changeset
   292
  in Sign.intern_const thy b = c ? Variable.declare_const (b, c) end;
c3d576157244 fixed reading of class specs: declare class operations in context
haftmann
parents: 29610
diff changeset
   293
29577
08f783c5fcf0 code cleanup
haftmann
parents: 29558
diff changeset
   294
fun synchronize_class_syntax sort base_sort ctxt =
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   295
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   296
    val thy = Proof_Context.theory_of ctxt;
26596
07d7d0a6d5fd check validity of class target improvement
haftmann
parents: 26518
diff changeset
   297
    val algebra = Sign.classes_of thy;
29577
08f783c5fcf0 code cleanup
haftmann
parents: 29558
diff changeset
   298
    val operations = these_operations thy sort;
26518
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   299
    fun subst_class_typ sort = map_type_tfree (K (TVar ((Name.aT, 0), sort)));
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   300
    val primary_constraints =
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
   301
      (map o apsnd) (subst_class_typ base_sort o fst o fst o snd) operations;
26518
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   302
    val secondary_constraints =
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
   303
      (map o apsnd) (fn (class, ((ty, _), _)) => subst_class_typ [class] ty) operations;
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   304
    fun improve (c, ty) =
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   305
      (case AList.lookup (op =) primary_constraints c of
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   306
        SOME ty' =>
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   307
          (case try (Type.raw_match (ty', ty)) Vartab.empty of
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   308
            SOME tyenv =>
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   309
              (case Vartab.lookup tyenv (Name.aT, 0) of
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   310
                SOME (_, ty' as TVar (vi, sort)) =>
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   311
                  if Type_Infer.is_param vi andalso Sorts.sort_le algebra (base_sort, sort)
70387
wenzelm
parents: 69829
diff changeset
   312
                  then SOME (ty', Term.aT base_sort)
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   313
                  else NONE
26238
c30bb8182da2 generic improvable syntax for targets
haftmann
parents: 26167
diff changeset
   314
              | _ => NONE)
c30bb8182da2 generic improvable syntax for targets
haftmann
parents: 26167
diff changeset
   315
          | NONE => NONE)
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   316
      | NONE => NONE);
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
   317
    fun subst (c, _) = Option.map (fst o snd) (AList.lookup (op =) operations c);
29577
08f783c5fcf0 code cleanup
haftmann
parents: 29558
diff changeset
   318
    val unchecks = these_unchecks thy sort;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   319
  in
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   320
    ctxt
29632
c3d576157244 fixed reading of class specs: declare class operations in context
haftmann
parents: 29610
diff changeset
   321
    |> fold (redeclare_const thy o fst) primary_constraints
60338
a808b57d5b0d clarified interfaces for improvable syntax
haftmann
parents: 60337
diff changeset
   322
    |> Overloading.map_improvable_syntax (K {primary_constraints = primary_constraints,
a808b57d5b0d clarified interfaces for improvable syntax
haftmann
parents: 60337
diff changeset
   323
      secondary_constraints = secondary_constraints, improve = improve, subst = subst,
a808b57d5b0d clarified interfaces for improvable syntax
haftmann
parents: 60337
diff changeset
   324
      no_subst_in_abbrev_mode = true, unchecks = unchecks})
26518
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   325
    |> Overloading.set_primary_constraints
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   326
  end;
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   327
54866
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   328
fun synchronize_class_syntax_target class lthy =
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   329
  lthy
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   330
  |> Local_Theory.map_contexts
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   331
      (K (synchronize_class_syntax [class] (base_sort (Proof_Context.theory_of lthy) class)));
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   332
29632
c3d576157244 fixed reading of class specs: declare class operations in context
haftmann
parents: 29610
diff changeset
   333
fun redeclare_operations thy sort =
c3d576157244 fixed reading of class specs: declare class operations in context
haftmann
parents: 29610
diff changeset
   334
  fold (redeclare_const thy o fst) (these_operations thy sort);
c3d576157244 fixed reading of class specs: declare class operations in context
haftmann
parents: 29610
diff changeset
   335
29577
08f783c5fcf0 code cleanup
haftmann
parents: 29558
diff changeset
   336
fun begin sort base_sort ctxt =
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   337
  ctxt
70387
wenzelm
parents: 69829
diff changeset
   338
  |> Variable.declare_term (Logic.mk_type (Term.aT base_sort))
29577
08f783c5fcf0 code cleanup
haftmann
parents: 29558
diff changeset
   339
  |> synchronize_class_syntax sort base_sort
39378
df86b1b4ce10 more precise name for activation of improveable syntax
haftmann
parents: 39134
diff changeset
   340
  |> Overloading.activate_improvable_syntax;
24901
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24847
diff changeset
   341
25311
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   342
fun init class thy =
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   343
  thy
29509
1ff0f3f08a7b migrated class package to new locale implementation
haftmann
parents: 29439
diff changeset
   344
  |> Locale.init class
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29333
diff changeset
   345
  |> begin [class] (base_sort thy class);
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   346
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   347
27690
24738db98d34 some steps towards explicit class target for canonical interpretation
haftmann
parents: 27684
diff changeset
   348
(* class target *)
24738db98d34 some steps towards explicit class target for canonical interpretation
haftmann
parents: 27684
diff changeset
   349
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30344
diff changeset
   350
val class_prefix = Logic.const_of_class o Long_Name.base_name;
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   351
57187
de00494fa8b3 less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents: 57186
diff changeset
   352
fun guess_morphism_identity (b, rhs) phi1 phi2 =
de00494fa8b3 less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents: 57186
diff changeset
   353
  let
de00494fa8b3 less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents: 57186
diff changeset
   354
    (*FIXME proper concept to identify morphism instead of educated guess*)
58668
1891f17c6124 tuned signature;
wenzelm
parents: 57192
diff changeset
   355
    val name_of_binding = Name_Space.full_name Name_Space.global_naming;
57187
de00494fa8b3 less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents: 57186
diff changeset
   356
    val n1 = (name_of_binding o Morphism.binding phi1) b;
de00494fa8b3 less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents: 57186
diff changeset
   357
    val n2 = (name_of_binding o Morphism.binding phi2) b;
de00494fa8b3 less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents: 57186
diff changeset
   358
    val rhs1 = Morphism.term phi1 rhs;
de00494fa8b3 less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents: 57186
diff changeset
   359
    val rhs2 = Morphism.term phi2 rhs;
de00494fa8b3 less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents: 57186
diff changeset
   360
  in n1 = n2 andalso Term.aconv_untyped (rhs1, rhs2) end;
de00494fa8b3 less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents: 57186
diff changeset
   361
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   362
fun target_const class phi0 prmode (b, rhs) lthy =
57189
5140ddfccea7 re-unified approach towards class and locale consts, with refined terminology: foo_const_declaration denotes declaration for a particular logical layer, foo_const the full stack for a particular target
haftmann
parents: 57188
diff changeset
   363
  let
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   364
    val export = Variable.export_morphism lthy (Local_Theory.target_of lthy);
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   365
    val guess_identity = guess_morphism_identity (b, rhs) export;
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   366
    val guess_canonical = guess_morphism_identity (b, rhs) (export $> phi0);
57189
5140ddfccea7 re-unified approach towards class and locale consts, with refined terminology: foo_const_declaration denotes declaration for a particular logical layer, foo_const the full stack for a particular target
haftmann
parents: 57188
diff changeset
   367
  in
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   368
    lthy
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   369
    |> Generic_Target.locale_target_const class
57189
5140ddfccea7 re-unified approach towards class and locale consts, with refined terminology: foo_const_declaration denotes declaration for a particular logical layer, foo_const the full stack for a particular target
haftmann
parents: 57188
diff changeset
   370
      (not o (guess_identity orf guess_canonical)) prmode ((b, NoSyn), rhs)
5140ddfccea7 re-unified approach towards class and locale consts, with refined terminology: foo_const_declaration denotes declaration for a particular logical layer, foo_const the full stack for a particular target
haftmann
parents: 57188
diff changeset
   371
  end;
57072
dfac6ef0ca28 moved const declaration further down in bootstrap hierarchy: keep Named_Target free of low-level stuff
haftmann
parents: 57070
diff changeset
   372
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   373
local
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   374
57119
haftmann
parents: 57109
diff changeset
   375
fun dangling_params_for lthy class (type_params, term_params) =
27690
24738db98d34 some steps towards explicit class target for canonical interpretation
haftmann
parents: 27684
diff changeset
   376
  let
57119
haftmann
parents: 57109
diff changeset
   377
    val class_param_names =
haftmann
parents: 57109
diff changeset
   378
      map fst (these_params (Proof_Context.theory_of lthy) [class]);
haftmann
parents: 57109
diff changeset
   379
    val dangling_term_params =
haftmann
parents: 57109
diff changeset
   380
      subtract (fn (v, Free (w, _)) => v = w | _ => false) class_param_names term_params;
57161
6254c51cd210 formal treatment of dangling parameters for class abbrevs analogously to class consts
haftmann
parents: 57148
diff changeset
   381
  in (type_params, dangling_term_params) end;
57119
haftmann
parents: 57109
diff changeset
   382
haftmann
parents: 57109
diff changeset
   383
fun global_def (b, eq) thy =
68350
7fafc8a01915 tuned -- more explicit expression;
wenzelm
parents: 68098
diff changeset
   384
  let
7fafc8a01915 tuned -- more explicit expression;
wenzelm
parents: 68098
diff changeset
   385
    val ((_, def_thm), thy') = thy |> Thm.add_def_global false false (b, eq);
68351
bcdc4c21ab1d varify frees, notably dangling_params (see also e0cd57aeb60c);
wenzelm
parents: 68350
diff changeset
   386
    val def_thm' = def_thm |> Thm.forall_intr_frees |> Thm.forall_elim_vars 0 |> Thm.varifyT_global;
68350
7fafc8a01915 tuned -- more explicit expression;
wenzelm
parents: 68098
diff changeset
   387
    val (_, thy'') = thy' |> Global_Theory.store_thm (b, def_thm');
7fafc8a01915 tuned -- more explicit expression;
wenzelm
parents: 68098
diff changeset
   388
  in (def_thm', thy'') end;
57119
haftmann
parents: 57109
diff changeset
   389
57142
haftmann
parents: 57141
diff changeset
   390
fun canonical_const class phi dangling_params ((b, mx), rhs) thy =
57119
haftmann
parents: 57109
diff changeset
   391
  let
57147
haftmann
parents: 57143
diff changeset
   392
    val b_def = Binding.suffix_name "_dict" b;
haftmann
parents: 57143
diff changeset
   393
    val c = Sign.full_name thy b;
haftmann
parents: 57143
diff changeset
   394
    val ty = map Term.fastype_of dangling_params ---> Term.fastype_of rhs;
haftmann
parents: 57143
diff changeset
   395
    val def_eq = Logic.mk_equals (list_comb (Const (c, ty), dangling_params), rhs)
29577
08f783c5fcf0 code cleanup
haftmann
parents: 29558
diff changeset
   396
      |> map_types Type.strip_sorts;
27690
24738db98d34 some steps towards explicit class target for canonical interpretation
haftmann
parents: 27684
diff changeset
   397
  in
29577
08f783c5fcf0 code cleanup
haftmann
parents: 29558
diff changeset
   398
    thy
57147
haftmann
parents: 57143
diff changeset
   399
    |> Sign.declare_const_global ((b, Type.strip_sorts ty), mx)
29577
08f783c5fcf0 code cleanup
haftmann
parents: 29558
diff changeset
   400
    |> snd
57119
haftmann
parents: 57109
diff changeset
   401
    |> global_def (b_def, def_eq)
57173
897cc57a6f55 always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents: 57161
diff changeset
   402
    |-> (fn def_thm => register_def class def_thm)
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
   403
    |> null dangling_params ? register_operation class (c, rhs) false
57147
haftmann
parents: 57143
diff changeset
   404
    |> Sign.add_const_constraint (c, SOME ty)
27690
24738db98d34 some steps towards explicit class target for canonical interpretation
haftmann
parents: 27684
diff changeset
   405
  end;
24738db98d34 some steps towards explicit class target for canonical interpretation
haftmann
parents: 27684
diff changeset
   406
38619
25e401d53900 tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents: 38392
diff changeset
   407
in
25e401d53900 tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents: 38392
diff changeset
   408
57119
haftmann
parents: 57109
diff changeset
   409
fun const class ((b, mx), lhs) params lthy =
haftmann
parents: 57109
diff changeset
   410
  let
57141
19501c952c21 explicit is better than implicit
haftmann
parents: 57140
diff changeset
   411
    val phi = morphism (Proof_Context.theory_of lthy) class;
57161
6254c51cd210 formal treatment of dangling parameters for class abbrevs analogously to class consts
haftmann
parents: 57148
diff changeset
   412
    val dangling_params = map (Morphism.term phi) (uncurry append (dangling_params_for lthy class params));
57119
haftmann
parents: 57109
diff changeset
   413
  in
haftmann
parents: 57109
diff changeset
   414
    lthy
60337
haftmann
parents: 60249
diff changeset
   415
    |> target_const class phi Syntax.mode_default (b, lhs)
57148
4069c9b3803a definition in class: provide explicit auxiliary abbreviation carrying potential mixfix syntax in presence of dangling parameters
haftmann
parents: 57147
diff changeset
   416
    |> Local_Theory.raw_theory (canonical_const class phi dangling_params
4069c9b3803a definition in class: provide explicit auxiliary abbreviation carrying potential mixfix syntax in presence of dangling parameters
haftmann
parents: 57147
diff changeset
   417
         ((Morphism.binding phi b, if null dangling_params then mx else NoSyn), Morphism.term phi lhs))
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: 57189
diff changeset
   418
    |> Generic_Target.standard_const (fn (this, other) => other <> 0 andalso this <> other)
57148
4069c9b3803a definition in class: provide explicit auxiliary abbreviation carrying potential mixfix syntax in presence of dangling parameters
haftmann
parents: 57147
diff changeset
   419
         Syntax.mode_default ((b, if null dangling_params then NoSyn else mx), lhs)
57141
19501c952c21 explicit is better than implicit
haftmann
parents: 57140
diff changeset
   420
    |> synchronize_class_syntax_target class
57119
haftmann
parents: 57109
diff changeset
   421
  end;
57072
dfac6ef0ca28 moved const declaration further down in bootstrap hierarchy: keep Named_Target free of low-level stuff
haftmann
parents: 57070
diff changeset
   422
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   423
end;
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   424
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   425
local
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   426
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   427
fun canonical_abbrev class phi prmode with_syntax ((b, mx), rhs) thy =
57141
19501c952c21 explicit is better than implicit
haftmann
parents: 57140
diff changeset
   428
  let
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   429
    val c = Sign.full_name thy b;
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   430
    val constrain = map_atyps (fn T as TFree (v, _) =>
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   431
      if v = Name.aT then TFree (v, [class]) else T | T => T);
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   432
    val rhs' = map_types constrain rhs;
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   433
  in
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   434
    thy
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   435
    |> Sign.add_abbrev (#1 prmode) (b, Logic.varify_types_global rhs')
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   436
    |> snd
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   437
    |> with_syntax ? Sign.notation true prmode [(Const (c, fastype_of rhs), mx)]
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   438
    |> with_syntax ? register_operation class (c, rhs)
60346
90d0103af558 explicit input marker for operations
haftmann
parents: 60345
diff changeset
   439
        (#1 prmode = Print_Mode.input)
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   440
    |> Sign.add_const_constraint (c, SOME (fastype_of rhs'))
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   441
  end;
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   442
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   443
fun canonical_abbrev_target class phi prmode ((b, mx), rhs) lthy =
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   444
  let
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   445
    val thy = Proof_Context.theory_of lthy;
60347
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   446
    val preprocess = perhaps (try (Pattern.rewrite_term_top thy (these_unchecks thy [class]) []));
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   447
    val (global_rhs, (extra_tfrees, (type_params, term_params))) =
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   448
      Generic_Target.export_abbrev lthy preprocess rhs;
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   449
    val mx' = Generic_Target.check_mixfix_global (b, null term_params) mx;
57141
19501c952c21 explicit is better than implicit
haftmann
parents: 57140
diff changeset
   450
  in
19501c952c21 explicit is better than implicit
haftmann
parents: 57140
diff changeset
   451
    lthy
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   452
    |> Local_Theory.raw_theory (canonical_abbrev class phi prmode (null term_params)
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   453
        ((Morphism.binding phi b, mx'), Logic.unvarify_types_global global_rhs))
57141
19501c952c21 explicit is better than implicit
haftmann
parents: 57140
diff changeset
   454
  end;
38619
25e401d53900 tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents: 38392
diff changeset
   455
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   456
fun further_abbrev_target class phi prmode (b, mx) rhs params =
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   457
  Generic_Target.background_abbrev (b, rhs) (snd params)
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   458
  #-> (fn (lhs, _) => target_const class phi prmode (b, lhs)
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   459
    #> Generic_Target.standard_const (fn (this, other) => other <> 0 andalso this <> other) prmode ((b, mx), lhs))
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   460
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   461
in
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   462
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   463
fun abbrev class prmode ((b, mx), rhs) lthy =
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   464
  let
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   465
    val thy = Proof_Context.theory_of lthy;
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   466
    val phi = morphism thy class;
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   467
    val rhs_generic =
60347
7d64ad9910e2 explicit argument expansion of uncheck rules;
haftmann
parents: 60346
diff changeset
   468
      perhaps (try (Pattern.rewrite_term_top thy (these_unchecks_reversed thy [class]) [])) rhs;
60345
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   469
  in
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   470
    lthy
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   471
    |> canonical_abbrev_target class phi prmode ((b, mx), rhs)
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   472
    |> Generic_Target.abbrev (further_abbrev_target class phi) prmode ((b, mx), rhs_generic)
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   473
    ||> synchronize_class_syntax_target class
592806806494 completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents: 60344
diff changeset
   474
  end;
60344
a40369ea3ba5 self-contained formulation of abbrev for named targets
haftmann
parents: 60341
diff changeset
   475
38619
25e401d53900 tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents: 38392
diff changeset
   476
end;
25e401d53900 tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents: 38392
diff changeset
   477
27690
24738db98d34 some steps towards explicit class target for canonical interpretation
haftmann
parents: 27684
diff changeset
   478
54866
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   479
(* subclasses *)
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   480
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   481
fun register_subclass (sub, sup) some_dep_morph some_witn export lthy =
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   482
  let
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   483
    val thy = Proof_Context.theory_of lthy;
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   484
    val intros = (snd o rules thy) sup :: map_filter I
54883
dd04a8b654fc proper context for norm_hhf and derived operations;
wenzelm
parents: 54866
diff changeset
   485
      [Option.map (Drule.export_without_context_open o Element.conclude_witness lthy) some_witn,
54866
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   486
        (fst o rules thy) sub];
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   487
    val classrel =
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   488
      Goal.prove_sorry_global thy [] [] (Logic.mk_classrel (sub, sup))
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59423
diff changeset
   489
        (fn {context = ctxt, ...} => EVERY (map (TRYALL o resolve_tac ctxt o single) intros));
54866
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   490
    val diff_sort = Sign.complete_sort thy [sup]
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   491
      |> subtract (op =) (Sign.complete_sort thy [sub])
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   492
      |> filter (is_class thy);
69048
f79aeac59e15 tuned -- removed spurious dead code from 7b9a67cbd48f;
wenzelm
parents: 69017
diff changeset
   493
    val add_dependency =
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   494
      (case some_dep_morph of
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   495
        SOME dep_morph =>
72505
974071d873ba tuned interfaces
haftmann
parents: 70387
diff changeset
   496
          Locale.add_dependency sub
69058
f4fb93197670 tuned signature;
wenzelm
parents: 69048
diff changeset
   497
            {inst = (sup, dep_morph $> Element.satisfy_morphism (the_list some_witn)),
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   498
              mixin = NONE, export = export}
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68351
diff changeset
   499
      | NONE => I);
54866
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   500
  in
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   501
    lthy
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   502
    |> Local_Theory.raw_theory
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   503
      (Axclass.add_classrel classrel
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   504
      #> Class_Data.map (Graph.add_edge (sub, sup))
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   505
      #> activate_defs sub (these_defs thy diff_sort))
69048
f79aeac59e15 tuned -- removed spurious dead code from 7b9a67cbd48f;
wenzelm
parents: 69017
diff changeset
   506
    |> add_dependency
54866
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   507
    |> synchronize_class_syntax_target sub
7b9a67cbd48f self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents: 54742
diff changeset
   508
  end;
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   509
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   510
local
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   511
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   512
fun gen_classrel mk_prop classrel thy =
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   513
  let
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   514
    fun after_qed results =
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   515
      Proof_Context.background_theory ((fold o fold) Axclass.add_classrel results);
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   516
  in
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   517
    thy
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   518
    |> Proof_Context.init_global
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36106
diff changeset
   519
    |> Proof.theorem NONE after_qed [[(mk_prop thy classrel, [])]]
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   520
  end;
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   521
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   522
in
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   523
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   524
val classrel =
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   525
  gen_classrel (Logic.mk_classrel oo Axclass.cert_classrel);
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   526
val classrel_cmd =
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   527
  gen_classrel (Logic.mk_classrel oo Axclass.read_classrel);
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   528
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   529
end; (*local*)
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   530
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   531
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   532
(** instantiation target **)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   533
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   534
(* bookkeeping *)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   535
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   536
datatype instantiation = Instantiation of {
25864
11f531354852 explicit type variables for instantiation
haftmann
parents: 25829
diff changeset
   537
  arities: string list * (string * sort) list * sort,
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   538
  params: ((string * string) * (string * typ)) list
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   539
    (*(instantiation parameter, type constructor), (local instantiation parameter, typ)*)
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   540
}
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   541
59150
wenzelm
parents: 59058
diff changeset
   542
fun make_instantiation (arities, params) =
wenzelm
parents: 59058
diff changeset
   543
  Instantiation {arities = arities, params = params};
wenzelm
parents: 59058
diff changeset
   544
wenzelm
parents: 59058
diff changeset
   545
val empty_instantiation = make_instantiation (([], [], []), []);
wenzelm
parents: 59058
diff changeset
   546
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33173
diff changeset
   547
structure Instantiation = Proof_Data
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   548
(
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   549
  type T = instantiation;
59150
wenzelm
parents: 59058
diff changeset
   550
  fun init _ = empty_instantiation;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   551
);
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   552
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   553
val get_instantiation =
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   554
  (fn Instantiation data => data) o Instantiation.get o Local_Theory.target_of;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   555
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   556
fun map_instantiation f =
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   557
  (Local_Theory.target o Instantiation.map)
59150
wenzelm
parents: 59058
diff changeset
   558
    (fn Instantiation {arities, params} => make_instantiation (f (arities, params)));
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   559
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   560
fun the_instantiation lthy =
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   561
  (case get_instantiation lthy of
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   562
    {arities = ([], [], []), ...} => error "No instantiation target"
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   563
  | data => data);
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   564
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   565
val instantiation_params = #params o get_instantiation;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   566
30519
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30364
diff changeset
   567
fun instantiation_param lthy b = instantiation_params lthy
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30364
diff changeset
   568
  |> find_first (fn (_, (v, _)) => Binding.name_of b = v)
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   569
  |> Option.map (fst o fst);
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   570
31869
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   571
fun read_multi_arity thy (raw_tycos, raw_sorts, raw_sort) =
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   572
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   573
    val ctxt = Proof_Context.init_global thy;
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   574
    val all_arities = map (fn raw_tyco => Proof_Context.read_arity ctxt
31869
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   575
      (raw_tyco, raw_sorts, raw_sort)) raw_tycos;
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   576
    val tycos = map #1 all_arities;
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   577
    val (_, sorts, sort) = hd all_arities;
43329
84472e198515 tuned signature: Name.invent and Name.invent_names;
wenzelm
parents: 42402
diff changeset
   578
    val vs = Name.invent_names Name.context Name.aT sorts;
31869
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   579
  in (tycos, vs, sort) end;
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   580
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   581
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   582
(* syntax *)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   583
26238
c30bb8182da2 generic improvable syntax for targets
haftmann
parents: 26167
diff changeset
   584
fun synchronize_inst_syntax ctxt =
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   585
  let
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   586
    val Instantiation {params, ...} = Instantiation.get ctxt;
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31214
diff changeset
   587
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   588
    val lookup_inst_param = Axclass.lookup_inst_param
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   589
      (Sign.consts_of (Proof_Context.theory_of ctxt)) params;
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   590
    fun subst (c, ty) =
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   591
      (case lookup_inst_param (c, ty) of
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   592
        SOME (v_ty as (_, ty)) => SOME (ty, Free v_ty)
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   593
      | NONE => NONE);
26238
c30bb8182da2 generic improvable syntax for targets
haftmann
parents: 26167
diff changeset
   594
    val unchecks =
c30bb8182da2 generic improvable syntax for targets
haftmann
parents: 26167
diff changeset
   595
      map (fn ((c, _), v_ty as (_, ty)) => (Free v_ty, Const (c, ty))) params;
c30bb8182da2 generic improvable syntax for targets
haftmann
parents: 26167
diff changeset
   596
  in
c30bb8182da2 generic improvable syntax for targets
haftmann
parents: 26167
diff changeset
   597
    ctxt
60338
a808b57d5b0d clarified interfaces for improvable syntax
haftmann
parents: 60337
diff changeset
   598
    |> Overloading.map_improvable_syntax (fn {primary_constraints, improve, ...} =>
a808b57d5b0d clarified interfaces for improvable syntax
haftmann
parents: 60337
diff changeset
   599
      {primary_constraints = primary_constraints, secondary_constraints = [],
a808b57d5b0d clarified interfaces for improvable syntax
haftmann
parents: 60337
diff changeset
   600
        improve = improve, subst = subst, no_subst_in_abbrev_mode = false,
a808b57d5b0d clarified interfaces for improvable syntax
haftmann
parents: 60337
diff changeset
   601
        unchecks = unchecks})
26238
c30bb8182da2 generic improvable syntax for targets
haftmann
parents: 26167
diff changeset
   602
  end;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   603
42385
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   604
fun resort_terms ctxt algebra consts constraints ts =
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   605
  let
42385
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   606
    fun matchings (Const (c_ty as (c, _))) =
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   607
          (case constraints c of
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   608
            NONE => I
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   609
          | SOME sorts =>
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   610
              fold2 (curry (Sorts.meet_sort algebra)) (Consts.typargs consts c_ty) sorts)
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   611
      | matchings _ = I;
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   612
    val tvartab = (fold o fold_aterms) matchings ts Vartab.empty
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61085
diff changeset
   613
      handle Sorts.CLASS_ERROR e => error (Sorts.class_error (Context.Proof ctxt) e);
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   614
    val inst = map_type_tvar
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   615
      (fn (vi, sort) => TVar (vi, the_default sort (Vartab.lookup tvartab vi)));
42402
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42388
diff changeset
   616
  in if Vartab.is_empty tvartab then ts else (map o map_types) inst ts end;
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   617
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   618
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   619
(* target *)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   620
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   621
fun define_overloaded (c, U) b (b_def, rhs) lthy =
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   622
  let
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   623
    val name = Binding.name_of b;
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   624
    val pos = Binding.pos_of b;
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   625
    val _ =
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   626
      if Context_Position.is_reported lthy pos then
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   627
        Position.report_text pos Markup.class_parameter
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   628
          (Pretty.string_of
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   629
            (Pretty.block [Pretty.keyword1 "class", Pretty.brk 1,
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   630
                Pretty.str "parameter", Pretty.brk 1, pretty_param lthy (c, U)]))
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   631
      else ();
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   632
  in
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   633
    lthy |> Local_Theory.background_theory_result
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   634
      (Axclass.declare_overloaded (c, U) ##>> Axclass.define_overloaded b_def (c, rhs))
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   635
    ||> (map_instantiation o apsnd) (filter_out (fn (_, (v', _)) => v' = name))
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   636
    ||> Local_Theory.map_contexts (K synchronize_inst_syntax)
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   637
  end;
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   638
47289
wenzelm
parents: 47286
diff changeset
   639
fun foundation (((b, U), mx), (b_def, rhs)) params lthy =
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   640
  (case instantiation_param lthy b of
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   641
    SOME c =>
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 62939
diff changeset
   642
      if Mixfix.is_empty mx then lthy |> define_overloaded (c, U) b (b_def, rhs)
62765
5b95a12b7b19 tuned messages -- position is usually missing here;
wenzelm
parents: 62752
diff changeset
   643
      else error ("Illegal mixfix syntax for overloaded constant " ^ quote c)
60341
fcbd7f0c52c3 clearly separated target primitives (target_foo) from self-contained target operations (foo)
haftmann
parents: 60338
diff changeset
   644
  | NONE => lthy |> Generic_Target.theory_target_foundation (((b, U), mx), (b_def, rhs)) params);
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   645
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   646
fun pretty lthy =
26518
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   647
  let
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   648
    val {arities = (tycos, vs, sort), params} = the_instantiation lthy;
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   649
    fun pr_arity tyco = Syntax.pretty_arity lthy (tyco, map snd vs, sort);
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   650
    fun pr_param ((c, _), (v, ty)) =
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41270
diff changeset
   651
      Pretty.block (Pretty.breaks
55304
55ac31bc08a4 more formal markup;
wenzelm
parents: 54883
diff changeset
   652
        [Pretty.str v, Pretty.str "==", Proof_Context.pretty_const lthy c,
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41270
diff changeset
   653
          Pretty.str "::", Syntax.pretty_typ lthy ty]);
60246
1f9cd721ece2 tuned output;
wenzelm
parents: 59911
diff changeset
   654
  in
1f9cd721ece2 tuned output;
wenzelm
parents: 59911
diff changeset
   655
    [Pretty.block
1f9cd721ece2 tuned output;
wenzelm
parents: 59911
diff changeset
   656
      (Pretty.fbreaks (Pretty.keyword1 "instantiation" :: map pr_arity tycos @ map pr_param params))]
1f9cd721ece2 tuned output;
wenzelm
parents: 59911
diff changeset
   657
  end;
26518
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   658
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   659
fun conclude lthy =
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   660
  let
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41270
diff changeset
   661
    val (tycos, vs, sort) = #arities (the_instantiation lthy);
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   662
    val thy = Proof_Context.theory_of lthy;
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41270
diff changeset
   663
    val _ = tycos |> List.app (fn tyco =>
46919
82fc322fc30a more indentation;
wenzelm
parents: 46917
diff changeset
   664
      if Sign.of_sort thy (Type (tyco, map TFree vs), sort) then ()
55304
55ac31bc08a4 more formal markup;
wenzelm
parents: 54883
diff changeset
   665
      else error ("Missing instance proof for type " ^ quote (Proof_Context.markup_type lthy tyco)));
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   666
  in lthy end;
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   667
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   668
fun instantiation (tycos, vs, sort) thy =
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   669
  let
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   670
    val _ = if null tycos then error "At least one arity must be given" else ();
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   671
    val class_params = these_params thy (filter (can (Axclass.get_info thy)) sort);
29632
c3d576157244 fixed reading of class specs: declare class operations in context
haftmann
parents: 29610
diff changeset
   672
    fun get_param tyco (param, (_, (c, ty))) =
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   673
      if can (Axclass.param_of_inst thy) (c, tyco)
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   674
      then NONE else SOME ((c, tyco),
46917
2f6c1952188a eliminated obsolete sanitize_name;
wenzelm
parents: 45429
diff changeset
   675
        (param ^ "_" ^ Long_Name.base_name tyco, map_atyps (K (Type (tyco, map TFree vs))) ty));
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31214
diff changeset
   676
    val params = map_product get_param tycos class_params |> map_filter I;
51578
969ad6538b8f convenience check for vain instantiation
haftmann
parents: 51551
diff changeset
   677
    val _ = if null params andalso forall (fn tyco => can (Sign.arity_sorts thy tyco) sort) tycos
969ad6538b8f convenience check for vain instantiation
haftmann
parents: 51551
diff changeset
   678
      then error "No parameters and no pending instance proof obligations in instantiation."
969ad6538b8f convenience check for vain instantiation
haftmann
parents: 51551
diff changeset
   679
      else ();
26518
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   680
    val primary_constraints = map (apsnd
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31214
diff changeset
   681
      (map_atyps (K (TVar ((Name.aT, 0), [])))) o snd o snd) class_params;
26518
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   682
    val algebra = Sign.classes_of thy
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61085
diff changeset
   683
      |> fold (fn tyco => Sorts.add_arities (Context.Theory thy)
26518
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   684
            (tyco, map (fn class => (class, map snd vs)) sort)) tycos;
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   685
    val consts = Sign.consts_of thy;
3db6a46d8460 improved improvements for instantiaton
haftmann
parents: 26470
diff changeset
   686
    val improve_constraints = AList.lookup (op =)
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31214
diff changeset
   687
      (map (fn (_, (class, (c, _))) => (c, [[class]])) class_params);
42402
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42388
diff changeset
   688
    fun resort_check ctxt ts = resort_terms ctxt algebra consts improve_constraints ts;
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   689
    val lookup_inst_param = Axclass.lookup_inst_param consts params;
42388
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42387
diff changeset
   690
    fun improve (c, ty) =
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42387
diff changeset
   691
      (case lookup_inst_param (c, ty) of
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42387
diff changeset
   692
        SOME (_, ty') => if Sign.typ_instance thy (ty', ty) then SOME (ty, ty') else NONE
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42387
diff changeset
   693
      | NONE => NONE);
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   694
  in
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   695
    thy
66337
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   696
    |> Generic_Target.init
66335
a849ce33923d treat exit separate from regular local theory operations
haftmann
parents: 63347
diff changeset
   697
       {background_naming = Sign.naming_of thy,
66337
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   698
        setup = Proof_Context.init_global
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   699
          #> Instantiation.put (make_instantiation ((tycos, vs, sort), params))
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   700
          #> fold (Variable.declare_typ o TFree) vs
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   701
          #> fold (Variable.declare_names o Free o snd) params
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   702
          #> (Overloading.map_improvable_syntax) (K {primary_constraints = primary_constraints,
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   703
            secondary_constraints = [], improve = improve, subst = K NONE,
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   704
            no_subst_in_abbrev_mode = false, unchecks = []})
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   705
          #> Overloading.activate_improvable_syntax
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   706
          #> Context.proof_map (Syntax_Phases.term_check 0 "resorting" resort_check)
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   707
          #> synchronize_inst_syntax,
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   708
        conclude = conclude}
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   709
       {define = Generic_Target.define foundation,
60341
fcbd7f0c52c3 clearly separated target primitives (target_foo) from self-contained target operations (foo)
haftmann
parents: 60338
diff changeset
   710
        notes = Generic_Target.notes Generic_Target.theory_target_notes,
fcbd7f0c52c3 clearly separated target primitives (target_foo) from self-contained target operations (foo)
haftmann
parents: 60338
diff changeset
   711
        abbrev = Generic_Target.abbrev Generic_Target.theory_target_abbrev,
47279
4bab649dedf0 clarified standard_declaration vs. theory_declaration;
wenzelm
parents: 47250
diff changeset
   712
        declaration = K Generic_Target.theory_declaration,
72505
974071d873ba tuned interfaces
haftmann
parents: 70387
diff changeset
   713
        theory_registration = Locale.add_registration_theory,
61890
f6ded81f5690 abandoned attempt to unify sublocale and interpretation into global theories
haftmann
parents: 61262
diff changeset
   714
        locale_dependency = fn _ => error "Not possible in instantiation target",
66335
a849ce33923d treat exit separate from regular local theory operations
haftmann
parents: 63347
diff changeset
   715
        pretty = pretty}
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   716
  end;
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   717
38382
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   718
fun instantiation_cmd arities thy =
8b02c5bf1d0e tuned internal structure
haftmann
parents: 38381
diff changeset
   719
  instantiation (read_multi_arity thy arities) thy;
26238
c30bb8182da2 generic improvable syntax for targets
haftmann
parents: 26167
diff changeset
   720
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   721
fun gen_instantiation_instance do_proof after_qed lthy =
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   722
  let
25864
11f531354852 explicit type variables for instantiation
haftmann
parents: 25829
diff changeset
   723
    val (tycos, vs, sort) = (#arities o the_instantiation) lthy;
11f531354852 explicit type variables for instantiation
haftmann
parents: 25829
diff changeset
   724
    val arities_proof = maps (fn tyco => Logic.mk_arities (tyco, map snd vs, sort)) tycos;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   725
    fun after_qed' results =
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   726
      Local_Theory.background_theory (fold (Axclass.add_arity o Thm.varifyT_global) results)
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   727
      #> after_qed;
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   728
  in
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   729
    lthy
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   730
    |> do_proof after_qed' arities_proof
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   731
  end;
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   732
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   733
val instantiation_instance = gen_instantiation_instance (fn after_qed => fn ts =>
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36106
diff changeset
   734
  Proof.theorem NONE (after_qed o map the_single) (map (fn t => [(t, [])]) ts));
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   735
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   736
fun prove_instantiation_instance tac = gen_instantiation_instance (fn after_qed =>
25502
9200b36280c0 instance command as rudimentary class target
haftmann
parents: 25485
diff changeset
   737
  fn ts => fn lthy => after_qed (map (fn t => Goal.prove lthy [] [] t
9200b36280c0 instance command as rudimentary class target
haftmann
parents: 25485
diff changeset
   738
    (fn {context, ...} => tac context)) ts) lthy) I;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   739
28666
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   740
fun prove_instantiation_exit tac = prove_instantiation_instance tac
33671
4b0f2599ed48 modernized structure Local_Theory;
wenzelm
parents: 33522
diff changeset
   741
  #> Local_Theory.exit_global;
28666
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   742
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   743
fun prove_instantiation_exit_result f tac x lthy =
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   744
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   745
    val morph = Proof_Context.export_morphism lthy
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   746
      (Proof_Context.init_global (Proof_Context.theory_of lthy));
29439
83601bdadae8 construct explicit class morphism
haftmann
parents: 29362
diff changeset
   747
    val y = f morph x;
28666
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   748
  in
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   749
    lthy
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   750
    |> prove_instantiation_exit (fn ctxt => tac ctxt y)
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   751
    |> pair y
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   752
  end;
d2dbfe3a0284 prove_instantiation_exit combinators
haftmann
parents: 28259
diff changeset
   753
69829
3bfa28b3a5b2 streamlined specification interfaces
haftmann
parents: 69058
diff changeset
   754
fun theory_map_result arities f g tac =
3bfa28b3a5b2 streamlined specification interfaces
haftmann
parents: 69058
diff changeset
   755
  instantiation arities
3bfa28b3a5b2 streamlined specification interfaces
haftmann
parents: 69058
diff changeset
   756
  #> g
3bfa28b3a5b2 streamlined specification interfaces
haftmann
parents: 69058
diff changeset
   757
  #-> prove_instantiation_exit_result f tac;
3bfa28b3a5b2 streamlined specification interfaces
haftmann
parents: 69058
diff changeset
   758
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   759
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   760
(* simplified instantiation interface with no class parameter *)
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   761
31869
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   762
fun instance_arity_cmd raw_arities thy =
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   763
  let
31869
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   764
    val (tycos, vs, sort) = read_multi_arity thy raw_arities;
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   765
    val sorts = map snd vs;
01fed718958c mutual instances
haftmann
parents: 31697
diff changeset
   766
    val arities = maps (fn tyco => Logic.mk_arities (tyco, sorts, sort)) tycos;
47078
wenzelm
parents: 47061
diff changeset
   767
    fun after_qed results =
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   768
      Proof_Context.background_theory ((fold o fold) Axclass.add_arity results);
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   769
  in
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   770
    thy
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   771
    |> Proof_Context.init_global
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36106
diff changeset
   772
    |> Proof.theorem NONE after_qed (map (fn t => [(t, [])]) arities)
31635
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   773
  end;
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   774
8623244a50d5 axclass command now legacy
haftmann
parents: 31599
diff changeset
   775
60618
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60347
diff changeset
   776
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   777
(** tactics and methods **)
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   778
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59423
diff changeset
   779
fun intro_classes_tac ctxt facts st =
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   780
  let
60816
92913f915e3d clarified context;
wenzelm
parents: 60619
diff changeset
   781
    val thy = Proof_Context.theory_of ctxt;
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   782
    val classes = Sign.all_classes thy;
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   783
    val class_trivs = map (Thm.class_triv thy) classes;
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51578
diff changeset
   784
    val class_intros = map_filter (try (#intro o Axclass.get_info thy)) classes;
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   785
    val assm_intros = all_assm_intros thy;
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   786
  in
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59423
diff changeset
   787
    Method.intros_tac ctxt (class_trivs @ class_intros @ assm_intros) facts st
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   788
  end;
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   789
60618
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60347
diff changeset
   790
fun standard_intro_classes_tac ctxt facts st =
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60347
diff changeset
   791
  if null facts andalso not (Thm.no_prems st) then
69017
0c1d7a414185 clarified signature;
wenzelm
parents: 68851
diff changeset
   792
    (intro_classes_tac ctxt [] ORELSE
0c1d7a414185 clarified signature;
wenzelm
parents: 68851
diff changeset
   793
      Locale.intro_locales_tac {strict = true, eager = true} ctxt []) st
60618
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60347
diff changeset
   794
  else no_tac st;
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   795
60619
7512716f03db no arguments for "standard" (or old "default") methods;
wenzelm
parents: 60618
diff changeset
   796
fun standard_tac ctxt facts =
7512716f03db no arguments for "standard" (or old "default") methods;
wenzelm
parents: 60618
diff changeset
   797
  HEADGOAL (Method.some_rule_tac ctxt [] facts) ORELSE
60618
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60347
diff changeset
   798
  standard_intro_classes_tac ctxt facts;
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60347
diff changeset
   799
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 52788
diff changeset
   800
val _ = Theory.setup
67147
dea94b1aabc3 prefer control symbol antiquotations;
wenzelm
parents: 66337
diff changeset
   801
 (Method.setup \<^binding>\<open>intro_classes\<close> (Scan.succeed (METHOD o intro_classes_tac))
30515
bca05b17b618 simplified method setup;
wenzelm
parents: 30510
diff changeset
   802
    "back-chain introduction rules of classes" #>
67147
dea94b1aabc3 prefer control symbol antiquotations;
wenzelm
parents: 66337
diff changeset
   803
  Method.setup \<^binding>\<open>standard\<close> (Scan.succeed (METHOD o standard_tac))
62939
ef8d840f39fb removed old proof method "default";
wenzelm
parents: 62765
diff changeset
   804
    "standard proof step: Pure intro/elim rule or class introduction");
29526
0b32c8b84d3e code cleanup
haftmann
parents: 29509
diff changeset
   805
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 59150
diff changeset
   806
60249
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   807
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 59150
diff changeset
   808
(** diagnostics **)
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 59150
diff changeset
   809
60249
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   810
fun pretty_specification thy class =
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   811
  if is_class thy class then
59383
1434ef1e0ede clarified Class.pretty_specification: imitate input source;
wenzelm
parents: 59296
diff changeset
   812
    let
60249
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   813
      val class_ctxt = init class thy;
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   814
      val prt_class = Name_Space.pretty class_ctxt (Proof_Context.class_space class_ctxt);
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   815
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   816
      val super_classes = Sign.minimize_sort thy (Sign.super_classes thy class);
59383
1434ef1e0ede clarified Class.pretty_specification: imitate input source;
wenzelm
parents: 59296
diff changeset
   817
1434ef1e0ede clarified Class.pretty_specification: imitate input source;
wenzelm
parents: 59296
diff changeset
   818
      val fix_args =
60249
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   819
        #params (Axclass.get_info thy class)
59383
1434ef1e0ede clarified Class.pretty_specification: imitate input source;
wenzelm
parents: 59296
diff changeset
   820
        |> map (fn (c, T) => (Binding.name (Long_Name.base_name c), SOME T, NoSyn));
1434ef1e0ede clarified Class.pretty_specification: imitate input source;
wenzelm
parents: 59296
diff changeset
   821
      val fixes = if null fix_args then [] else [Element.Fixes fix_args];
60249
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   822
      val assumes = Locale.hyp_spec_of thy class;
59383
1434ef1e0ede clarified Class.pretty_specification: imitate input source;
wenzelm
parents: 59296
diff changeset
   823
1434ef1e0ede clarified Class.pretty_specification: imitate input source;
wenzelm
parents: 59296
diff changeset
   824
      val header =
60249
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   825
        [Pretty.keyword1 "class", Pretty.brk 1, prt_class class, Pretty.str " =", Pretty.brk 1] @
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   826
        Pretty.separate " +" (map prt_class super_classes) @
09377954133b tuned output to resemble input syntax more closely;
wenzelm
parents: 60246
diff changeset
   827
        (if null super_classes then [] else [Pretty.str " +"]);
59383
1434ef1e0ede clarified Class.pretty_specification: imitate input source;
wenzelm
parents: 59296
diff changeset
   828
      val body =
59385
4b26be511f72 more compact content for tighter graph layout;
wenzelm
parents: 59383
diff changeset
   829
        if null fixes andalso null assumes then []
4b26be511f72 more compact content for tighter graph layout;
wenzelm
parents: 59383
diff changeset
   830
        else
4b26be511f72 more compact content for tighter graph layout;
wenzelm
parents: 59383
diff changeset
   831
          maps (Element.pretty_ctxt_no_attribs class_ctxt) (fixes @ assumes)
4b26be511f72 more compact content for tighter graph layout;
wenzelm
parents: 59383
diff changeset
   832
          |> maps (fn prt => [Pretty.fbrk, prt]);
59423
3a0044e95eba backed out obsolete workaround from ef1edfb36af7
haftmann
parents: 59420
diff changeset
   833
    in if null body then [] else [Pretty.block (header @ body)] end
3a0044e95eba backed out obsolete workaround from ef1edfb36af7
haftmann
parents: 59420
diff changeset
   834
  else [];
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 59150
diff changeset
   835
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   836
end;