src/Pure/axclass.ML
author wenzelm
Fri, 02 Aug 2019 11:23:09 +0200
changeset 70456 c742527a25fe
parent 70455 f0d9f873f470
child 70469 1b8858f4c393
permissions -rw-r--r--
clarified modules: inference kernel maintains sort algebra within the logic;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/axclass.ML
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     2
    Author:     Markus Wenzel, TU Muenchen
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     3
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
     4
Type classes defined as predicates, associated with a record of
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
     5
parameters.  Proven class relations and type arities.
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     6
*)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     7
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51671
diff changeset
     8
signature AXCLASS =
3938
c20fbe3cb94f fixed types of add_XXX;
wenzelm
parents: 3854
diff changeset
     9
sig
36427
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    10
  type info = {def: thm, intro: thm, axioms: thm list, params: (string * typ) list}
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    11
  val get_info: theory -> class -> info
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    12
  val class_of_param: theory -> string -> class option
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    13
  val instance_name: string * class -> string
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    14
  val param_of_inst: theory -> string * string -> string
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    15
  val inst_of_param: theory -> string -> (string * string) option
63073
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
    16
  val unoverload: Proof.context -> thm -> thm
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
    17
  val overload: Proof.context -> thm -> thm
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
    18
  val unoverload_conv: Proof.context -> conv
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
    19
  val overload_conv: Proof.context -> conv
36427
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    20
  val lookup_inst_param: Consts.T -> ((string * string) * 'a) list -> string * typ -> 'a option
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    21
  val unoverload_const: theory -> string * typ -> string
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    22
  val cert_classrel: theory -> class * class -> class * class
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    23
  val read_classrel: theory -> xstring * xstring -> class * class
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    24
  val declare_overloaded: string * typ -> theory -> term * theory
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    25
  val define_overloaded: binding -> string * term -> theory -> thm * theory
37246
b3ff14122645 do not expose store flag of AxClass.add_*
haftmann
parents: 37232
diff changeset
    26
  val add_classrel: thm -> theory -> theory
b3ff14122645 do not expose store flag of AxClass.add_*
haftmann
parents: 37232
diff changeset
    27
  val add_arity: thm -> theory -> theory
51671
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
    28
  val prove_classrel: class * class -> (Proof.context -> tactic) -> theory -> theory
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
    29
  val prove_arity: string * sort list * sort -> (Proof.context -> tactic) -> theory -> theory
36427
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    30
  val define_class: binding * class list -> string list ->
85bc9b7c4d18 tuned signature;
wenzelm
parents: 36421
diff changeset
    31
    (Thm.binding * term list) list -> theory -> class * theory
56941
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
    32
  val classrel_axiomatization: (class * class) list -> theory -> theory
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
    33
  val arity_axiomatization: arity -> theory -> theory
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
    34
  val class_axiomatization: binding * class list -> theory -> theory
3938
c20fbe3cb94f fixed types of add_XXX;
wenzelm
parents: 3854
diff changeset
    35
end;
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    36
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51671
diff changeset
    37
structure Axclass: AXCLASS =
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    38
struct
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    39
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
    40
(** theory data **)
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    41
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    42
(* axclass info *)
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    43
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    44
type info =
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    45
 {def: thm,
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    46
  intro: thm,
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    47
  axioms: thm list,
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    48
  params: (string * typ) list};
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    49
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    50
fun make_axclass (def, intro, axioms, params): info =
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    51
  {def = def, intro = intro, axioms = axioms, params = params};
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    52
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    53
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
    54
(* class parameters (canonical order) *)
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    55
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
    56
type param = string * class;
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    57
42389
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
    58
fun add_param ctxt ((x, c): param) params =
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
    59
  (case AList.lookup (op =) params x of
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
    60
    NONE => (x, c) :: params
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42375
diff changeset
    61
  | SOME c' =>
42389
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
    62
      error ("Duplicate class parameter " ^ quote x ^ " for " ^ Syntax.string_of_sort ctxt [c] ^
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
    63
        (if c = c' then "" else " and " ^ Syntax.string_of_sort ctxt [c'])));
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    64
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
    65
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
    66
