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