src/Pure/axclass.ML
author wenzelm
Wed, 08 Mar 2023 22:22:35 +0100
changeset 77591 3f3dcf9f53f1
parent 74561 8e6c973003c8
child 77895 655bd3b0671b
permissions -rw-r--r--
more robust transactions;
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,
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
    71
    (*arity theorems with theory name*)
36329
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
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
    77
fun make_data (axclasses, params, inst_params) =
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
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;
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
    83
  val empty = make_data (Symtab.empty, [], (Symtab.empty, Symtab.empty));
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61256
diff changeset
    84
  fun merge old_thys
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
    85
      (Data {axclasses = axclasses1, params = params1, inst_params = inst_params1},
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
    86
       Data {axclasses = axclasses2, params = params2, inst_params = inst_params2}) =
36325
8715343af626 classrel and arity completion by krauss/schropp;
wenzelm
parents: 36106
diff changeset
    87
    let
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61256
diff changeset
    88
      val old_ctxt = Syntax.init_pretty_global (fst old_thys);
42389
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
    89
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    90
      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
    91
      val params' =
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    92
        if null params1 then params2
42389
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
    93
        else
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61256
diff changeset
    94
          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
    95
            params2 params1;
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
    96
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    97
      val inst_params' =
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
    98
        (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
    99
          Symtab.merge (K true) (#2 inst_params1, #2 inst_params2));
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
   100
    in make_data (axclasses', params', inst_params') end;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22745
diff changeset
   101
);
6379
2b17ff28a6cc theory data;
wenzelm
parents: 6084
diff changeset
   102
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   103
fun map_data f =
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
   104
  Data.map (fn Data {axclasses, params, inst_params} =>
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
   105
    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
   106
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   107
fun map_axclasses f =
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
   108
  map_data (fn (axclasses, params, inst_params) =>
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
   109
    (f axclasses, params, inst_params));
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   110
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   111
fun map_params f =
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
   112
  map_data (fn (axclasses, params, inst_params) =>
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
   113
    (axclasses, f params, inst_params));
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   114
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   115
fun map_inst_params f =
70475
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
   116
  map_data (fn (axclasses, params, inst_params) =>
98b6da301e13 backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents: 70469
diff changeset
   117
    (axclasses, params, f inst_params));
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   118
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   119
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
   120
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   121
val axclasses_of = #axclasses o rep_data;
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   122
val params_of = #params o rep_data;
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   123
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
   124
6379
2b17ff28a6cc theory data;
wenzelm
parents: 6084
diff changeset
   125
36346
5518de23101d removed unused AxClass.class_intros;
wenzelm
parents: 36330
diff changeset
   126
(* axclasses with parameters *)
19392
a631cd2117a8 add_axclass(_i): return class name only;
wenzelm
parents: 19243
diff changeset
   127
24929
408becab067e renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   128
fun get_info thy c =
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   129
  (case Symtab.lookup (axclasses_of thy) c of
67628
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   130
    SOME {def, intro, axioms, params} =>
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   131
      {def = Thm.transfer thy def,
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   132
       intro = Thm.transfer thy intro,
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   133
       axioms = map (Thm.transfer thy) axioms,
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   134
       params = params}
21919
b142e6506469 tuned msg;
wenzelm
parents: 21913
diff changeset
   135
  | NONE => error ("No such axclass: " ^ quote c));
6379
2b17ff28a6cc theory data;
wenzelm
parents: 6084
diff changeset
   136
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   137
fun all_params_of thy S =
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   138
  let val params = params_of thy;
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   139
  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
   140
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   141
fun class_of_param thy = AList.lookup (op =) (params_of thy);
19460
2b37469d52ad get_info: removed 'super' field;
wenzelm
parents: 19418
diff changeset
   142
21919
b142e6506469 tuned msg;
wenzelm
parents: 21913
diff changeset
   143
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   144
(* maintain instance parameters *)
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   145
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   146
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
   147
  (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
   148
    SOME (a, th) => (a, Thm.transfer thy th)
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   149
  | 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
   150
67628
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   151
fun add_inst_param (c, tyco) (a, th) =
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   152
  (map_inst_params o apfst o Symtab.map_default (c, Symtab.empty))
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   153
    (Symtab.update_new (tyco, (a, Thm.trim_context th)))
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   154
  #> (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
   155
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   156
val inst_of_param = Symtab.lookup o #2 o inst_params_of;
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   157
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
   158
63073
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   159
fun inst_thms ctxt =
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   160
  Symtab.fold
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   161
    (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
   162
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   163
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
   164
63073
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   165
fun unoverload ctxt = rewrite_rule ctxt (inst_thms ctxt);
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   166
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
   167
63073
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62897
diff changeset
   168
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
   169
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
   170
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   171
fun lookup_inst_param consts params (c, T) =
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   172
  (case get_inst_tyco consts (c, T) of
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   173
    SOME tyco => AList.lookup (op =) params (c, tyco)
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   174
  | NONE => NONE);
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31210
diff changeset
   175
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   176
fun unoverload_const thy (c_ty as (c, _)) =
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   177
  if is_some (class_of_param thy c) then
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   178
    (case get_inst_tyco (Sign.consts_of thy) c_ty of
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   179
      SOME tyco => try (param_of_inst thy) (c, tyco) |> the_default c
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   180
    | NONE => c)
33969
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33315
diff changeset
   181
  else c;
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   182
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   183
36327
c0415cb24a10 misc tuning and simplification;
wenzelm
parents: 36326
diff changeset
   184
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   185
(** instances **)
19418
03b01c9314fc reworded add_axclass(_i): canonical specification format,
wenzelm
parents: 19405
diff changeset
   186
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   187
val classrel_prefix = "classrel_";
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   188
val arity_prefix = "arity_";
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   189
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   190
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
   191
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   192
19418
03b01c9314fc reworded add_axclass(_i): canonical specification format,
wenzelm
parents: 19405
diff changeset
   193
(* class relations *)
03b01c9314fc reworded add_axclass(_i): canonical specification format,
wenzelm
parents: 19405
diff changeset
   194
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   195
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
   196
  let
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26516
diff changeset
   197
    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
   198
    val (c1, c2) = apply2 (Sign.certify_class thy) raw_rel;
52788
da1fdbfebd39 type theory is purely value-oriented;
wenzelm
parents: 52230
diff changeset
   199
    val _ = Sign.primitive_classrel (c1, c2) thy;
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   200
    val _ =
19460
2b37469d52ad get_info: removed 'super' field;
wenzelm
parents: 19418
diff changeset
   201
      (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
   202
        [] => ()
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26516
diff changeset
   203
      | 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
   204
          commas_quote xs ^ " of " ^ string_of_sort [c2], [], []));
19405
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   205
  in (c1, c2) end;
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   206
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   207
fun read_classrel thy raw_rel =
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 56941
diff changeset
   208
  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
   209
    handle TYPE (msg, _, _) => error msg;
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   210
a551256aba15 moved abstract syntax operations to logic.ML;
wenzelm
parents: 19398
diff changeset
   211
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   212
(* declaration and definition of instances of overloaded constants *)
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   213
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   214
fun inst_tyco_of thy (c, T) =
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   215
  (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
   216
    SOME tyco => tyco
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   217
  | NONE => error ("Illegal type for instantiation of class parameter: " ^
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   218
      quote (c ^ " :: " ^ Syntax.string_of_typ_global thy T)));
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31210
diff changeset
   219
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   220
fun declare_overloaded (c, T) thy =
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   221
  let
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   222
    val class =
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   223
      (case class_of_param thy c of
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   224
        SOME class => class
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   225
      | NONE => error ("Not a class parameter: " ^ quote c));
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31210
diff changeset
   226
    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
   227
    val name_inst = instance_name (tyco, class) ^ "_inst";
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   228
    val c' = instance_name (tyco, c);
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   229
    val T' = Type.strip_sorts T;
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   230
  in
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   231
    thy
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   232
    |> Sign.qualified_path true (Binding.name name_inst)
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   233
    |> 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
   234
    |-> (fn const' as Const (c'', _) =>
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   235
      Thm.add_def_global false true
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30280
diff changeset
   236
        (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
   237
      #>> apsnd Thm.varifyT_global
19deea200358 Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents: 35961
diff changeset
   238
      #-> (fn (_, thm) => add_inst_param (c, tyco) (c'', thm)
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59621
diff changeset
   239
        #> Global_Theory.add_thm ((Binding.concealed (Binding.name c'), thm), [])
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   240
        #> #2
36106
19deea200358 Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents: 35961
diff changeset
   241
        #> pair (Const (c, T))))
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   242
    ||> Sign.restore_naming thy
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   243
  end;
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   244
30519
c05c0199826f coherent binding policy with primitive target operations
haftmann
parents: 30469
diff changeset
   245
fun define_overloaded b (c, t) thy =
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   246
  let
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   247
    val T = Term.fastype_of t;
31249
d51d2a22a4f9 tuned class user space type system code
haftmann
parents: 31210
diff changeset
   248
    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
   249
    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
   250
    val prop = Logic.mk_equals (Const (c', T), t);
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   251
    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
   252
  in
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   253
    thy
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   254
    |> Thm.add_def_global false false (b', prop)
38383
1ad96229b455 tuned whitespace
haftmann
parents: 37249
diff changeset
   255
    |>> (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
   256
  end;
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   257
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25486
diff changeset
   258
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   259
(* primitive rules *)
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   260
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   261
fun add_classrel raw_th thy =
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   262
  let
31948
ea8c8bf47ce3 add_classrel/arity: strip_shyps of stored result;
wenzelm
parents: 31944
diff changeset
   263
    val th = Thm.strip_shyps (Thm.transfer thy raw_th);
ea8c8bf47ce3 add_classrel/arity: strip_shyps of stored result;
wenzelm
parents: 31944
diff changeset
   264
    val prop = Thm.plain_prop_of th;
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   265
    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
   266
    val rel = Logic.dest_classrel prop handle TERM _ => err ();
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   267
    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
   268
    val binding =
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59621
diff changeset
   269
      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
   270
  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
   271
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   272
fun add_arity raw_th thy =
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   273
  let
31948
ea8c8bf47ce3 add_classrel/arity: strip_shyps of stored result;
wenzelm
parents: 31944
diff changeset
   274
    val th = Thm.strip_shyps (Thm.transfer thy raw_th);
ea8c8bf47ce3 add_classrel/arity: strip_shyps of stored result;
wenzelm
parents: 31944
diff changeset
   275
    val prop = Thm.plain_prop_of th;
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   276
    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
   277
    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
   278
56144
27167f903c6d conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
wenzelm
parents: 55385
diff changeset
   279
    val binding =
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59621
diff changeset
   280
      Binding.concealed (Binding.name (prefix arity_prefix (Logic.name_arity arity)));
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   281
43329
84472e198515 tuned signature: Name.invent and Name.invent_names;
wenzelm
parents: 42389
diff changeset
   282
    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
   283
    val missing_params =
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   284
      Sign.complete_sort thy [c]
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   285
      |> 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
   286
      |> 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
   287
      |> (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
   288
  in
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   289
    thy
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   290
    |> Global_Theory.store_thm (binding, th)
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   291
    |-> Thm.add_arity
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   292
    |> fold (#2 oo declare_overloaded) missing_params
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   293
  end;
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   294
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
(* tactical proofs *)
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   297
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   298
fun prove_classrel raw_rel tac thy =
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   299
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 41228
diff changeset
   300
    val ctxt = Proof_Context.init_global thy;
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   301
    val (c1, c2) = cert_classrel thy raw_rel;
51671
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   302
    val th =
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   303
      Goal.prove ctxt [] [] (Logic.mk_classrel (c1, c2)) (fn {context, ...} => tac context)
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   304
        handle ERROR msg =>
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   305
          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
   306
            quote (Syntax.string_of_classrel ctxt [c1, c2]));
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   307
  in
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   308
    thy |> add_classrel th
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   309
  end;
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   310
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   311
fun prove_arity raw_arity tac thy =
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   312
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 41228
diff changeset
   313
    val ctxt = Proof_Context.init_global thy;
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 41228
diff changeset
   314
    val arity = Proof_Context.cert_arity ctxt raw_arity;
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   315
    val props = Logic.mk_arities arity;
51671
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   316
    val ths =
59564
fdc03c8daacc Goal.prove_multi is superseded by the fully general Goal.prove_common;
wenzelm
parents: 59058
diff changeset
   317
      Goal.prove_common ctxt NONE [] [] props
51671
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   318
      (fn {context, ...} => Goal.precise_conjunction_tac (length props) 1 THEN tac context)
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   319
        handle ERROR msg =>
0d142a78fb7c formal proof context for axclass proofs;
wenzelm
parents: 50769
diff changeset
   320
          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
   321
            quote (Syntax.string_of_arity ctxt arity));
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   322
  in
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   323
    thy |> fold add_arity ths
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   324
  end;
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   325
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30519
diff changeset
   326
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   327
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   328
(** class definitions **)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   329
23421
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   330
fun split_defined n eq =
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   331
  let
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   332
    val intro =
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   333
      (eq RS Drule.equal_elim_rule2)
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   334
      |> Conjunction.curry_balanced n
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   335
      |> n = 0 ? Thm.eq_assumption 1;
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   336
    val dests =
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   337
      if n = 0 then []
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   338
      else
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   339
        (eq RS Drule.equal_elim_rule1)
32765
3032c0308019 modernized Balanced_Tree;
wenzelm
parents: 32197
diff changeset
   340
        |> Balanced_Tree.dest (fn th =>
23421
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   341
          (th RS Conjunction.conjunctionD1, th RS Conjunction.conjunctionD2)) n;
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   342
  in (intro, dests) end;
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   343
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   344
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
   345
  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
   346
    val ctxt = Syntax.init_pretty_global thy;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   347
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   348
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   349
    (* class *)
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   350
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30280
diff changeset
   351
    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
   352
    val class = Sign.full_name thy bclass;
24731
c25aa6ae64ec Sign.minimize/complete_sort;
wenzelm
parents: 24712
diff changeset
   353
    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
   354
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   355
    fun check_constraint (a, S) =
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   356
      if Sign.subsort thy (super, S) then ()
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   357
      else error ("Sort constraint of type variable " ^
39134
917b4b6ba3d2 turned show_sorts/show_types into proper configuration options;
wenzelm
parents: 39133
diff changeset
   358
        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
   359
        " 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
   360
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
    (* params *)
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   363
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   364
    val params = raw_params |> map (fn p =>
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   365
      let
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   366
        val T = Sign.the_const_type thy p;
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   367
        val _ =
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   368
          (case Term.add_tvarsT T [] of
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   369
            [((a, _), S)] => check_constraint (a, S)
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   370
          | _ => error ("Exactly one type variable expected in class parameter " ^ quote p));
70387
wenzelm
parents: 67629
diff changeset
   371
        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
   372
      in (p, T') end);
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   373
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
    (* axioms *)
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   376
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   377
    fun prep_axiom t =
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   378
      (case Term.add_tfrees t [] of
24964
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   379
        [(a, S)] => check_constraint (a, S)
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   380
      | [] => ()
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
   381
      | _ => 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
   382
      t
526df61afe97 moved define_class_params to Isar/class.ML;
wenzelm
parents: 24929
diff changeset
   383
      |> 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
   384
      |> Logic.close_form);
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   385
24681
wenzelm
parents: 24589
diff changeset
   386
    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
   387
    val name_atts = map fst raw_specs;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   388
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
    (* definition *)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   391
35854
d452abc96459 Logic.mk_of_sort convenience;
wenzelm
parents: 35845
diff changeset
   392
    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
   393
    val class_eq =
31943
5e960a0780a2 renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents: 31904
diff changeset
   394
      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
   395
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   396
    val ([def], def_thy) =
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   397
      thy
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   398
      |> 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
   399
      |> 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
   400
    val (raw_intro, (raw_classrel, raw_axioms)) =
23421
c9007fc4a646 balanced conjunctions;
wenzelm
parents: 22846
diff changeset
   401
      split_defined (length conjs) def ||> chop (length super);
19392
a631cd2117a8 add_axclass(_i): return class name only;
wenzelm
parents: 19243
diff changeset
   402
19418
03b01c9314fc reworded add_axclass(_i): canonical specification format,
wenzelm
parents: 19405
diff changeset
   403
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   404
    (* facts *)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   405
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   406
    val class_triv = Thm.class_triv def_thy class;
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   407
    val ([(_, [intro]), (_, classrel), (_, axioms)], facts_thy) =
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   408
      def_thy
35201
c2ddb9395436 axclass: more precise treatment of naming vs. binding;
wenzelm
parents: 35021
diff changeset
   409
      |> 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
   410
      |> Global_Theory.note_thmss ""
36326
85d026788fce simplified some private bindings;
wenzelm
parents: 36325
diff changeset
   411
        [((Binding.name "intro", []), [([Drule.export_without_context raw_intro], [])]),
85d026788fce simplified some private bindings;
wenzelm
parents: 36325
diff changeset
   412
         ((Binding.name "super", []), [(map Drule.export_without_context raw_classrel, [])]),
85d026788fce simplified some private bindings;
wenzelm
parents: 36325
diff changeset
   413
         ((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
   414
           [(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
   415
      ||> Sign.restore_naming def_thy;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   416
24847
bc15dcaed517 replaced AxClass.param_tyvarname by Name.aT;
wenzelm
parents: 24770
diff changeset
   417
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   418
    (* result *)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   419
67628
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   420
    val axclass =
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   421
      make_axclass
bea024ea14ae trim context of persistent data;
wenzelm
parents: 63073
diff changeset
   422
        (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
   423
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   424
    val result_thy =
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   425
      facts_thy
70456
c742527a25fe clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents: 70455
diff changeset
   426
      |> 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
   427
      |> 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
   428
      |> 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
   429
      |> #2
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   430
      |> Sign.restore_naming facts_thy
36329
85004134055c more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents: 36328
diff changeset
   431
      |> map_axclasses (Symtab.update (class, axclass))
42389
b2c6033fc7e4 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
   432
      |> 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
   433
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   434
  in (class, result_thy) end;
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   435
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   436
19531
wenzelm
parents: 19528
diff changeset
   437
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   438
(** axiomatizations **)
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   439
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   440
local
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   441
36417
54bc1a44967d misc tuning and simplification;
wenzelm
parents: 36346
diff changeset
   442
(*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
   443
fun add_axioms prep mk name add raw_args thy =
20628
b15b6f05d145 Logic.name_classrel/arities;
wenzelm
parents: 20548
diff changeset
   444
  let
b15b6f05d145 Logic.name_classrel/arities;
wenzelm
parents: 20548
diff changeset
   445
    val args = prep thy raw_args;
b15b6f05d145 Logic.name_classrel/arities;
wenzelm
parents: 20548
diff changeset
   446
    val specs = mk args;
b15b6f05d145 Logic.name_classrel/arities;
wenzelm
parents: 20548
diff changeset
   447
    val names = name args;
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29524
diff changeset
   448
  in
cb520b766e00 binding replaces bstring
haftmann
parents: 29524
diff changeset
   449
    thy
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   450
    |> fold_map Thm.add_axiom_global (map Binding.name names ~~ specs)
37249
8365cbc31349 avoid store flag in add_* operations
haftmann
parents: 37246
diff changeset
   451
    |-> fold (add o Drule.export_without_context o snd)
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29524
diff changeset
   452
  end;
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   453
61255
15865e0c5598 eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents: 61247
diff changeset
   454
fun class_const_dep c =
61256
9ce5de06cd3b tuned signature;
wenzelm
parents: 61255
diff changeset
   455
  ((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
   456
55385
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   457
in
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   458
56941
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   459
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
   460
  add_axioms (map o cert_classrel) (map Logic.mk_classrel)
55385
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   461
    (map (prefix classrel_prefix o Logic.name_classrel)) add_classrel;
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   462
56941
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   463
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
   464
  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
   465
    (map (prefix arity_prefix) o Logic.name_arities) add_arity;
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   466
56941
952833323c99 tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents: 56144
diff changeset
   467
fun class_axiomatization (bclass, raw_super) thy =
19511
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   468
  let
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30280
diff changeset
   469
    val class = Sign.full_name thy bclass;
55385
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 54931
diff changeset
   470
    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
   471
  in
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   472
    thy
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   473
    |> 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
   474
    |> 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
   475
    |> 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
   476
  end;
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   477
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   478
end;
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   479
b4bd790f9373 renamed add_axclass(_i) to define_axclass(_i);
wenzelm
parents: 19503
diff changeset
   480
end;