src/Pure/Isar/class.ML
author haftmann
Tue, 06 Nov 2007 13:12:53 +0100
changeset 25311 aa750e3a581c
parent 25268 58146cb7bf44
child 25318 c8352b38d47d
permissions -rw-r--r--
Class.init now similiar to Locale.init
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     1
(*  Title:      Pure/Isar/class.ML
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     2
    ID:         $Id$
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     4
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     5
Type classes derived from primitive axclasses and locales.
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     6
*)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     7
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     8
signature CLASS =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
     9
sig
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    10
  val axclass_cmd: bstring * xstring list
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    11
    -> ((bstring * Attrib.src list) * string list) list
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    12
    -> theory -> class * theory
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    13
  val classrel_cmd: xstring * xstring -> theory -> Proof.state
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
    14
25002
haftmann
parents: 24981
diff changeset
    15
  val class: bstring -> class list -> Element.context_i Locale.element list
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    16
    -> string list -> theory -> string * Proof.context
25002
haftmann
parents: 24981
diff changeset
    17
  val class_cmd: bstring -> xstring list -> Element.context Locale.element list
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    18
    -> xstring list -> theory -> string * Proof.context
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    19
  val is_class: theory -> class -> bool
25002
haftmann
parents: 24981
diff changeset
    20
  val these_params: theory -> sort -> (string * (string * typ)) list
25311
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
    21
  val init: class -> theory -> Proof.context
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
    22
  val add_logical_const: string -> Markup.property list
25104
26b9a7db3386 tuned interfaces;
wenzelm
parents: 25103
diff changeset
    23
    -> (string * mixfix) * term -> theory -> theory
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
    24
  val add_syntactic_const: string -> Syntax.mode -> Markup.property list
25104
26b9a7db3386 tuned interfaces;
wenzelm
parents: 25103
diff changeset
    25
    -> (string * mixfix) * term -> theory -> theory
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
    26
  val refresh_syntax: class -> Proof.context -> Proof.context
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    27
  val intro_classes_tac: thm list -> tactic
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    28
  val default_intro_classes_tac: thm list -> tactic
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    29
  val prove_subclass: class * class -> thm list -> Proof.context
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    30
    -> theory -> theory
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    31
  val print_classes: theory -> unit
25210
5b5659801257 export class_prefix;
wenzelm
parents: 25209
diff changeset
    32
  val class_prefix: string -> string
25002
haftmann
parents: 24981
diff changeset
    33
  val uncheck: bool ref
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    34
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    35
  val instance_arity: (theory -> theory) -> arity list -> theory -> Proof.state
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    36
  val instance: arity list -> ((bstring * Attrib.src list) * term) list
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    37
    -> (thm list -> theory -> theory)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    38
    -> theory -> Proof.state
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    39
  val instance_cmd: (bstring * xstring list * xstring) list
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    40
    -> ((bstring * Attrib.src list) * xstring) list
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    41
    -> (thm list -> theory -> theory)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    42
    -> theory -> Proof.state
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    43
  val prove_instance: tactic -> arity list
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    44
    -> ((bstring * Attrib.src list) * term) list
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    45
    -> theory -> thm list * theory
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    46
  val unoverload: theory -> conv
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    47
  val overload: theory -> conv
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    48
  val unoverload_const: theory -> string * typ -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    49
  val inst_const: theory -> string * string -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    50
  val param_const: theory -> string -> (string * string) option
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    51
end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    52
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    53
structure Class : CLASS =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    54
struct
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    55
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    56
(** auxiliary **)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    57
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
    58
val classN = "class";
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
    59
val introN = "intro";
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
    60
25002
haftmann
parents: 24981
diff changeset
    61
fun prove_interpretation tac prfx_atts expr inst =
haftmann
parents: 24981
diff changeset
    62
  Locale.interpretation_i I prfx_atts expr inst
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    63
  #> Proof.global_terminal_proof
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    64
      (Method.Basic (K (Method.SIMPLE_METHOD tac), Position.none), NONE)
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    65
  #> ProofContext.theory_of;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    66
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    67
fun prove_interpretation_in tac after_qed (name, expr) =
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    68
  Locale.interpretation_in_locale
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    69
      (ProofContext.theory after_qed) (name, expr)
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    70
  #> Proof.global_terminal_proof
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    71
      (Method.Basic (K (Method.SIMPLE_METHOD tac), Position.none), NONE)
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    72
  #> ProofContext.theory_of;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    73
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
    74
fun OF_LAST thm1 thm2 = thm1 RSN (Thm.nprems_of thm2, thm2);
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    75
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    76
fun strip_all_ofclass thy sort =
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    77
  let
24847
bc15dcaed517 replaced AxClass.param_tyvarname by Name.aT;
wenzelm
parents: 24836
diff changeset
    78
    val typ = TVar ((Name.aT, 0), sort);
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    79
    fun prem_inclass t =
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    80
      case Logic.strip_imp_prems t
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    81
       of ofcls :: _ => try Logic.dest_inclass ofcls
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    82
        | [] => NONE;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    83
    fun strip_ofclass class thm =
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    84
      thm OF (fst o AxClass.of_sort thy (typ, [class])) AxClass.cache;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    85
    fun strip thm = case (prem_inclass o Thm.prop_of) thm
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    86
     of SOME (_, class) => thm |> strip_ofclass class |> strip
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    87
      | NONE => thm;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    88
  in strip end;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    89
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    90
fun get_remove_global_constraint c thy =
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    91
  let
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    92
    val ty = Sign.the_const_constraint thy c;
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    93
  in
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    94
    thy
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    95
    |> Sign.add_const_constraint (c, NONE)
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    96
    |> pair (c, Logic.unvarifyT ty)
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    97
  end;
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    98
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    99
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   100
(** axclass command **)
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   101
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   102
fun axclass_cmd (class, raw_superclasses) raw_specs thy =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   103
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   104
    val ctxt = ProofContext.init thy;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   105
    val superclasses = map (Sign.read_class thy) raw_superclasses;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   106
    val name_atts = map ((apsnd o map) (Attrib.attribute thy) o fst)
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   107
      raw_specs;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   108
    val axiomss = ProofContext.read_propp (ctxt, map (map (rpair []) o snd)
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   109
          raw_specs)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   110
      |> snd
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   111
      |> (map o map) fst;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   112
  in
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   113
    AxClass.define_class (class, superclasses) []
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   114
      (name_atts ~~ axiomss) thy
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   115
  end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   116
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   117
local
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   118
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   119
fun gen_instance mk_prop add_thm after_qed insts thy =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   120
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   121
    fun after_qed' results =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   122
      ProofContext.theory ((fold o fold) add_thm results #> after_qed);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   123
  in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   124
    thy
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   125
    |> ProofContext.init
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   126
    |> Proof.theorem_i NONE after_qed' ((map (fn t => [(t, [])])
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   127
        o maps (mk_prop thy)) insts)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   128
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   129
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   130
in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   131
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   132
val instance_arity =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   133
  gen_instance (Logic.mk_arities oo Sign.cert_arity) AxClass.add_arity;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   134