(* setup data *)
19392
a631cd2117a8 add_axclass(_i): return class name only;
wenzelm
parents: 19243
diff changeset
    67
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    68
datatype data = Data of
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    69
 {axclasses: info Symtab.table,
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    70
  params: param list,
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    71
    (*arity theorems with theory name*)
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    72
  inst_params:
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    73
    (string * thm) Symtab.table Symtab.table *
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    74
      (*constant name ~> type constructor ~> (constant name, equation)*)
50764
2bbc7ae80634 more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
wenzelm
parents: 50760
diff changeset
    75
    (string * string) Symtab.table (*constant name ~> (constant name, type constructor)*)};
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    76
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
    77
fun make_data (axclasses, params, inst_params) =
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
    78
  Data {axclasses = axclasses, params = params, inst_params = inst_params};
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    79
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61256
diff changeset
    80
structure Data = Theory_Data'
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22745
diff changeset
    81
(
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    82
  type T = data;
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
    83
  val empty = make_data (Symtab.empty, [], (Symtab.empty, Symtab.empty));
19574
7c761751e998 of_sort: explicit cache value;
wenzelm
parents: 19531
diff changeset
    84
  val extend = I;
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61256
diff changeset
    85
  fun merge old_thys
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
    86
      (Data {axclasses = axclasses1, params = params1, inst_params = inst_params1},
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
    87
       Data {axclasses = axclasses2, params = params2, inst_params = inst_params2}) =
36325
8715343af626 classrel and arity completion by krauss/schropp;
wenzelm
parents: 36106
diff changeset
    88
    let
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61256
diff changeset
    89
      val old_ctxt = Syntax.init_pretty_global (fst old_thys);
42389
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
    90
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    91
      val axclasses' = Symtab.merge (K true) (axclasses1, axclasses2);
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    92
      val params' =
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    93
        if null params1 then params2
42389
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
    94
        else
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61256
diff changeset
    95
          fold_rev (fn p => if member (op =) params1 p then I else add_param old_ctxt p)
42389
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
    96
            params2 params1;
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    97
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    98
      val inst_params' =
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    99
        (Symtab.join (K (Symtab.merge (K true))) (#1 inst_params1, #1 inst_params2),
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   100
          Symtab.merge (K true) (#2 inst_params1, #2 inst_params2));
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   101
    in make_data (axclasses', params', inst_params') end;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22745
diff changeset
   102
);
6379
2b17ff28a6cc theory data;
wenzelm
parents: 6084
diff changeset
   103
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   104
fun map_data f =
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   105
  Data.map (fn Data {axclasses, params, inst_params} =>
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   106
    make_data (f (axclasses, params, inst_params)));
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   107
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   108
fun map_axclasses f =
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   109
  map_data (fn (axclasses, params, inst_params) =>
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   110
    (f axclasses, params, inst_params));
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   111
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   112
fun map_params f =
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   113
  map_data (fn (axclasses, params, inst_params) =>
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   114
    (axclasses, f params, inst_params));
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   115
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   116
fun map_inst_params f =
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   117
  map_data (fn (axclasses, params, inst_params) =>
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   118
    (axclasses, params, f inst_params));
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   119
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   120
val rep_data = Data.get #> (fn Data args => args);
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   121
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   122
val axclasses_of = #axclasses o rep_data;
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   123
val params_of = #params o rep_data;
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   124
val inst_params_of = #inst_params o rep_data;
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   125
6379
2b17ff28a6cc theory data;
wenzelm
parents: 6084
diff changeset
   126
36346
5518de23101d removed unused AxClass.class_intros;
wenzelm
parents: 36330
diff changeset
   127
(* axclasses with parameters *)
19392
a631cd2117a8 add_axclass(_i): return class name only;
wenzelm
parents: 19243
diff changeset
   128
24929
408becab067e renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   129
fun get_info thy c =
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   130
  (case Symtab.lookup (axclasses_of thy) c of
67628
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   131
    SOME {def, intro, axioms, params} =>
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   132
      {def = Thm.transfer thy def,
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   133
       intro = Thm.transfer thy intro,
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   134
       axioms = map (Thm.transfer thy) axioms,
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   135
       params = params}
21919
b142e6506469 tuned msg;
wenzelm
parents: 21913
diff changeset
   136
  | NONE => error ("No such axclass: " ^ quote c));
6379
2b17ff28a6cc theory data;
wenzelm
parents: 6084
diff changeset
   137
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   138
fun all_params_of thy S =
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   139
  let val params = params_of thy;
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   140
  in fold (fn (x, c) => if Sign.subsort thy (S, [c]) then cons x else I) params [] end;
19460
2b37469d52ad get_info: removed 'super' field;
wenzelm
parents: 19418
diff changeset
   141
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   142
fun class_of_param thy = AList.lookup (op =) (params_of thy);
19460
2b37469d52ad get_info: removed 'super' field;
wenzelm
parents: 19418
diff changeset
   143
21919
b142e6506469 tuned msg;
wenzelm
parents: 21913
diff changeset
   144
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   145
(* maintain instance parameters *)
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   146
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   147
fun get_inst_param thy (c, tyco) =
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   148
  (case Symtab.lookup (the_default Symtab.empty (Symtab.lookup (#1 (inst_params_of thy)) c)) tyco of
67628
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   149
    SOME (a, th) => (a, Thm.transfer thy th)
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   150
  | NONE => error ("No instance parameter for constant " ^ quote c ^ " on type " ^ quote tyco));
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   151
67628
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   152
fun add_inst_param (c, tyco) (a, th) =
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   153
  (map_inst_params o apfst o Symtab.map_default (c, Symtab.empty))
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   154
    (Symtab.update_new (tyco, (a, Thm.trim_context th)))
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   155
  #> (map_inst_params o apsnd) (Symtab.update_new (a, (c, tyco)));
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   156
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   157
val inst_of_param = Symtab.lookup o #2 o inst_params_of;
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   158
val param_of_inst = #1 oo get_inst_param;
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   159
63073
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   160
fun inst_thms ctxt =
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   161
  Symtab.fold
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   162
    (Symtab.fold (cons o #2 o #2) o #2) (#1 (inst_params_of (Proof_Context.theory_of ctxt))) [];
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   163
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   164
fun get_inst_tyco consts = try (#1 o dest_Type o the_single o Consts.typargs consts);
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   165
63073
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   166
fun unoverload ctxt = rewrite_rule ctxt (inst_thms ctxt);
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   167
fun overload ctxt = rewrite_rule ctxt (map Thm.symmetric (inst_thms ctxt));
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   168
63073
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   169
fun unoverload_conv ctxt = Raw_Simplifier.rewrite ctxt true (inst_thms ctxt);
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   170
fun overload_conv ctxt = Raw_Simplifier.rewrite ctxt true (map Thm.symmetric (inst_thms ctxt));
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   171
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   172
fun lookup_inst_param consts params (c, T) =
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   173
  (case get_inst_tyco consts (c, T) of
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   174
    SOME tyco => AList.lookup (op =) params (c, tyco)
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   175
  | NONE => NONE);
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31210
diff changeset
   176
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   177
fun unoverload_const thy (c_ty as (c, _)) =
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   178
  if is_some (class_of_param thy c) then
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   179
    (case get_inst_tyco (Sign.consts_of thy) c_ty of
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   180
      SOME tyco => try (param_of_inst thy) (c, tyco) |> the_default c
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   181
    | NONE => c)
33969
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33315
diff changeset
   182
  else c;
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   183
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   184
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   185
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   186
(** instances **)
19418
03b01c9314fc reworded add_axclass(_i): canonical specification format,
wenzelm
parents: 19405
diff changeset
   187
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   188
val classrel_prefix = "classrel_";
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   189
val arity_prefix = "arity_";
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   190
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   191
fun instance_name (a, c) = Long_Name.base_name c ^ "_" ^ Long_Name.base_name a;
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   192
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   193
19418
03b01c9314fc reworded add_axclass(_i): canonical specification format,
wenzelm
parents: 19405
diff changeset
   194
(* class relations *)
03b01c9314fc reworded add_axclass(_i): canonical specification format,
wenzelm
parents: 19405
diff changeset
   195
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   196
fun cert_classrel thy raw_rel =
15876
a67343c6ab2a sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents: 15853
diff changeset
   197
  let
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26516
diff changeset
   198
    val string_of_sort = Syntax.string_of_sort_global thy;
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 56941
diff changeset
   199
    val (c1, c2) = apply2 (Sign.certify_class thy) raw_rel;
52788
da1fdbfebd39 type theory is purely value-oriented;
wenzelm
parents: 52230
diff changeset
   200
    val _ = Sign.primitive_classrel (c1, c2) thy;
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   201
    val _ =
19460
2b37469d52ad get_info: removed 'super' field;
wenzelm
parents: 19418
diff changeset
   202
      (case subtract (op =) (all_params_of thy [c1]) (all_params_of thy [c2]) of
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   203
        [] => ()
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26516
diff changeset
   204
      | xs => raise TYPE ("Class " ^ string_of_sort [c1] ^ " lacks parameter(s) " ^
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26516
diff changeset
   205
          commas_quote xs ^ " of " ^ string_of_sort [c2], [], []));
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   206
  in (c1, c2) end;
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   207
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   208
fun read_classrel thy raw_rel =
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 56941
diff changeset
   209
  cert_classrel thy (apply2 (Proof_Context.read_class (Proof_Context.init_global thy)) raw_rel)
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   210
    handle TYPE (msg, _, _) => error msg;
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   211
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   212
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   213
(* declaration and definition of instances of overloaded constants *)
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   214
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   215
fun inst_tyco_of thy (c, T) =
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   216
  (case get_inst_tyco (Sign.consts_of thy) (c, T) of
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   217
    SOME tyco => tyco
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   218
  | NONE => error ("Illegal type for instantiation of class parameter: " ^
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   219
      quote (c ^ " :: " ^ Syntax.string_of_typ_global thy T)));
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31210
diff changeset
   220
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   221
fun declare_overloaded (c, T) thy =
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   222
  let
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   223
    val class =
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   224
      (case class_of_param thy c of
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   225
        SOME class => class
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   226
      | NONE => error ("Not a class parameter: " ^ quote c));
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31210
diff changeset
   227
    val tyco = inst_tyco_of thy (c, T);
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   228
    val name_inst = instance_name (tyco, class) ^ "_inst";
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   229
    val c' = instance_name (tyco, c);
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   230
    val T' = Type.strip_sorts T;
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   231
  in
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   232
    thy
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   233
    |> Sign.qualified_path true (Binding.name name_inst)
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   234
    |> Sign.declare_const_global ((Binding.name c', T'), NoSyn)
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30280
diff changeset
   235
    |-> (fn const' as Const (c'', _) =>
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   236
      Thm.add_def_global false true
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30280
diff changeset
   237
        (Binding.name (Thm.def_name c'), Logic.mk_equals (Const (c, T'), const'))
36106
19deea200358 Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents: 35961
diff changeset
   238
      #>> apsnd Thm.varifyT_global
19deea200358 Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents: 35961
diff changeset
   239
      #-> (fn (_, thm) => add_inst_param (c, tyco) (c'', thm)
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59621
diff changeset
   240
        #> Global_Theory.add_thm ((Binding.concealed (Binding.name c'), thm), [])
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   241
        #> #2
36106
19deea200358 Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents: 35961
diff changeset
   242
        #> pair (Const (c, T))))
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   243
    ||> Sign.restore_naming thy
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   244
  end;
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   245
30519
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30469
diff changeset
   246
fun define_overloaded b (c, t) thy =
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   247
  let
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   248
    val T = Term.fastype_of t;
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31210
diff changeset
   249
    val tyco = inst_tyco_of thy (c, T);
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   250
    val (c', eq) = get_inst_param thy (c, tyco);
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   251
    val prop = Logic.mk_equals (Const (c', T), t);
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   252
    val b' = Thm.def_binding_optional (Binding.name (instance_name (tyco, c))) b;
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   253
  in
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   254
    thy
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   255
    |> Thm.add_def_global false false (b', prop)
38383
1ad96229b455 tuned whitespace
haftmann
parents: 37249
diff changeset
   256
    |>> (fn (_, thm) => Drule.transitive_thm OF [eq, thm])
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   257
  end;
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   258
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   259
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   260
(* primitive rules *)
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   261
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   262
fun add_classrel raw_th thy =
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   263
  let
31948
ea8c8bf47ce3 add_classrel/arity: strip_shyps of stored result;
wenzelm
parents: 31944
diff changeset
   264
    val th = Thm.strip_shyps (Thm.transfer thy raw_th);
ea8c8bf47ce3 add_classrel/arity: strip_shyps of stored result;
wenzelm
parents: 31944
diff changeset
   265
    val prop = Thm.plain_prop_of th;
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   266
    fun err () = raise THM ("add_classrel: malformed class relation", 0, [th]);
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   267
    val rel = Logic.dest_classrel prop handle TERM _ => err ();
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   268
    val (c1, c2) = cert_classrel thy rel handle TYPE _ => err ();
56144
27167f903c6d conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
wenzelm
parents: 55385
diff changeset
   269
    val binding =
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59621
diff changeset
   270
      Binding.concealed (Binding.name (prefix classrel_prefix (Logic.name_classrel (c1, c2))));
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   271
  in thy |> Global_Theory.store_thm (binding, th) |-> Thm.add_classrel end;
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   272
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   273
fun add_arity raw_th thy =
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   274
  let
31948
ea8c8bf47ce3 add_classrel/arity: strip_shyps of stored result;
wenzelm
parents: 31944
diff changeset
   275
    val th = Thm.strip_shyps (Thm.transfer thy raw_th);
ea8c8bf47ce3 add_classrel/arity: strip_shyps of stored result;
wenzelm
parents: 31944
diff changeset
   276
    val prop = Thm.plain_prop_of th;
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   277
    fun err () = raise THM ("add_arity: malformed type arity", 0, [th]);
37232
c10fb22a5e0c classrel and arity theorems are now stored under proper name in theory. add_arity and
berghofe
parents: 36935
diff changeset
   278
    val arity as (t, Ss, c) = Logic.dest_arity prop handle TERM _ => err ();
c10fb22a5e0c classrel and arity theorems are now stored under proper name in theory. add_arity and
berghofe
parents: 36935
diff changeset
   279
56144
27167f903c6d conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
wenzelm
parents: 55385
diff changeset
   280
    val binding =
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59621
diff changeset
   281
      Binding.concealed (Binding.name (prefix arity_prefix (Logic.name_arity arity)));
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   282
43329
84472e198515 tuned signature: Name.invent and Name.invent_names;
wenzelm
parents: 42389
diff changeset
   283
    val args = Name.invent_names Name.context Name.aT Ss;
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   284
    val missing_params =
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   285
      Sign.complete_sort thy [c]
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   286
      |> maps (these o Option.map #params o try (get_info thy))
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   287
      |> filter_out (fn (const, _) => can (get_inst_param thy) (const, t))
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   288
      |> (map o apsnd o map_atyps) (K (Type (t, map TFree args)));
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   289
  in
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   290
    thy
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   291
    |> Global_Theory.store_thm (binding, th)
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   292
    |-> Thm.add_arity
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   293
    |> fold (#2 oo declare_overloaded) missing_params
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   294
  end;
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   295
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   296
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   297
(* tactical proofs *)
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   298
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   299
fun prove_classrel raw_rel tac thy =
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   300
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 41228
diff changeset
   301
    val ctxt = Proof_Context.init_global thy;
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   302
    val (c1, c2) = cert_classrel thy raw_rel;
51671
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   303
    val th =
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   304
      Goal.prove ctxt [] [] (Logic.mk_classrel (c1, c2)) (fn {context, ...} => tac context)
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   305
        handle ERROR msg =>
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   306
          cat_error msg ("The error(s) above occurred while trying to prove class relation " ^
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   307
            quote (Syntax.string_of_classrel ctxt [c1, c2]));
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   308
  in
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   309
    thy |> add_classrel th
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   310
  end;
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   311
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   312
fun prove_arity raw_arity tac thy =
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   313
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 41228
diff changeset
   314
    val ctxt = Proof_Context.init_global thy;
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 41228
diff changeset
   315
    val arity = Proof_Context.cert_arity ctxt raw_arity;
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   316
    val props = Logic.mk_arities arity;
51671
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   317
    val ths =
59564
fdc03c8daacc Goal.prove_multi is superseded by the fully general Goal.prove_common;
wenzelm
parents: 59058
diff changeset
   318
      Goal.prove_common ctxt NONE [] [] props
51671
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   319
      (fn {context, ...} => Goal.precise_conjunction_tac (length props) 1 THEN tac context)
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   320
        handle ERROR msg =>
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   321
          cat_error msg ("The error(s) above occurred while trying to prove type arity " ^
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   322
            quote (Syntax.string_of_arity ctxt arity));
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   323
  in
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   324
    thy |> fold add_arity ths
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   325
  end;
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   326
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   327
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   328
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   329
(** class definitions **)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   330
23421
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   331
fun split_defined n eq =
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   332
  let
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   333
    val intro =
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   334
      (eq RS Drule.equal_elim_rule2)
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   335
      |> Conjunction.curry_balanced n
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   336
      |> n = 0 ? Thm.eq_assumption 1;
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   337
    val dests =
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   338
      if n = 0 then []
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   339
      else
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   340
        (eq RS Drule.equal_elim_rule1)
32765
3032c0308019 modernized Balanced_Tree;
wenzelm
parents: 32197
diff changeset
   341
        |> Balanced_Tree.dest (fn th =>
23421
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   342
          (th RS Conjunction.conjunctionD1, th RS Conjunction.conjunctionD2)) n;
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   343
  in (intro, dests) end;
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   344
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   345
fun define_class (bclass, raw_super) raw_params raw_specs thy =
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   346
  let
39133
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 38383
diff changeset
   347
    val ctxt = Syntax.init_pretty_global thy;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   348
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   349
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   350
    (* class *)
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   351
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30280
diff changeset
   352
    val bconst = Binding.map_name Logic.const_of_class bclass;
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30280
diff changeset
   353
    val class = Sign.full_name thy bclass;
24731
c25aa6ae64ec Sign.minimize/complete_sort;
wenzelm
parents: 24712
diff changeset
   354
    val super = Sign.minimize_sort thy (Sign.certify_sort thy raw_super);
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   355
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   356
    fun check_constraint (a, S) =
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   357
      if Sign.subsort thy (super, S) then ()
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   358
      else error ("Sort constraint of type variable " ^
39134
917b4b6ba3d2 turned show_sorts/show_types into proper configuration options;
wenzelm
parents: 39133
diff changeset
   359
        Syntax.string_of_typ (Config.put show_sorts true ctxt) (TFree (a, S)) ^
39133
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 38383
diff changeset
   360
        " needs to be weaker than " ^ Syntax.string_of_sort ctxt super);
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   361
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   362
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   363
    (* params *)
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   364
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   365
    val params = raw_params |> map (fn p =>
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   366
      let
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   367
        val T = Sign.the_const_type thy p;
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   368
        val _ =
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   369
          (case Term.add_tvarsT T [] of
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   370
            [((a, _), S)] => check_constraint (a, S)
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   371
          | _ => error ("Exactly one type variable expected in class parameter " ^ quote p));
70387
wenzelm
parents: 67629
diff changeset
   372
        val T' = Term.map_type_tvar (K (Term.aT [class])) T;
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   373
      in (p, T') end);
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   374
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   375
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   376
    (* axioms *)
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   377
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   378
    fun prep_axiom t =
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   379
      (case Term.add_tfrees t [] of
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   380
        [(a, S)] => check_constraint (a, S)
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   381
      | [] => ()
39133
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 38383
diff changeset
   382
      | _ => error ("Multiple type variables in class axiom:\n" ^ Syntax.string_of_term ctxt t);
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   383
      t
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   384
      |> Term.map_types (Term.map_atyps (fn TFree _ => Term.aT [] | U => U))
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   385
      |> Logic.close_form);
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   386
24681
wenzelm
parents: 24589
diff changeset
   387
    val axiomss = map (map (prep_axiom o Sign.cert_prop thy) o snd) raw_specs;
22745
17bc6af2011e moved axclass module closer to core system
haftmann
parents: 22691
diff changeset
   388
    val name_atts = map fst raw_specs;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   389
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   390
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   391
    (* definition *)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   392
35854
d452abc96459 Logic.mk_of_sort convenience;
wenzelm
parents: 35845
diff changeset
   393
    val conjs = Logic.mk_of_sort (Term.aT [], super) @ flat axiomss;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   394
    val class_eq =
31943
5e960a0780a2 renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents: 31904
diff changeset
   395
      Logic.mk_equals (Logic.mk_of_class (Term.aT [], class), Logic.mk_conjunction_balanced conjs);
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   396
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   397
    val ([def], def_thy) =
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   398
      thy
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   399
      |> Sign.primitive_class (bclass, super)
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39134
diff changeset
   400
      |> Global_Theory.add_defs false [((Thm.def_binding bconst, class_eq), [])];
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   401
    val (raw_intro, (raw_classrel, raw_axioms)) =
23421
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   402
      split_defined (length conjs) def ||> chop (length super);
19392
a631cd2117a8 add_axclass(_i): return class name only;
wenzelm
parents: 19243
diff changeset
   403
19418
03b01c9314fc reworded add_axclass(_i): canonical specification format,
wenzelm
parents: 19405
diff changeset
   404
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   405
    (* facts *)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   406
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   407
    val class_triv = Thm.class_triv def_thy class;
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   408
    val ([(_, [intro]), (_, classrel), (_, axioms)], facts_thy) =
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   409
      def_thy
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   410
      |> Sign.qualified_path true bconst
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39134
diff changeset
   411
      |> Global_Theory.note_thmss ""
36326
85d026788fce simplified some private bindings;
wenzelm
parents: 36325
diff changeset
   412
        [((Binding.name "intro", []), [([Drule.export_without_context raw_intro], [])]),
85d026788fce simplified some private bindings;
wenzelm
parents: 36325
diff changeset
   413
         ((Binding.name "super", []), [(map Drule.export_without_context raw_classrel, [])]),
85d026788fce simplified some private bindings;
wenzelm
parents: 36325
diff changeset
   414
         ((Binding.name "axioms", []),
35021
c839a4c670c6 renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents: 34259
diff changeset
   415
           [(map (fn th => Drule.export_without_context (class_triv RS th)) raw_axioms, [])])]
27691
ce171cbd4b93 PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents: 27683
diff changeset
   416
      ||> Sign.restore_naming def_thy;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   417
24847
bc15dcaed517 replaced AxClass.param_tyvarname by Name.aT;
wenzelm
parents: 24770
diff changeset
   418
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   419
    (* result *)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   420
67628
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   421
    val axclass =
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   422
      make_axclass
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   423
        (Thm.trim_context def, Thm.trim_context intro, map Thm.trim_context axioms, params);
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   424
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   425
    val result_thy =
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   426
      facts_thy
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   427
      |> fold (fn th => Thm.add_classrel (class_triv RS th)) classrel
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   428
      |> Sign.qualified_path false bconst
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39134
diff changeset
   429
      |> Global_Theory.note_thmss "" (name_atts ~~ map Thm.simple_fact (unflat axiomss axioms))
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39134
diff changeset
   430
      |> #2
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   431
      |> Sign.restore_naming facts_thy
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   432
      |> map_axclasses (Symtab.update (class, axclass))
42389
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
   433
      |> map_params (fold (fn (x, _) => add_param ctxt (x, class)) params);
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   434
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   435
  in (class, result_thy) end;
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   436
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   437
19531
wenzelm
parents: 19528
diff changeset
   438
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   439
(** axiomatizations **)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   440
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   441
local
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   442
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   443
(*old-style axioms*)
56941
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   444
fun add_axioms prep mk name add raw_args thy =
20628
b15b6f05d145 Logic.name_classrel/arities;
wenzelm
parents: 20548
diff changeset
   445
  let
b15b6f05d145 Logic.name_classrel/arities;
wenzelm
parents: 20548
diff changeset
   446
    val args = prep thy raw_args;
b15b6f05d145 Logic.name_classrel/arities;
wenzelm
parents: 20548
diff changeset
   447
    val specs = mk args;
b15b6f05d145 Logic.name_classrel/arities;
wenzelm
parents: 20548
diff changeset
   448
    val names = name args;
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29524
diff changeset
   449
  in
cb520b766e00 binding replaces bstring
haftmann
parents: 29524
diff changeset
   450
    thy
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   451
    |> fold_map Thm.add_axiom_global (map Binding.name names ~~ specs)
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   452
    |-> fold (add o Drule.export_without_context o snd)
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29524
diff changeset
   453
  end;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   454
61255
15865e0c5598 eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents: 61247
diff changeset
   455
fun class_const_dep c =
61256
9ce5de06cd3b tuned signature;
wenzelm
parents: 61255
diff changeset
   456
  ((Defs.Const, Logic.const_of_class c), [Term.aT []]);
61255
15865e0c5598 eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents: 61247
diff changeset
   457
55385
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   458
in
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   459
56941
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   460
val classrel_axiomatization =
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   461
  add_axioms (map o cert_classrel) (map Logic.mk_classrel)
55385
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   462
    (map (prefix classrel_prefix o Logic.name_classrel)) add_classrel;
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   463
56941
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   464
val arity_axiomatization =
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   465
  add_axioms (Proof_Context.cert_arity o Proof_Context.init_global) Logic.mk_arities
55385
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   466
    (map (prefix arity_prefix) o Logic.name_arities) add_arity;
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   467
56941
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   468
fun class_axiomatization (bclass, raw_super) thy =
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   469
  let
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30280
diff changeset
   470
    val class = Sign.full_name thy bclass;
55385
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   471
    val super = map (Sign.certify_class thy) raw_super |> Sign.minimize_sort thy;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   472
  in
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   473
    thy
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   474
    |> Sign.primitive_class (bclass, super)
56941
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   475
    |> classrel_axiomatization (map (fn c => (class, c)) super)
61255
15865e0c5598 eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents: 61247
diff changeset
   476
    |> Theory.add_deps_global "" (class_const_dep class) (map class_const_dep super)
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   477
  end;
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   478
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   479
end;
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   480
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   481
end;