val classrel =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   135
  gen_instance (single oo (Logic.mk_classrel oo AxClass.cert_classrel))
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   136
    AxClass.add_classrel I o single;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   137
val classrel_cmd =
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   138
  gen_instance (single oo (Logic.mk_classrel oo AxClass.read_classrel))
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   139
    AxClass.add_classrel I o single;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   140
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   141
end; (*local*)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   142
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   143
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   144
(** explicit constants for overloaded definitions **)
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   145
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   146
structure InstData = TheoryDataFun
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   147
(
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   148
  type T = (string * thm) Symtab.table Symtab.table * (string * string) Symtab.table;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   149
    (*constant name ~> type constructor ~> (constant name, equation),
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   150
        constant name ~> (constant name, type constructor)*)
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   151
  val empty = (Symtab.empty, Symtab.empty);
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   152
  val copy = I;
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   153
  val extend = I;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   154
  fun merge _ ((taba1, tabb1), (taba2, tabb2)) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   155
    (Symtab.join (K (Symtab.merge (K true))) (taba1, taba2),
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   156
      Symtab.merge (K true) (tabb1, tabb2));
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   157
);
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   158
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   159
fun inst_thms thy = (Symtab.fold (Symtab.fold (cons o snd o snd) o snd) o fst)
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   160
    (InstData.get thy) [];
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   161
fun add_inst (c, tyco) inst = (InstData.map o apfst
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   162
      o Symtab.map_default (c, Symtab.empty)) (Symtab.update_new (tyco, inst))
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   163
  #> (InstData.map o apsnd) (Symtab.update_new (fst inst, (c, tyco)));
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   164
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   165
fun unoverload thy = MetaSimplifier.rewrite true (inst_thms thy);
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   166
fun overload thy = MetaSimplifier.rewrite true (map Thm.symmetric (inst_thms thy));
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   167
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   168
fun inst_const thy (c, tyco) =
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   169
  (fst o the o Symtab.lookup ((the o Symtab.lookup (fst (InstData.get thy))) c)) tyco;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   170
fun unoverload_const thy (c_ty as (c, _)) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   171
  case AxClass.class_of_param thy c
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   172
   of SOME class => (case Sign.const_typargs thy c_ty
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   173
       of [Type (tyco, _)] => (case Symtab.lookup
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   174
           ((the o Symtab.lookup (fst (InstData.get thy))) c) tyco
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   175
             of SOME (c, _) => c
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   176
              | NONE => c)
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   177
        | [_] => c)
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   178
    | NONE => c;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   179
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   180
val param_const = Symtab.lookup o snd o InstData.get;
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   181
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   182
fun add_inst_def (class, tyco) (c, ty) thy =
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   183
  let
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   184
    val tyco_base = Sign.base_name tyco;
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   185
    val name_inst = Sign.base_name class ^ "_" ^ tyco_base ^ "_inst";
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   186
    val c_inst_base = Sign.base_name c ^ "_" ^ tyco_base;
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   187
  in
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   188
    thy
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   189
    |> Sign.sticky_prefix name_inst
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   190
    |> Sign.declare_const [] (c_inst_base, ty, NoSyn)
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   191
    |-> (fn const as Const (c_inst, _) =>
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   192
      PureThy.add_defs_i false
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   193
        [((Thm.def_name c_inst_base, Logic.mk_equals (const, Const (c, ty))), [])]
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   194
      #-> (fn [thm] => add_inst (c, tyco) (c_inst, Thm.symmetric thm)))
24435
cabf8cd38258 introduces params_of_sort
haftmann
parents: 24423
diff changeset
   195
    |> Sign.restore_naming thy
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   196
  end;
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   197
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   198
fun add_inst_def' (class, tyco) (c, ty) thy =
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   199
  if case Symtab.lookup (fst (InstData.get thy)) c
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   200
   of NONE => true
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   201
    | SOME tab => is_none (Symtab.lookup tab tyco)
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   202
  then add_inst_def (class, tyco) (c, Logic.unvarifyT ty) thy
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   203
  else thy;
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   204
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   205
fun add_def ((class, tyco), ((name, prop), atts)) thy =
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   206
  let
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   207
    val ((lhs as Const (c, ty), args), rhs) =
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   208
      (apfst Term.strip_comb o Logic.dest_equals) prop;
24701
f8bfd592a6dc no cleverness for instance parameters
haftmann
parents: 24657
diff changeset
   209
    fun (*add_inst' def ([], (Const (c_inst, ty))) =
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   210
          if forall (fn TFree _ => true | _ => false) (Sign.const_typargs thy (c_inst, ty))
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   211
          then add_inst (c, tyco) (c_inst, def)
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   212
          else add_inst_def (class, tyco) (c, ty)
24701
f8bfd592a6dc no cleverness for instance parameters
haftmann
parents: 24657
diff changeset
   213
      |*) add_inst' _ t = add_inst_def (class, tyco) (c, ty);
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   214
  in
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   215
    thy
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   216
    |> PureThy.add_defs_i true [((name, prop), map (Attrib.attribute_i thy) atts)]
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   217
    |-> (fn [def] => add_inst' def (args, rhs) #> pair def)
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   218
  end;
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   219
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   220
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   221
(** instances with implicit parameter handling **)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   222
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   223
local
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   224
24707
dfeb98f84e93 Syntax.parse/check/read;
wenzelm
parents: 24701
diff changeset
   225
fun gen_read_def thy prep_att parse_prop ((raw_name, raw_atts), raw_t) =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   226
  let
24707
dfeb98f84e93 Syntax.parse/check/read;
wenzelm
parents: 24701
diff changeset
   227
    val ctxt = ProofContext.init thy;
dfeb98f84e93 Syntax.parse/check/read;
wenzelm
parents: 24701
diff changeset
   228
    val t = parse_prop ctxt raw_t |> Syntax.check_prop ctxt;
24981
4ec3f95190bf dest/cert_def: replaced Pretty.pp by explicit Proof.context;
wenzelm
parents: 24968
diff changeset
   229
    val ((c, ty), _) = Sign.cert_def ctxt t;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   230
    val atts = map (prep_att thy) raw_atts;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   231
    val insts = Consts.typargs (Sign.consts_of thy) (c, ty);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   232
    val name = case raw_name
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   233
     of "" => NONE
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   234
      | _ => SOME raw_name;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   235
  in (c, (insts, ((name, t), atts))) end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   236
24707
dfeb98f84e93 Syntax.parse/check/read;
wenzelm
parents: 24701
diff changeset
   237
fun read_def_cmd thy = gen_read_def thy Attrib.intern_src Syntax.parse_prop;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   238
fun read_def thy = gen_read_def thy (K I) (K I);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   239
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   240
fun gen_instance prep_arity read_def do_proof raw_arities raw_defs after_qed theory =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   241
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   242
    val arities = map (prep_arity theory) raw_arities;
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   243
    val _ = if null arities then error "At least one arity must be given" else ();
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   244
    val _ = case (duplicates (op =) o map #1) arities
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   245
     of [] => ()
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   246
      | dupl_tycos => error ("Type constructors occur more than once in arities: "
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   247
          ^ commas_quote dupl_tycos);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   248
    fun get_consts_class tyco ty class =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   249
      let
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   250
        val cs = (these o try (#params o AxClass.get_info theory)) class;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   251
        val subst_ty = map_type_tfree (K ty);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   252
      in
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   253
        map (fn (c, ty) => (c, ((class, tyco), subst_ty ty))) cs
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   254
      end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   255
    fun get_consts_sort (tyco, asorts, sort) =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   256
      let
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   257
        val ty = Type (tyco, map (fn (v, sort) => TVar ((v, 0), sort))
24847
bc15dcaed517 replaced AxClass.param_tyvarname by Name.aT;
wenzelm
parents: 24836
diff changeset
   258
          (Name.names Name.context Name.aT asorts))
24731
c25aa6ae64ec Sign.minimize/complete_sort;
wenzelm
parents: 24707
diff changeset
   259
      in maps (get_consts_class tyco ty) (Sign.complete_sort theory sort) end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   260
    val cs = maps get_consts_sort arities;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   261
    fun mk_typnorm thy (ty, ty_sc) =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   262
      case try (Sign.typ_match thy (Logic.varifyT ty_sc, ty)) Vartab.empty
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   263
       of SOME env => SOME (Logic.varifyT #> Envir.typ_subst_TVars env #> Logic.unvarifyT)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   264
        | NONE => NONE;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   265
    fun read_defs defs cs thy_read =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   266
      let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   267
        fun read raw_def cs =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   268
          let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   269
            val (c, (inst, ((name_opt, t), atts))) = read_def thy_read raw_def;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   270
            val ty = Consts.instance (Sign.consts_of thy_read) (c, inst);
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   271
            val ((class, tyco), ty') = case AList.lookup (op =) cs c
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   272
             of NONE => error ("Illegal definition for constant " ^ quote c)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   273
              | SOME class_ty => class_ty;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   274
            val name = case name_opt
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   275
             of NONE => Thm.def_name (Logic.name_arity (tyco, [], c))
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   276
              | SOME name => name;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   277
            val t' = case mk_typnorm thy_read (ty', ty)
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   278
             of NONE => error ("Illegal definition for constant " ^
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   279
                  quote (c ^ "::" ^ setmp show_sorts true
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   280
                    (Sign.string_of_typ thy_read) ty))
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   281
              | SOME norm => map_types norm t
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   282
          in (((class, tyco), ((name, t'), atts)), AList.delete (op =) c cs) end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   283
      in fold_map read defs cs end;
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   284
    val (defs, other_cs) = read_defs raw_defs cs
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   285
      (fold Sign.primitive_arity arities (Theory.copy theory));
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   286
    fun after_qed' cs defs =
24766
d0de4e48b526 Sign.add_const_constraint;
wenzelm
parents: 24748
diff changeset
   287
      fold Sign.add_const_constraint (map (apsnd SOME) cs)
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   288
      #> after_qed defs;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   289
  in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   290
    theory
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   291
    |> fold_map get_remove_global_constraint (map fst cs |> distinct (op =))
24304
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   292
    ||>> fold_map add_def defs
69d40a562ba4 explicit constants for overloaded definitions
haftmann
parents: 24276
diff changeset
   293
    ||> fold (fn (c, ((class, tyco), ty)) => add_inst_def' (class, tyco) (c, ty)) other_cs
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   294
    |-> (fn (cs, defs) => do_proof (after_qed' cs defs) arities defs)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   295
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   296
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   297
fun tactic_proof tac f arities defs =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   298
  fold (fn arity => AxClass.prove_arity arity tac) arities
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   299
  #> f
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
   300
  #> pair defs;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   301
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   302
in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   303
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   304
val instance = gen_instance Sign.cert_arity read_def
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   305
  (fn f => fn arities => fn defs => instance_arity f arities);
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   306
val instance_cmd = gen_instance Sign.read_arity read_def_cmd
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   307
  (fn f => fn arities => fn defs => instance_arity f arities);
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   308
fun prove_instance tac arities defs =
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   309
  gen_instance Sign.cert_arity read_def
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   310
    (tactic_proof tac) arities defs (K I);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   311
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   312
end; (*local*)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   313
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   314
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   315
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   316
(** class data **)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   317
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   318
datatype class_data = ClassData of {
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   319
  consts: (string * string) list
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   320
    (*locale parameter ~> constant name*),
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   321
  base_sort: sort,
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   322
  inst: term option list
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   323
    (*canonical interpretation*),
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   324
  morphism: morphism,
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   325
    (*partial morphism of canonical interpretation*)
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   326
  intro: thm,
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   327
  defs: thm list,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   328
  operations: (string * (term * (typ * int))) list,
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   329
    (*constant name ~> (locale term,
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   330
        (constant constraint, instantiaton index of class typ))*)
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   331
  unchecks: (term * term) list
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   332
};
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   333
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   334
fun rep_class_data (ClassData d) = d;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   335
fun mk_class_data ((consts, base_sort, inst, morphism, intro),
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   336
    (defs, (operations, unchecks))) =
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   337
  ClassData { consts = consts, base_sort = base_sort, inst = inst,
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   338
    morphism = morphism, intro = intro, defs = defs,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   339
    operations = operations, unchecks = unchecks };
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   340
fun map_class_data f (ClassData { consts, base_sort, inst, morphism, intro,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   341
    defs, operations, unchecks }) =
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   342
  mk_class_data (f ((consts, base_sort, inst, morphism, intro),
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   343
    (defs, (operations, unchecks))));
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   344
fun merge_class_data _ (ClassData { consts = consts,
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   345
    base_sort = base_sort, inst = inst, morphism = morphism, intro = intro,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   346
    defs = defs1, operations = operations1, unchecks = unchecks1 },
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   347
  ClassData { consts = _, base_sort = _, inst = _, morphism = _, intro = _,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   348
    defs = defs2, operations = operations2, unchecks = unchecks2 }) =
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   349
  mk_class_data ((consts, base_sort, inst, morphism, intro),
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   350
    (Thm.merge_thms (defs1, defs2),
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   351
      (AList.merge (op =) (K true) (operations1, operations2),
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   352
        Library.merge (op aconv o pairself snd) (unchecks1, unchecks2))));
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   353
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   354
structure ClassData = TheoryDataFun
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   355
(
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   356
  type T = class_data Graph.T
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   357
  val empty = Graph.empty;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   358
  val copy = I;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   359
  val extend = I;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   360
  fun merge _ = Graph.join merge_class_data;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   361
);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   362
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   363
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   364
(* queries *)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   365
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   366
val lookup_class_data = Option.map rep_class_data oo try o Graph.get_node o ClassData.get;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   367
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   368
fun the_class_data thy class = case lookup_class_data thy class
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   369
 of NONE => error ("Undeclared class " ^ quote class)
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   370
  | SOME data => data;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   371
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   372
val is_class = is_some oo lookup_class_data;
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   373
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   374
val ancestry = Graph.all_succs o ClassData.get;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   375
25002
haftmann
parents: 24981
diff changeset
   376
fun these_params thy =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   377
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   378
    fun params class =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   379
      let
24930
cc2e0e8c81af renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   380
        val const_typs = (#params o AxClass.get_info thy) class;
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   381
        val const_names = (#consts o the_class_data thy) class;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   382
      in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   383
        (map o apsnd) (fn c => (c, (the o AList.lookup (op =) const_typs) c)) const_names
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   384
      end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   385
  in maps params o ancestry thy end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   386
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   387
fun these_defs thy = maps (these o Option.map #defs o lookup_class_data thy) o ancestry thy;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   388
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   389
fun morphism thy = #morphism o the_class_data thy;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   390
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   391
fun these_intros thy =
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   392
  Graph.fold (fn (_, (data, _)) => insert Thm.eq_thm ((#intro o rep_class_data) data))
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   393
    (ClassData.get thy) [];
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   394
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   395
fun these_operations thy =
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   396
  maps (#operations o the_class_data thy) o ancestry thy;
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   397
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   398
fun these_unchecks thy =
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   399
  maps (#unchecks o the_class_data thy) o ancestry thy;
25002
haftmann
parents: 24981
diff changeset
   400
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   401
fun print_classes thy =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   402
  let
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24914
diff changeset
   403
    val ctxt = ProofContext.init thy;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   404
    val algebra = Sign.classes_of thy;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   405
    val arities =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   406
      Symtab.empty
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   407
      |> Symtab.fold (fn (tyco, arities) => fold (fn (class, _) =>
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   408
           Symtab.map_default (class, []) (insert (op =) tyco)) arities)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   409
             ((#arities o Sorts.rep_algebra) algebra);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   410
    val the_arities = these o Symtab.lookup arities;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   411
    fun mk_arity class tyco =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   412
      let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   413
        val Ss = Sorts.mg_domain algebra tyco [class];
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24914
diff changeset
   414
      in Syntax.pretty_arity ctxt (tyco, Ss, [class]) end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   415
    fun mk_param (c, ty) = Pretty.str (Sign.extern_const thy c ^ " :: "
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24914
diff changeset
   416
      ^ setmp show_sorts false (Syntax.string_of_typ ctxt o Type.strip_sorts) ty);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   417
    fun mk_entry class = (Pretty.block o Pretty.fbreaks o map_filter I) [
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   418
      (SOME o Pretty.str) ("class " ^ Sign.extern_class thy class ^ ":"),
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   419
      (SOME o Pretty.block) [Pretty.str "supersort: ",
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24914
diff changeset
   420
        (Syntax.pretty_sort ctxt o Sign.minimize_sort thy o Sign.super_classes thy) class],
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   421
      if is_class thy class then (SOME o Pretty.str)
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   422
        ("locale: " ^ Locale.extern thy class) else NONE,
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   423
      ((fn [] => NONE | ps => (SOME o Pretty.block o Pretty.fbreaks)
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   424
          (Pretty.str "parameters:" :: ps)) o map mk_param
24930
cc2e0e8c81af renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   425
        o these o Option.map #params o try (AxClass.get_info thy)) class,
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   426
      (SOME o Pretty.block o Pretty.breaks) [
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   427
        Pretty.str "instances:",
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   428
        Pretty.list "" "" (map (mk_arity class) (the_arities class))
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   429
      ]
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   430
    ]
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   431
  in
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   432
    (Pretty.writeln o Pretty.chunks o separate (Pretty.str "")
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   433
      o map mk_entry o Sorts.all_classes) algebra
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   434
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   435
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   436
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   437
(* updaters *)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   438
25163
haftmann
parents: 25146
diff changeset
   439
fun add_class_data ((class, superclasses), (cs, base_sort, inst, phi, intro)) thy =
25002
haftmann
parents: 24981
diff changeset
   440
  let
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   441
    val operations = map (fn (v_ty, (c, ty)) =>
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   442
      (c, ((Free v_ty, (Logic.varifyT ty, 0))))) cs;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   443
    val unchecks = map (fn ((v, ty'), (c, _)) =>
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   444
      (Free (v, Type.strip_sorts ty'), Const (c, Type.strip_sorts ty'))) cs;
25002
haftmann
parents: 24981
diff changeset
   445
    val cs = (map o pairself) fst cs;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   446
    val add_class = Graph.new_node (class,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   447
        mk_class_data ((cs, base_sort, map (SOME o Const) inst, phi, intro), ([], (operations, unchecks))))
25002
haftmann
parents: 24981
diff changeset
   448
      #> fold (curry Graph.add_edge class) superclasses;
haftmann
parents: 24981
diff changeset
   449
  in
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   450
    ClassData.map add_class thy
25002
haftmann
parents: 24981
diff changeset
   451
  end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   452
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   453
fun register_operation class (c, ((t, t_rev), some_def)) thy =
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   454
  let
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   455
    val ty = Sign.the_const_constraint thy c;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   456
    val typargs = Sign.const_typargs thy (c, ty);
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   457
    val typidx = find_index (fn TVar ((v, _), _) => Name.aT = v | _ => false) typargs;
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   458
    val prep_typ = map_atyps
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   459
      (fn TVar (vi as (v, _), _) => if Name.aT = v then TFree (v, []) else TVar (vi, []))
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   460
    val t_rev' = map_types prep_typ t_rev;
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   461
    val ty' = Term.fastype_of t_rev';
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   462
  in
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   463
    thy
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   464
    |> (ClassData.map o Graph.map_node class o map_class_data o apsnd)
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   465
      (fn (defs, (operations, unchecks)) =>
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   466
        (fold cons (the_list some_def) defs,
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   467
          ((c, (t, (ty, typidx))) :: operations, (t_rev', Const (c, ty')) :: unchecks)))
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   468
  end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   469
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   470
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   471
(** rule calculation, tactics and methods **)
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   472
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   473
val class_prefix = Logic.const_of_class o Sign.base_name;
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   474
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   475
fun calculate_morphism class cs =
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   476
  let
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   477
    val subst_typ = Term.map_type_tfree (fn var as (v, sort) =>
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   478
      if v = Name.aT then TVar ((v, 0), [class]) else TVar ((v, 0), sort));
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   479
    fun subst_aterm (t as Free (v, ty)) = (case AList.lookup (op =) cs v
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   480
         of SOME (c, _) => Const (c, ty)
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   481
          | NONE => t)
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   482
      | subst_aterm t = t;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   483
    val subst_term = map_aterms subst_aterm #> map_types subst_typ;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   484
  in
25209
haftmann
parents: 25195
diff changeset
   485
    Morphism.term_morphism subst_term
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   486
    $> Morphism.typ_morphism subst_typ
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   487
  end;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   488
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   489
fun class_intro thy class sups =
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   490
  let
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   491
    fun class_elim class =
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   492
      case (#axioms o AxClass.get_info thy) class
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   493
       of [thm] => SOME (Drule.unconstrainTs thm)
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   494
        | [] => NONE;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   495
    val pred_intro = case Locale.intros thy class
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   496
     of ([ax_intro], [intro]) => intro |> OF_LAST ax_intro |> SOME
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   497
      | ([intro], []) => SOME intro
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   498
      | ([], [intro]) => SOME intro
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   499
      | _ => NONE;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   500
    val pred_intro' = pred_intro
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   501
      |> Option.map (fn intro => intro OF map_filter class_elim sups);
24930
cc2e0e8c81af renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   502
    val class_intro = (#intro o AxClass.get_info thy) class;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   503
    val raw_intro = case pred_intro'
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   504
     of SOME pred_intro => class_intro |> OF_LAST pred_intro
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   505
      | NONE => class_intro;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   506
    val sort = Sign.super_classes thy class;
24847
bc15dcaed517 replaced AxClass.param_tyvarname by Name.aT;
wenzelm
parents: 24836
diff changeset
   507
    val typ = TVar ((Name.aT, 0), sort);
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   508
    val defs = these_defs thy sups;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   509
  in
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   510
    raw_intro
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   511
    |> Drule.instantiate' [SOME (Thm.ctyp_of thy typ)] []
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   512
    |> strip_all_ofclass thy sort
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   513
    |> Thm.strip_shyps
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   514
    |> MetaSimplifier.rewrite_rule defs
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   515
    |> Drule.unconstrainTs
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   516
  end;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   517
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   518
fun class_interpretation class facts defs thy =
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   519
  let
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   520
    val params = these_params thy [class];
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   521
    val inst = (#inst o the_class_data thy) class;
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   522
    val tac = ALLGOALS (ProofContext.fact_tac facts);
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   523
    val prfx = class_prefix class;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   524
  in
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   525
    thy
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   526
    |> fold_map (get_remove_global_constraint o fst o snd) params
25094
ba43514068fd Interpretation equations may have name and/or attribute.
ballarin
parents: 25083
diff changeset
   527
    ||> prove_interpretation tac ((false, prfx), []) (Locale.Locale class)
ba43514068fd Interpretation equations may have name and/or attribute.
ballarin
parents: 25083
diff changeset
   528
          (inst, map (fn def => (("", []), def)) defs)
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   529
    |-> (fn cs => fold (Sign.add_const_constraint o apsnd SOME) cs)
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   530
  end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   531
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   532
fun intro_classes_tac facts st =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   533
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   534
    val thy = Thm.theory_of_thm st;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   535
    val classes = Sign.all_classes thy;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   536
    val class_trivs = map (Thm.class_triv thy) classes;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   537
    val class_intros = these_intros thy;
24930
cc2e0e8c81af renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   538
    val axclass_intros = map_filter (try (#intro o AxClass.get_info thy)) classes;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   539
  in
25268
58146cb7bf44 more precise treatment of prove_subclass
haftmann
parents: 25239
diff changeset
   540
    Method.intros_tac (class_trivs @ class_intros @ axclass_intros) facts st
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   541
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   542
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   543
fun default_intro_classes_tac [] = intro_classes_tac []
24930
cc2e0e8c81af renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   544
  | default_intro_classes_tac _ = no_tac;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   545
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   546
fun default_tac rules ctxt facts =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   547
  HEADGOAL (Method.some_rule_tac rules ctxt facts) ORELSE
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   548
    default_intro_classes_tac facts;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   549
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   550
val _ = Context.add_setup (Method.add_methods
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   551
 [("intro_classes", Method.no_args (Method.METHOD intro_classes_tac),
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   552
    "back-chain introduction rules of classes"),
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   553
  ("default", Method.thms_ctxt_args (Method.METHOD oo default_tac),
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   554
    "apply some intro/elim rule")]);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   555
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   556
fun subclass_rule thy (sub, sup) =
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   557
  let
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   558
    val ctxt = Locale.init sub thy;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   559
    val ctxt_thy = ProofContext.init thy;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   560
    val props =
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   561
      Locale.global_asms_of thy sup
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   562
      |> maps snd
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   563
      |> map (ObjectLogic.ensure_propT thy);
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   564
    fun tac { prems, context } =
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   565
      Locale.intro_locales_tac true context prems
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   566
        ORELSE ALLGOALS assume_tac;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   567
  in
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   568
    Goal.prove_multi ctxt [] [] props tac
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   569
    |> map (Assumption.export false ctxt ctxt_thy)
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   570
    |> Variable.export ctxt ctxt_thy
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   571
  end;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   572
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   573
fun prove_single_subclass (sub, sup) thms ctxt thy =
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   574
  let
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   575
    val ctxt_thy = ProofContext.init thy;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   576
    val subclass_rule = Conjunction.intr_balanced thms
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   577
      |> Assumption.export false ctxt ctxt_thy
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   578
      |> singleton (Variable.export ctxt ctxt_thy);
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   579
    val sub_inst = Thm.ctyp_of thy (TVar ((Name.aT, 0), [sub]));
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   580
    val sub_ax = #axioms (AxClass.get_info thy sub);
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   581
    val classrel =
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   582
      #intro (AxClass.get_info thy sup)
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   583
      |> Drule.instantiate' [SOME sub_inst] []
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   584
      |> OF_LAST (subclass_rule OF sub_ax)
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   585
      |> strip_all_ofclass thy (Sign.super_classes thy sup)
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   586
      |> Thm.strip_shyps
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   587
  in
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   588
    thy
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   589
    |> AxClass.add_classrel classrel
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   590
    |> prove_interpretation_in (ALLGOALS (ProofContext.fact_tac thms))
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   591
         I (sub, Locale.Locale sup)
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   592
    |> ClassData.map (Graph.add_edge (sub, sup))
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   593
  end;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   594
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   595
fun prove_subclass (sub, sup) thms ctxt thy =
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   596
  let
25268
58146cb7bf44 more precise treatment of prove_subclass
haftmann
parents: 25239
diff changeset
   597
    val classes = ClassData.get thy;
58146cb7bf44 more precise treatment of prove_subclass
haftmann
parents: 25239
diff changeset
   598
    val is_sup = not o null o curry (Graph.irreducible_paths classes) sub;
58146cb7bf44 more precise treatment of prove_subclass
haftmann
parents: 25239
diff changeset
   599
    val supclasses = Graph.all_succs classes [sup] |> filter_out is_sup;
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   600
    fun transform sup' = subclass_rule thy (sup, sup') |> map (fn thm => thm OF thms);
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   601
  in
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   602
    thy
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   603
    |> fold_rev (fn sup' => prove_single_subclass (sub, sup')
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   604
         (transform sup') ctxt) supclasses
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   605
 end;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   606
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   607
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   608
(** classes and class target **)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   609
25002
haftmann
parents: 24981
diff changeset
   610
(* class context syntax *)
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   611
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   612
structure ClassSyntax = ProofDataFun(
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   613
  type T = {
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   614
    constraints: (string * typ) list,
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   615
    base_sort: sort,
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   616
    local_operation: string * typ -> (typ * term) option,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   617
    unchecks: (term * term) list,
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   618
    passed: bool
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   619
  } option;
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   620
  fun init _ = NONE;
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   621
);
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   622
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   623
fun synchronize_syntax thy sups base_sort ctxt =
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   624
  let
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   625
    (* constraints *)
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   626
    val operations = these_operations thy sups;
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   627
    fun local_constraint (c, (_, (ty, _))) =
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   628
      let
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   629
        val ty' = ty
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   630
          |> map_atyps (fn ty as TVar ((v, 0), _) =>
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   631
               if v = Name.aT then TVar ((v, 0), base_sort) else ty)
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   632
          |> SOME;
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   633
      in (c, ty') end
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   634
    val constraints = (map o apsnd) (fst o snd) operations;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   635
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   636
    (* check phase *)
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   637
    val typargs = Consts.typargs (ProofContext.consts_of ctxt);
25209
haftmann
parents: 25195
diff changeset
   638
    fun check_const (c, ty) (t, (_, typidx)) = ((nth (typargs (c, ty)) typidx), t);
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   639
    fun local_operation (c_ty as (c, _)) = AList.lookup (op =) operations c
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   640
      |> Option.map (check_const c_ty);
25002
haftmann
parents: 24981
diff changeset
   641
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   642
    (* uncheck phase *)
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   643
    val basify =
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   644
      map_atyps (fn ty as TFree (v, _) => if Name.aT = v then TFree (v, base_sort)
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   645
        else ty | ty => ty);
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   646
    val unchecks = these_unchecks thy sups
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   647
      |> (map o pairself o map_types) basify;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   648
  in
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   649
    ctxt
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   650
    |> fold (ProofContext.add_const_constraint o local_constraint) operations
25209
haftmann
parents: 25195
diff changeset
   651
    |> ClassSyntax.put (SOME {
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   652
        constraints = constraints,
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   653
        base_sort = base_sort,
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   654
        local_operation = local_operation,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   655
        unchecks = unchecks,
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   656
        passed = false
25209
haftmann
parents: 25195
diff changeset
   657
      })
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   658
  end;
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   659
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   660
fun refresh_syntax class ctxt =
25002
haftmann
parents: 24981
diff changeset
   661
  let
haftmann
parents: 24981
diff changeset
   662
    val thy = ProofContext.theory_of ctxt;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   663
    val base_sort = (#base_sort o the_class_data thy) class;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   664
  in synchronize_syntax thy [class] base_sort ctxt end;
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   665
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   666
val mark_passed = (ClassSyntax.map o Option.map)
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   667
  (fn { constraints, base_sort, local_operation, unchecks, passed } =>
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   668
    { constraints = constraints, base_sort = base_sort,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   669
      local_operation = local_operation, unchecks = unchecks, passed = true });
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   670
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   671
fun sort_term_check ts ctxt =
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   672
  let
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   673
    val { constraints, base_sort, local_operation, passed, ... } =
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   674
      the (ClassSyntax.get ctxt);
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   675
    fun check_typ (c, ty) (TFree (v, _), t) = if v = Name.aT
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   676
          then apfst (AList.update (op =) ((c, ty), t)) else I
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   677
      | check_typ (c, ty) (TVar (vi, _), t) = if TypeInfer.is_param vi
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   678
          then apfst (AList.update (op =) ((c, ty), t))
24901
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24847
diff changeset
   679
            #> apsnd (insert (op =) vi) else I
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   680
      | check_typ _ _ = I;
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   681
    fun add_const (Const c_ty) = Option.map (check_typ c_ty) (local_operation c_ty)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   682
          |> the_default I
24901
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24847
diff changeset
   683
      | add_const _ = I;
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24847
diff changeset
   684
    val (cs, typarams) = (fold o fold_aterms) add_const ts ([], []);
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   685
    val subst_typ = map_type_tvar (fn var as (vi, _) =>
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   686
      if member (op =) typarams vi then TFree (Name.aT, base_sort) else TVar var);
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   687
    val subst_term = map_aterms
24901
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24847
diff changeset
   688
        (fn t as Const (c, ty) => the_default t (AList.lookup (op =) cs (c, ty)) | t => t)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   689
          #> map_types subst_typ;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   690
    val ts' = map subst_term ts;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   691
  in if eq_list (op aconv) (ts, ts') andalso passed then NONE
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   692
  else
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   693
    ctxt
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   694
    |> fold (ProofContext.add_const_constraint o apsnd SOME) constraints
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   695
    |> mark_passed
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   696
    |> pair ts'
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   697
    |> SOME
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   698
  end;
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   699
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   700
val uncheck = ref true;
25002
haftmann
parents: 24981
diff changeset
   701
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   702
fun sort_term_uncheck ts ctxt =
25002
haftmann
parents: 24981
diff changeset
   703
  let
haftmann
parents: 24981
diff changeset
   704
    val thy = ProofContext.theory_of ctxt;
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   705
    val unchecks = (#unchecks o the o ClassSyntax.get) ctxt;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   706
    val ts' = if ! uncheck
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   707
      then map (Pattern.rewrite_term thy unchecks []) ts else ts;
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25038
diff changeset
   708
  in if eq_list (op aconv) (ts, ts') then NONE else SOME (ts', ctxt) end;
25002
haftmann
parents: 24981
diff changeset
   709
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   710
fun init_ctxt thy sups base_sort ctxt =
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   711
  ctxt
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   712
  |> Variable.declare_term
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   713
      (Logic.mk_type (TFree (Name.aT, base_sort)))
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   714
  |> synchronize_syntax thy sups base_sort
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   715
  |> Context.proof_map (
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   716
      Syntax.add_term_check 0 "class" sort_term_check
25103
haftmann
parents: 25096
diff changeset
   717
      #> Syntax.add_term_uncheck 0 "class" sort_term_uncheck)
24901
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24847
diff changeset
   718
25311
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   719
fun init class thy =
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   720
  thy
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   721
  |> Locale.init class
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   722
  |> init_ctxt thy [class] ((#base_sort o the_class_data thy) class);
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   723
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   724
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   725
(* class definition *)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   726
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   727
local
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   728
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   729
fun gen_class_spec prep_class prep_expr process_expr thy raw_supclasses raw_includes_elems =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   730
  let
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   731
    val supclasses = map (prep_class thy) raw_supclasses;
25209
haftmann
parents: 25195
diff changeset
   732
    val sups = filter (is_class thy) supclasses;
haftmann
parents: 25195
diff changeset
   733
    fun the_base_sort class = lookup_class_data thy class
haftmann
parents: 25195
diff changeset
   734
      |> Option.map #base_sort
haftmann
parents: 25195
diff changeset
   735
      |> the_default [class];
haftmann
parents: 25195
diff changeset
   736
    val base_sort = Sign.minimize_sort thy (maps the_base_sort supclasses);
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   737
    val supsort = Sign.minimize_sort thy supclasses;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   738
    val suplocales = map Locale.Locale sups;
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   739
    val (raw_elems, includes) = fold_rev (fn Locale.Elem e => apfst (cons e)
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   740
      | Locale.Expr i => apsnd (cons (prep_expr thy i))) raw_includes_elems ([], []);
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   741
    val supexpr = Locale.Merge suplocales;
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   742
    val supparams = (map fst o Locale.parameters_of_expr thy) supexpr;
25002
haftmann
parents: 24981
diff changeset
   743
    val supconsts = AList.make (the o AList.lookup (op =) (these_params thy sups))
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   744
      (map fst supparams);
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   745
    val mergeexpr = Locale.Merge (suplocales @ includes);
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   746
    val constrain = Element.Constrains ((map o apsnd o map_atyps)
24847
bc15dcaed517 replaced AxClass.param_tyvarname by Name.aT;
wenzelm
parents: 24836
diff changeset
   747
      (fn TFree (_, sort) => TFree (Name.aT, sort)) supparams);
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   748
  in
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   749
    ProofContext.init thy
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   750
    |> Locale.cert_expr supexpr [constrain]
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   751
    |> snd
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   752
    |> init_ctxt thy sups base_sort
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   753
    |> process_expr Locale.empty raw_elems
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   754
    |> fst
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   755
    |> (fn elems => ((((sups, supconsts), (supsort, base_sort, mergeexpr)),
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   756
          (*FIXME*) if null includes then constrain :: elems else elems)))
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   757
  end;
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   758
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   759
val read_class_spec = gen_class_spec Sign.intern_class Locale.intern_expr Locale.read_expr;
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   760
val check_class_spec = gen_class_spec (K I) (K I) Locale.cert_expr;
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   761
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   762
fun define_class_params (name, raw_superclasses) raw_consts raw_dep_axioms other_consts thy =
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   763
  let
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   764
    val superclasses = map (Sign.certify_class thy) raw_superclasses;
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   765
    val consts = (map o apfst o apsnd) (Sign.certify_typ thy) raw_consts;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   766
    fun add_const ((c, ty), syn) =
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   767
      Sign.declare_const [] (c, Type.strip_sorts ty, syn) #>> Term.dest_Const;
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   768
    fun mk_axioms cs thy =
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   769
      raw_dep_axioms thy cs
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   770
      |> (map o apsnd o map) (Sign.cert_prop thy)
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   771
      |> rpair thy;
25002
haftmann
parents: 24981
diff changeset
   772
    fun constrain_typs class = (map o apsnd o Term.map_type_tfree)
haftmann
parents: 24981
diff changeset
   773
      (fn (v, _) => TFree (v, [class]))
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   774
  in
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   775
    thy
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   776
    |> Sign.add_path (Logic.const_of_class name)
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   777
    |> fold_map add_const consts
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   778
    ||> Sign.restore_naming thy
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   779
    |-> (fn cs => mk_axioms cs
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   780
    #-> (fn axioms_prop => AxClass.define_class (name, superclasses)
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   781
           (map fst cs @ other_consts) axioms_prop
25002
haftmann
parents: 24981
diff changeset
   782
    #-> (fn class => `(fn _ => constrain_typs class cs)
haftmann
parents: 24981
diff changeset
   783
    #-> (fn cs' => `(fn thy => AxClass.get_info thy class)
haftmann
parents: 24981
diff changeset
   784
    #-> (fn {axioms, ...} => fold (Sign.add_const_constraint o apsnd SOME) cs'
haftmann
parents: 24981
diff changeset
   785
    #> pair (class, (cs', axioms)))))))
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   786
  end;
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   787
25002
haftmann
parents: 24981
diff changeset
   788
fun gen_class prep_spec prep_param bname
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   789
    raw_supclasses raw_includes_elems raw_other_consts thy =
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   790
  let
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   791
    val class = Sign.full_name thy bname;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   792
    val (((sups, supconsts), (supsort, base_sort, mergeexpr)), elems_syn) =
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   793
      prep_spec thy raw_supclasses raw_includes_elems;
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   794
    val other_consts = map (tap (Sign.the_const_type thy) o prep_param thy) raw_other_consts;
25163
haftmann
parents: 25146
diff changeset
   795
    fun mk_inst class cs =
haftmann
parents: 25146
diff changeset
   796
      (map o apsnd o Term.map_type_tfree) (fn (v, _) => TFree (v, [class])) cs;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   797
    fun fork_syntax (Element.Fixes xs) =
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   798
          fold_map (fn (c, ty, syn) => cons (c, syn) #> pair (c, ty, NoSyn)) xs
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   799
          #>> Element.Fixes
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   800
      | fork_syntax x = pair x;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   801
    val (elems, global_syn) = fold_map fork_syntax elems_syn [];
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   802
    fun globalize (c, ty) = 
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   803
      ((c, Term.map_type_tfree (K (TFree (Name.aT, base_sort))) ty),
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   804
        (the_default NoSyn o AList.lookup (op =) global_syn) c);
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   805
    fun extract_params thy =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   806
      let
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   807
        val params = map fst (Locale.parameters_of thy class);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   808
      in
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   809
        (params, (map globalize o snd o chop (length supconsts)) params)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   810
      end;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   811
    fun extract_assumes params thy cs =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   812
      let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   813
        val consts = supconsts @ (map (fst o fst) params ~~ cs);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   814
        fun subst (Free (c, ty)) =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   815
              Const ((fst o the o AList.lookup (op =) consts) c, ty)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   816
          | subst t = t;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   817
        fun prep_asm ((name, atts), ts) =
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   818
          ((Sign.base_name name, map (Attrib.attribute_i thy) atts),
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   819
            (map o map_aterms) subst ts);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   820
      in
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   821
        Locale.global_asms_of thy class
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   822
        |> map prep_asm
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   823
      end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   824
  in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   825
    thy
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   826
    |> Locale.add_locale_i (SOME "") bname mergeexpr elems
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   827
    |> snd
25311
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   828
    |> ProofContext.theory_of
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   829
    |> `extract_params
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   830
    |-> (fn (all_params, params) =>
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   831
        define_class_params (bname, supsort) params
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   832
          (extract_assumes params) other_consts
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   833
      #-> (fn (_, (consts, axioms)) =>
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   834
        `(fn thy => class_intro thy class sups)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   835
      #-> (fn class_intro =>
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   836
        PureThy.note_thmss_qualified "" (NameSpace.append class classN)
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   837
          [((introN, []), [([class_intro], [])])]
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   838
      #-> (fn [(_, [class_intro])] =>
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   839
        add_class_data ((class, sups),
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   840
          (map fst params ~~ consts, base_sort,
25163
haftmann
parents: 25146
diff changeset
   841
            mk_inst class (map snd supconsts @ consts),
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   842
              calculate_morphism class (supconsts @ (map (fst o fst) params ~~ consts)), class_intro))
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   843
      #> class_interpretation class axioms []
25311
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   844
      ))))
25268
58146cb7bf44 more precise treatment of prove_subclass
haftmann
parents: 25239
diff changeset
   845
    |> init class
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   846
    |> pair class
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   847
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   848
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   849
in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   850
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   851
val class_cmd = gen_class read_class_spec ((#1 o Term.dest_Const) oo Sign.read_const);
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   852
val class = gen_class check_class_spec (K I);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   853
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   854
end; (*local*)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   855
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   856
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   857
(* definition in class target *)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   858
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   859
fun add_logical_const class pos ((c, mx), dict) thy =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   860
  let
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   861
    val prfx = class_prefix class;
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   862
    val thy' = thy |> Sign.add_path prfx;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   863
    val phi = morphism thy' class;
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   864
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   865
    val c' = Sign.full_name thy' c;
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   866
    val dict' = Morphism.term phi dict;
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   867
    val dict_def = map_types Logic.unvarifyT dict';
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   868
    val ty' = Term.fastype_of dict_def;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   869
    val ty'' = Type.strip_sorts ty';
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   870
    val def_eq = Logic.mk_equals (Const (c', ty'), dict_def);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   871
  in
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   872
    thy'
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   873
    |> Sign.declare_const pos (c, ty'', mx) |> snd
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   874
    |> Thm.add_def false (c, def_eq)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   875
    |>> Thm.symmetric
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   876
    |-> (fn def => class_interpretation class [def] [Thm.prop_of def]
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   877
          #> register_operation class (c', ((dict, dict'), SOME (Thm.varifyT def))))
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   878
    |> Sign.restore_naming thy
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   879
    |> Sign.add_const_constraint (c', SOME ty')
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   880
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   881
24901
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24847
diff changeset
   882
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24847
diff changeset
   883
(* abbreviation in class target *)
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24847
diff changeset
   884
25103
haftmann
parents: 25096
diff changeset
   885
fun add_syntactic_const class prmode pos ((c, mx), rhs) thy =
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   886
  let
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   887
    val prfx = class_prefix class;
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   888
    val thy' = thy |> Sign.add_path prfx;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   889
    val phi = morphism thy class;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   890
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   891
    val c' = Sign.full_name thy' c;
25146
c2a41f31cacb tuned abbreviations in class context
haftmann
parents: 25104
diff changeset
   892
    val rews = map (Logic.dest_equals o Thm.prop_of) (these_defs thy' [class])
c2a41f31cacb tuned abbreviations in class context
haftmann
parents: 25104
diff changeset
   893
    val rhs' = (Pattern.rewrite_term thy rews [] o Morphism.term phi) rhs;
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   894
    val ty' = Logic.unvarifyT (Term.fastype_of rhs');
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   895
  in
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   896
    thy'
25146
c2a41f31cacb tuned abbreviations in class context
haftmann
parents: 25104
diff changeset
   897
    |> Sign.add_abbrev (#1 prmode) pos (c, map_types Type.strip_sorts rhs') |> snd
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   898
    |> Sign.add_const_constraint (c', SOME ty')
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   899
    |> Sign.notation true prmode [(Const (c', ty'), mx)]
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   900
    |> register_operation class (c', ((rhs, rhs'), NONE))
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   901
    |> Sign.restore_naming thy
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   902
  end;
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   903
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   904
end;