src/Pure/Isar/class.ML
author haftmann
Thu, 13 Dec 2007 07:09:06 +0100
changeset 25618 01f20279fea1
parent 25603 4b7a58fc168c
child 25668 a9ebfc170fbc
permissions -rw-r--r--
improved rule calculation
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
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    10
  (*classes*)
25002
haftmann
parents: 24981
diff changeset
    11
  val class: bstring -> class list -> Element.context_i Locale.element list
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    12
    -> string list -> theory -> string * Proof.context
25002
haftmann
parents: 24981
diff changeset
    13
  val class_cmd: bstring -> xstring list -> Element.context Locale.element list
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    14
    -> xstring list -> theory -> string * Proof.context
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    15
25311
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
    16
  val init: class -> theory -> Proof.context
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
    17
  val declare: string -> Markup.property list
25104
26b9a7db3386 tuned interfaces;
wenzelm
parents: 25103
diff changeset
    18
    -> (string * mixfix) * term -> theory -> theory
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
    19
  val abbrev: string -> Syntax.mode -> Markup.property list
25104
26b9a7db3386 tuned interfaces;
wenzelm
parents: 25103
diff changeset
    20
    -> (string * mixfix) * term -> theory -> theory
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
    21
  val refresh_syntax: class -> Proof.context -> Proof.context
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    22
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    23
  val intro_classes_tac: thm list -> tactic
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    24
  val default_intro_classes_tac: thm list -> tactic
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
    25
  val prove_subclass: class * class -> thm -> theory -> theory
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    26
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    27
  val class_prefix: string -> string
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    28
  val is_class: theory -> class -> bool
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    29
  val these_params: theory -> sort -> (string * (string * typ)) list
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    30
  val print_classes: theory -> unit
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24304
diff changeset
    31
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    32
  (*instances*)
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
    33
  val init_instantiation: string list * sort list * sort -> theory -> local_theory
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    34
  val instantiation_instance: (local_theory -> local_theory) -> local_theory -> Proof.state
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    35
  val prove_instantiation_instance: (Proof.context -> tactic) -> local_theory -> local_theory
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    36
  val conclude_instantiation: local_theory -> local_theory
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
    37
  val instantiation_param: local_theory -> string -> string option
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    38
  val confirm_declaration: string -> local_theory -> local_theory
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
    39
  val pretty_instantiation: local_theory -> Pretty.T
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    40
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    41
  (*old axclass layer*)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    42
  val axclass_cmd: bstring * xstring list
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    43
    -> ((bstring * Attrib.src list) * string list) list
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    44
    -> theory -> class * theory
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    45
  val classrel_cmd: xstring * xstring -> theory -> Proof.state
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    46
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
    47
  (*old instance layer*)
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
    48
  val instance_arity: (theory -> theory) -> arity -> theory -> Proof.state
01753a944433 improved
haftmann
parents: 25518
diff changeset
    49
  val instance_arity_cmd: bstring * xstring list * xstring -> theory -> Proof.state
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    50
end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    51
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    52
structure Class : CLASS =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    53
struct
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    54
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    55
(** auxiliary **)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    56
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
    57
val classN = "class";
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
    58
val introN = "intro";
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
    59
25002
haftmann
parents: 24981
diff changeset
    60
fun prove_interpretation tac prfx_atts expr inst =
haftmann
parents: 24981
diff changeset
    61
  Locale.interpretation_i I prfx_atts expr inst
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    62
  #> Proof.global_terminal_proof
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    63
      (Method.Basic (K (Method.SIMPLE_METHOD tac), Position.none), NONE)
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    64
  #> ProofContext.theory_of;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    65
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    66
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
    67
  Locale.interpretation_in_locale
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    68
      (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
    69
  #> Proof.global_terminal_proof
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    70
      (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
    71
  #> ProofContext.theory_of;
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
    72
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    73
fun get_remove_global_constraint c thy =
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    74
  let
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    75
    val ty = Sign.the_const_constraint thy c;
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    76
  in
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    77
    thy
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    78
    |> Sign.add_const_constraint (c, NONE)
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    79
    |> pair (c, Logic.unvarifyT ty)
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    80
  end;
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
    81
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    82
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
    83
(** primitive axclass and instance commands **)
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    84
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    85
fun axclass_cmd (class, raw_superclasses) raw_specs thy =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    86
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    87
    val ctxt = ProofContext.init thy;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    88
    val superclasses = map (Sign.read_class thy) raw_superclasses;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    89
    val name_atts = map ((apsnd o map) (Attrib.attribute thy) o fst)
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    90
      raw_specs;
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    91
    val axiomss = ProofContext.read_propp (ctxt, map (map (rpair []) o snd)
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    92
          raw_specs)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    93
      |> snd
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    94
      |> (map o map) fst;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    95
  in
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    96
    AxClass.define_class (class, superclasses) []
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    97
      (name_atts ~~ axiomss) thy
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
    98
  end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
    99
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   100
local
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   101
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   102
fun gen_instance mk_prop add_thm after_qed insts thy =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   103
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   104
    fun after_qed' results =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   105
      ProofContext.theory ((fold o fold) add_thm results #> after_qed);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   106
  in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   107
    thy
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   108
    |> ProofContext.init
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   109
    |> Proof.theorem_i NONE after_qed' ((map (fn t => [(t, [])])
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   110
        o mk_prop thy) insts)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   111
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   112
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   113
in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   114
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   115
val instance_arity =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   116
  gen_instance (Logic.mk_arities oo Sign.cert_arity) AxClass.add_arity;
25502
9200b36280c0 instance command as rudimentary class target
haftmann
parents: 25485
diff changeset
   117
val instance_arity_cmd =
9200b36280c0 instance command as rudimentary class target
haftmann
parents: 25485
diff changeset
   118
  gen_instance (Logic.mk_arities oo Sign.read_arity) AxClass.add_arity I;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   119
val classrel =
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   120
  gen_instance (single oo (Logic.mk_classrel oo AxClass.cert_classrel)) AxClass.add_classrel I;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   121
val classrel_cmd =
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   122
  gen_instance (single oo (Logic.mk_classrel oo AxClass.read_classrel)) AxClass.add_classrel I;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   123
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   124
end; (*local*)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   125
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   126
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   127
(** class data **)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   128
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   129
datatype class_data = ClassData of {
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   130
  consts: (string * string) list
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   131
    (*locale parameter ~> constant name*),
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   132
  base_sort: sort,
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   133
  inst: term option list
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   134
    (*canonical interpretation*),
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   135
  morphism: morphism,
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   136
    (*partial morphism of canonical interpretation*)
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   137
  assm_intro: thm option,
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   138
  of_class: thm,
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   139
  axiom: thm option,
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   140
  defs: thm list,
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   141
  operations: (string * (class * (typ * term))) list
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   142
};
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   143
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   144
fun rep_class_data (ClassData d) = d;
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   145
fun mk_class_data ((consts, base_sort, inst, morphism, assm_intro, of_class, axiom),
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   146
    (defs, operations)) =
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   147
  ClassData { consts = consts, base_sort = base_sort, inst = inst,
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   148
    morphism = morphism, assm_intro = assm_intro, of_class = of_class, axiom = axiom, 
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   149
    defs = defs, operations = operations };
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   150
fun map_class_data f (ClassData { consts, base_sort, inst, morphism,
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   151
    assm_intro, of_class, axiom, defs, operations }) =
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   152
  mk_class_data (f ((consts, base_sort, inst, morphism, assm_intro, of_class, axiom),
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   153
    (defs, operations)));
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   154
fun merge_class_data _ (ClassData { consts = consts,
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   155
    base_sort = base_sort, inst = inst, morphism = morphism, assm_intro = assm_intro,
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   156
    of_class = of_class, axiom = axiom, defs = defs1, operations = operations1 },
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   157
  ClassData { consts = _, base_sort = _, inst = _, morphism = _, assm_intro = _,
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   158
    of_class = _, axiom = _, defs = defs2, operations = operations2 }) =
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   159
  mk_class_data ((consts, base_sort, inst, morphism, assm_intro, of_class, axiom),
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   160
    (Thm.merge_thms (defs1, defs2),
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   161
      AList.merge (op =) (K true) (operations1, operations2)));
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   162
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   163
structure ClassData = TheoryDataFun
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   164
(
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   165
  type T = class_data Graph.T
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   166
  val empty = Graph.empty;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   167
  val copy = I;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   168
  val extend = I;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   169
  fun merge _ = Graph.join merge_class_data;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   170
);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   171
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   172
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   173
(* queries *)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   174
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   175
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
   176
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   177
fun the_class_data thy class = case lookup_class_data thy class
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   178
 of NONE => error ("Undeclared class " ^ quote class)
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   179
  | SOME data => data;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   180
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   181
val is_class = is_some oo lookup_class_data;
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   182
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   183
val ancestry = Graph.all_succs o ClassData.get;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   184
25002
haftmann
parents: 24981
diff changeset
   185
fun these_params thy =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   186
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   187
    fun params class =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   188
      let
24930
cc2e0e8c81af renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   189
        val const_typs = (#params o AxClass.get_info thy) class;
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   190
        val const_names = (#consts o the_class_data thy) class;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   191
      in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   192
        (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
   193
      end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   194
  in maps params o ancestry thy end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   195
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   196
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
   197
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   198
fun morphism thy = #morphism o the_class_data thy;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   199
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   200
fun these_assm_intros thy =
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   201
  Graph.fold (fn (_, (data, _)) => fold (insert Thm.eq_thm)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   202
    ((the_list o #assm_intro o rep_class_data) data)) (ClassData.get thy) [];
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   203
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   204
fun these_operations thy =
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   205
  maps (#operations o the_class_data thy) o ancestry thy;
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24589
diff changeset
   206
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   207
fun print_classes thy =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   208
  let
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24914
diff changeset
   209
    val ctxt = ProofContext.init thy;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   210
    val algebra = Sign.classes_of thy;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   211
    val arities =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   212
      Symtab.empty
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   213
      |> Symtab.fold (fn (tyco, arities) => fold (fn (class, _) =>
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   214
           Symtab.map_default (class, []) (insert (op =) tyco)) arities)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   215
             ((#arities o Sorts.rep_algebra) algebra);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   216
    val the_arities = these o Symtab.lookup arities;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   217
    fun mk_arity class tyco =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   218
      let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   219
        val Ss = Sorts.mg_domain algebra tyco [class];
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24914
diff changeset
   220
      in Syntax.pretty_arity ctxt (tyco, Ss, [class]) end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   221
    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
   222
      ^ setmp show_sorts false (Syntax.string_of_typ ctxt o Type.strip_sorts) ty);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   223
    fun mk_entry class = (Pretty.block o Pretty.fbreaks o map_filter I) [
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   224
      (SOME o Pretty.str) ("class " ^ Sign.extern_class thy class ^ ":"),
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   225
      (SOME o Pretty.block) [Pretty.str "supersort: ",
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24914
diff changeset
   226
        (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
   227
      if is_class thy class then (SOME o Pretty.str)
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   228
        ("locale: " ^ Locale.extern thy class) else NONE,
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   229
      ((fn [] => NONE | ps => (SOME o Pretty.block o Pretty.fbreaks)
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   230
          (Pretty.str "parameters:" :: ps)) o map mk_param
24930
cc2e0e8c81af renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   231
        o these o Option.map #params o try (AxClass.get_info thy)) class,
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   232
      (SOME o Pretty.block o Pretty.breaks) [
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   233
        Pretty.str "instances:",
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   234
        Pretty.list "" "" (map (mk_arity class) (the_arities class))
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   235
      ]
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   236
    ]
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   237
  in
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   238
    (Pretty.writeln o Pretty.chunks o separate (Pretty.str "")
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   239
      o map mk_entry o Sorts.all_classes) algebra
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   240
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   241
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   242
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   243
(* updaters *)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   244
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   245
fun add_class_data ((class, superclasses),
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   246
    (cs, base_sort, inst, phi, assm_intro, of_class, axiom)) thy =
25002
haftmann
parents: 24981
diff changeset
   247
  let
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   248
    val operations = map (fn (v_ty as (_, ty), (c, _)) =>
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   249
      (c, (class, (ty, Free v_ty)))) cs;
25002
haftmann
parents: 24981
diff changeset
   250
    val cs = (map o pairself) fst cs;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   251
    val add_class = Graph.new_node (class,
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   252
        mk_class_data ((cs, base_sort,
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   253
          map (SOME o Const) inst, phi, assm_intro, of_class, axiom), ([], operations)))
25002
haftmann
parents: 24981
diff changeset
   254
      #> fold (curry Graph.add_edge class) superclasses;
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   255
  in ClassData.map add_class thy end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   256
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   257
fun register_operation class (c, (t, some_def)) thy =
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   258
  let
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   259
    val base_sort = (#base_sort o the_class_data thy) class;
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   260
    val prep_typ = map_atyps
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   261
      (fn TVar (vi as (v, _), sort) => if Name.aT = v
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   262
        then TFree (v, base_sort) else TVar (vi, sort));
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   263
    val t' = map_types prep_typ t;
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   264
    val ty' = Term.fastype_of t';
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   265
  in
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   266
    thy
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   267
    |> (ClassData.map o Graph.map_node class o map_class_data o apsnd)
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   268
      (fn (defs, operations) =>
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   269
        (fold cons (the_list some_def) defs,
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   270
          (c, (class, (ty', t'))) :: operations))
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   271
  end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   272
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   273
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   274
(** rule calculation, tactics and methods **)
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   275
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   276
val class_prefix = Logic.const_of_class o Sign.base_name;
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   277
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   278
fun calculate_morphism class cs =
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   279
  let
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   280
    val subst_typ = Term.map_type_tfree (fn var as (v, sort) =>
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   281
      if v = Name.aT then TVar ((v, 0), [class]) else TVar ((v, 0), sort));
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   282
    fun subst_aterm (t as Free (v, ty)) = (case AList.lookup (op =) cs v
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   283
         of SOME (c, _) => Const (c, ty)
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   284
          | NONE => t)
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   285
      | subst_aterm t = t;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   286
    val subst_term = map_aterms subst_aterm #> map_types subst_typ;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   287
  in
25209
haftmann
parents: 25195
diff changeset
   288
    Morphism.term_morphism subst_term
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   289
    $> Morphism.typ_morphism subst_typ
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   290
  end;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   291
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   292
fun calculate_rules thy sups base_sort assm_axiom param_map class =
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   293
  let
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   294
    (*FIXME use more primitves here rather than OF, simplifify code*)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   295
    fun the_option [x] = SOME x
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   296
      | the_option [] = NONE;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   297
    fun VarA sort = TVar ((Name.aT, 0), sort);
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   298
    fun FreeA sort = TFree (Name.aT, sort);
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   299
    fun instantiate sort1 sort2 =
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   300
      Thm.instantiate ([pairself (Thm.ctyp_of thy) (VarA sort1, FreeA sort2)], [])
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   301
    val (proto_assm_intro, locale_intro) = pairself the_option (Locale.intros thy class);
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   302
    val inst_ty = (map_atyps o K o VarA) base_sort;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   303
    val assm_intro = proto_assm_intro
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   304
      |> Option.map (Thm.instantiate ([],
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   305
           map (fn ((v, _), (c, ty)) => pairself (Thm.cterm_of thy)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   306
             (Var ((v, 0), inst_ty ty), Const (c, inst_ty ty))) param_map))
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   307
      |> Option.map (MetaSimplifier.rewrite_rule (these_defs thy sups));
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   308
    val axiom_premises = map_filter (#axiom o the_class_data thy) sups
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   309
      @ the_list assm_axiom;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   310
    val axiom = case locale_intro
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   311
     of SOME proto_axiom => SOME
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   312
          ((instantiate base_sort [class] proto_axiom OF axiom_premises) |> Drule.standard)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   313
      | NONE => assm_axiom;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   314
    val class_intro = (instantiate [] base_sort o #intro o AxClass.get_info thy) class;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   315
    val of_class_sups = if null sups
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   316
      then Drule.sort_triv thy (FreeA base_sort, base_sort)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   317
      else map (Drule.implies_intr_hyps o #of_class o the_class_data thy) sups;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   318
    val locale_dests = map Drule.standard (Locale.dests thy class);
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   319
    fun mk_pred_triv () = (Thm.assume o Thm.cterm_of thy
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   320
      o (map_types o map_atyps o K o FreeA) base_sort o Thm.prop_of o the) axiom;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   321
    val pred_trivs = case length locale_dests
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   322
     of 0 => if is_none locale_intro then [] else [mk_pred_triv ()]
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   323
      | n => replicate n (mk_pred_triv ());
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   324
    val of_class = class_intro OF of_class_sups OF locale_dests OF pred_trivs;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   325
  in (assm_intro, of_class, axiom) end;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   326
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   327
fun class_interpretation class facts defs thy =
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   328
  let
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   329
    val params = these_params thy [class];
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   330
    val inst = (#inst o the_class_data thy) class;
25020
f1344290e420 (un)overload: full rewrite;
wenzelm
parents: 25010
diff changeset
   331
    val tac = ALLGOALS (ProofContext.fact_tac facts);
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   332
    val prfx = class_prefix class;
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   333
  in
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   334
    thy
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   335
    |> 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
   336
    ||> prove_interpretation tac ((false, prfx), []) (Locale.Locale class)
ba43514068fd Interpretation equations may have name and/or attribute.
ballarin
parents: 25083
diff changeset
   337
          (inst, map (fn def => (("", []), def)) defs)
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   338
    |-> (fn cs => fold (Sign.add_const_constraint o apsnd SOME) cs)
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   339
  end;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   340
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   341
fun prove_subclass (sub, sup) thm thy =
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   342
  let
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   343
    val of_class = (Drule.standard o #of_class o the_class_data thy) sup;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   344
    val intro = Drule.standard (of_class OF [Drule.standard thm]);
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   345
    val classrel = intro OF (the_list o #axiom o the_class_data thy) sub;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   346
  in
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   347
    thy
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   348
    |> AxClass.add_classrel classrel
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   349
    |> prove_interpretation_in (ALLGOALS (ProofContext.fact_tac [thm]))
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   350
         I (sub, Locale.Locale sup)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   351
    |> ClassData.map (Graph.add_edge (sub, sup))
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   352
  end;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   353
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   354
fun intro_classes_tac facts st =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   355
  let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   356
    val thy = Thm.theory_of_thm st;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   357
    val classes = Sign.all_classes thy;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   358
    val class_trivs = map (Thm.class_triv thy) classes;
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   359
    val class_intros = map_filter (try (#intro o AxClass.get_info thy)) classes;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   360
    val assm_intros = these_assm_intros thy;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   361
  in
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   362
    Method.intros_tac (class_trivs @ class_intros @ assm_intros) facts st
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   363
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   364
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   365
fun default_intro_classes_tac [] = intro_classes_tac []
24930
cc2e0e8c81af renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents: 24920
diff changeset
   366
  | default_intro_classes_tac _ = no_tac;
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   367
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   368
fun default_tac rules ctxt facts =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   369
  HEADGOAL (Method.some_rule_tac rules ctxt facts) ORELSE
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   370
    default_intro_classes_tac facts;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   371
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   372
val _ = Context.add_setup (Method.add_methods
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   373
 [("intro_classes", Method.no_args (Method.METHOD intro_classes_tac),
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   374
    "back-chain introduction rules of classes"),
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   375
  ("default", Method.thms_ctxt_args (Method.METHOD oo default_tac),
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   376
    "apply some intro/elim rule")]);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   377
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   378
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   379
(** classes and class target **)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   380
25002
haftmann
parents: 24981
diff changeset
   381
(* class context syntax *)
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   382
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   383
structure ClassSyntax = ProofDataFun(
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   384
  type T = {
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   385
    local_constraints: (string * typ) list,
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   386
    global_constraints: (string * typ) list,
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   387
    base_sort: sort,
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   388
    operations: (string * (typ * term)) list,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   389
    unchecks: (term * term) list,
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   390
    passed: bool
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   391
  };
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   392
  fun init _ = {
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   393
    local_constraints = [],
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   394
    global_constraints = [],
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   395
    base_sort = [],
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   396
    operations = [],
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   397
    unchecks = [],
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   398
    passed = true
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   399
  };;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   400
);
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   401
25344
00c2179db769 synchronize_syntax: improved declare_const (still inactive);
wenzelm
parents: 25326
diff changeset
   402
fun synchronize_syntax sups base_sort ctxt =
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   403
  let
25344
00c2179db769 synchronize_syntax: improved declare_const (still inactive);
wenzelm
parents: 25326
diff changeset
   404
    val thy = ProofContext.theory_of ctxt;
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   405
    fun subst_class_typ sort = map_atyps
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   406
      (fn TFree _ => TVar ((Name.aT, 0), sort) | ty' => ty');
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   407
    val operations = these_operations thy sups;
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   408
    val local_constraints =
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   409
      (map o apsnd) (subst_class_typ base_sort o fst o snd) operations;
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   410
    val global_constraints =
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   411
      (map o apsnd) (fn (class, (ty, _)) => subst_class_typ [class] ty) operations;
25318
c8352b38d47d synchronize_syntax: declare operations within the local scope of fixes/consts
wenzelm
parents: 25311
diff changeset
   412
    fun declare_const (c, _) =
c8352b38d47d synchronize_syntax: declare operations within the local scope of fixes/consts
wenzelm
parents: 25311
diff changeset
   413
      let val b = Sign.base_name c
25344
00c2179db769 synchronize_syntax: improved declare_const (still inactive);
wenzelm
parents: 25326
diff changeset
   414
      in Sign.intern_const thy b = c ? Variable.declare_const (b, c) end;
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   415
    val unchecks = map (fn (c, (_, (ty, t))) => (t, Const (c, ty))) operations;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   416
  in
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   417
    ctxt
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   418
    |> fold declare_const local_constraints
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   419
    |> fold (ProofContext.add_const_constraint o apsnd SOME) local_constraints
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   420
    |> ClassSyntax.put {
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   421
        local_constraints = local_constraints,
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   422
        global_constraints = global_constraints,
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   423
        base_sort = base_sort,
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   424
        operations = (map o apsnd) snd operations,
25195
62638dcafe38 fixed syntax; truned code structure; added primitive subclass interface with consideraton of syntax etc.
haftmann
parents: 25163
diff changeset
   425
        unchecks = unchecks,
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   426
        passed = false
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   427
      }
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   428
  end;
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   429
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   430
fun refresh_syntax class ctxt =
25002
haftmann
parents: 24981
diff changeset
   431
  let
haftmann
parents: 24981
diff changeset
   432
    val thy = ProofContext.theory_of ctxt;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   433
    val base_sort = (#base_sort o the_class_data thy) class;
25344
00c2179db769 synchronize_syntax: improved declare_const (still inactive);
wenzelm
parents: 25326
diff changeset
   434
  in synchronize_syntax [class] base_sort ctxt end;
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   435
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   436
val mark_passed = ClassSyntax.map
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   437
  (fn { local_constraints, global_constraints, base_sort, operations, unchecks, passed } =>
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   438
    { local_constraints = local_constraints, global_constraints = global_constraints,
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   439
      base_sort = base_sort, operations = operations, unchecks = unchecks, passed = true });
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   440
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   441
fun sort_term_check ts ctxt =
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   442
  let
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   443
    val { local_constraints, global_constraints, base_sort, operations, passed, ... } =
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   444
      ClassSyntax.get ctxt;
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   445
    fun check_improve (Const (c, ty)) = (case AList.lookup (op =) local_constraints c
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   446
         of SOME ty0 => (case try (Type.raw_match (ty0, ty)) Vartab.empty
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   447
             of SOME tyenv => (case Vartab.lookup tyenv (Name.aT, 0)
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   448
                 of SOME (_, TVar (tvar as (vi, _))) =>
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   449
                      if TypeInfer.is_param vi then cons tvar else I
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   450
                  | _ => I)
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   451
              | NONE => I)
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   452
          | NONE => I)
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   453
      | check_improve _ = I;
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   454
    val improvements = (fold o fold_aterms) check_improve ts [];
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   455
    val ts' = (map o map_types o map_atyps) (fn ty as TVar tvar =>
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   456
        if member (op =) improvements tvar
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   457
          then TFree (Name.aT, base_sort) else ty | ty => ty) ts;
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   458
    fun check t0 = Envir.expand_term (fn Const (c, ty) => (case AList.lookup (op =) operations c
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   459
         of SOME (ty0, t) =>
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   460
              if Type.typ_instance (ProofContext.tsig_of ctxt) (ty, ty0)
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   461
              then SOME (ty0, check t) else NONE
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   462
          | NONE => NONE)
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   463
      | _ => NONE) t0;
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   464
    val ts'' = map check ts';
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   465
  in if eq_list (op aconv) (ts, ts'') andalso passed then NONE
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   466
  else
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   467
    ctxt
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   468
    |> fold (ProofContext.add_const_constraint o apsnd SOME) global_constraints
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   469
    |> mark_passed
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   470
    |> pair ts''
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   471
    |> SOME
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   472
  end;
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   473
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   474
fun sort_term_uncheck ts ctxt =
25002
haftmann
parents: 24981
diff changeset
   475
  let
haftmann
parents: 24981
diff changeset
   476
    val thy = ProofContext.theory_of ctxt;
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   477
    val unchecks = (#unchecks o ClassSyntax.get) ctxt;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   478
    val ts' = map (Pattern.rewrite_term thy unchecks []) ts;
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25038
diff changeset
   479
  in if eq_list (op aconv) (ts, ts') then NONE else SOME (ts', ctxt) end;
25002
haftmann
parents: 24981
diff changeset
   480
25344
00c2179db769 synchronize_syntax: improved declare_const (still inactive);
wenzelm
parents: 25326
diff changeset
   481
fun init_ctxt sups base_sort ctxt =
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   482
  ctxt
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   483
  |> Variable.declare_term
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   484
      (Logic.mk_type (TFree (Name.aT, base_sort)))
25344
00c2179db769 synchronize_syntax: improved declare_const (still inactive);
wenzelm
parents: 25326
diff changeset
   485
  |> synchronize_syntax sups base_sort
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   486
  |> Context.proof_map (
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   487
      Syntax.add_term_check 0 "class" sort_term_check
25103
haftmann
parents: 25096
diff changeset
   488
      #> 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
   489
25311
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   490
fun init class thy =
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   491
  thy
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   492
  |> Locale.init class
25344
00c2179db769 synchronize_syntax: improved declare_const (still inactive);
wenzelm
parents: 25326
diff changeset
   493
  |> init_ctxt [class] ((#base_sort o the_class_data thy) class);
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24901
diff changeset
   494
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   495
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   496
(* class definition *)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   497
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   498
local
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   499
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   500
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
   501
  let
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   502
    val supclasses = map (prep_class thy) raw_supclasses;
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   503
    val supsort = Sign.minimize_sort thy supclasses;
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   504
    val sups = filter (is_class thy) supsort;
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   505
    val base_sort = if null sups then supsort else
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   506
      (#base_sort o the_class_data thy o hd) sups;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   507
    val suplocales = map Locale.Locale sups;
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   508
    val (raw_elems, includes) = fold_rev (fn Locale.Elem e => apfst (cons e)
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   509
      | Locale.Expr i => apsnd (cons (prep_expr thy i))) raw_includes_elems ([], []);
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   510
    val supexpr = Locale.Merge suplocales;
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   511
    val supparams = (map fst o Locale.parameters_of_expr thy) supexpr;
25002
haftmann
parents: 24981
diff changeset
   512
    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
   513
      (map fst supparams);
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   514
    val mergeexpr = Locale.Merge (suplocales @ includes);
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   515
    val constrain = Element.Constrains ((map o apsnd o map_atyps)
24847
bc15dcaed517 replaced AxClass.param_tyvarname by Name.aT;
wenzelm
parents: 24836
diff changeset
   516
      (fn TFree (_, sort) => TFree (Name.aT, sort)) supparams);
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   517
  in
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   518
    ProofContext.init thy
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   519
    |> Locale.cert_expr supexpr [constrain]
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   520
    |> snd
25344
00c2179db769 synchronize_syntax: improved declare_const (still inactive);
wenzelm
parents: 25326
diff changeset
   521
    |> init_ctxt sups base_sort
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   522
    |> process_expr Locale.empty raw_elems
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   523
    |> fst
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   524
    |> (fn elems => ((((sups, supconsts), (supsort, base_sort, mergeexpr)),
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   525
          (*FIXME*) if null includes then constrain :: elems else elems)))
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   526
  end;
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   527
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   528
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
   529
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
   530
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   531
fun define_class_params name class superclasses consts dep_axiom other_consts thy =
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   532
  let
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   533
    fun add_const ((c, ty), syn) =
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   534
      Sign.declare_const [] (c, Type.strip_sorts ty, syn) #>> Term.dest_Const;
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   535
    val constrain_typs = (map o apsnd o Term.map_type_tfree)
25002
haftmann
parents: 24981
diff changeset
   536
      (fn (v, _) => TFree (v, [class]))
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   537
    fun the_option [x] = SOME x
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   538
      | the_option [] = NONE;
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   539
  in
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   540
    thy
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   541
    |> Sign.add_path (Logic.const_of_class name)
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   542
    |> fold_map add_const consts
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   543
    ||> Sign.restore_naming thy
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   544
    |-> (fn cs => `(fn thy => dep_axiom thy cs)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   545
    #-> (fn axiom => AxClass.define_class (name, superclasses)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   546
           (map fst cs @ other_consts) [axiom]
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   547
    #-> (fn _ => `(fn _ => constrain_typs cs)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   548
    #-> (fn cs' => `(fn thy => (the_option o #axioms o AxClass.get_info thy) class)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   549
    #-> (fn axiom => fold (Sign.add_const_constraint o apsnd SOME) cs'
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   550
    #> pair (cs', axiom))))))
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   551
  end;
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   552
25002
haftmann
parents: 24981
diff changeset
   553
fun gen_class prep_spec prep_param bname
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   554
    raw_supclasses raw_includes_elems raw_other_consts thy =
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   555
  let
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   556
    val class = Sign.full_name thy bname;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   557
    val (((sups, supconsts), (supsort, base_sort, mergeexpr)), elems_syn) =
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   558
      prep_spec thy raw_supclasses raw_includes_elems;
24968
f9bafc868847 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   559
    val other_consts = map (tap (Sign.the_const_type thy) o prep_param thy) raw_other_consts;
25163
haftmann
parents: 25146
diff changeset
   560
    fun mk_inst class cs =
haftmann
parents: 25146
diff changeset
   561
      (map o apsnd o Term.map_type_tfree) (fn (v, _) => TFree (v, [class])) cs;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   562
    fun fork_syntax (Element.Fixes xs) =
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   563
          fold_map (fn (c, ty, syn) => cons (c, syn) #> pair (c, ty, NoSyn)) xs
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   564
          #>> Element.Fixes
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   565
      | fork_syntax x = pair x;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   566
    val (elems, global_syn) = fold_map fork_syntax elems_syn [];
25326
e417a7236125 refined Variable.declare_const;
wenzelm
parents: 25318
diff changeset
   567
    fun globalize (c, ty) =
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   568
      ((c, map_atyps (K (TFree (Name.aT, base_sort))) ty),
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   569
        (the_default NoSyn o AList.lookup (op =) global_syn) c);
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   570
    fun extract_params thy =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   571
      let
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   572
        val params = map fst (Locale.parameters_of thy class);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   573
      in
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   574
        (params, (map globalize o snd o chop (length supconsts)) params)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   575
      end;
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   576
    fun extract_assumes params thy cs =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   577
      let
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   578
        val consts = supconsts @ (map (fst o fst) params ~~ cs);
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   579
        fun subst (Free (c, ty)) =
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   580
              Const ((fst o the o AList.lookup (op =) consts) c, ty)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   581
          | subst t = t;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   582
        fun prep_asm ((name, atts), ts) =
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   583
          ((Sign.base_name name, map (Attrib.attribute_i thy) atts),
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24435
diff changeset
   584
            (map o map_aterms) subst ts);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   585
      in
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   586
        Locale.intros thy class
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   587
        |> fst
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   588
        |> map (map_aterms subst o Logic.unvarify o Logic.strip_imp_concl o Thm.prop_of)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   589
        |> pair (bname ^ "_" ^ AxClass.axiomsN, [])
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   590
      end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   591
  in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   592
    thy
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   593
    |> Locale.add_locale_i (SOME "") bname mergeexpr elems
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   594
    |> snd
25311
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   595
    |> ProofContext.theory_of
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   596
    |> `extract_params
aa750e3a581c Class.init now similiar to Locale.init
haftmann
parents: 25268
diff changeset
   597
    |-> (fn (all_params, params) =>
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   598
        define_class_params bname class supsort params
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   599
          (extract_assumes params) other_consts
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   600
      #-> (fn (consts, assm_axiom) =>
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   601
        `(fn thy => calculate_rules thy sups base_sort assm_axiom
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   602
          (all_params ~~ map snd supconsts @ consts) class)
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   603
      #-> (fn (assm_intro, assm_proj, axiom) =>
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   604
        add_class_data ((class, sups),
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   605
          (map fst params ~~ consts, base_sort,
25163
haftmann
parents: 25146
diff changeset
   606
            mk_inst class (map snd supconsts @ consts),
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   607
              calculate_morphism class (supconsts @ (map (fst o fst) params ~~ consts)),
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   608
          assm_intro, assm_proj, axiom))
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   609
      #> class_interpretation class (the_list axiom) []
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   610
      )))
25268
58146cb7bf44 more precise treatment of prove_subclass
haftmann
parents: 25239
diff changeset
   611
    |> init class
25038
522abf8a5f87 canonical interpretation interface
haftmann
parents: 25024
diff changeset
   612
    |> pair class
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   613
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   614
25326
e417a7236125 refined Variable.declare_const;
wenzelm
parents: 25318
diff changeset
   615
fun read_const thy = #1 o Term.dest_Const o ProofContext.read_const (ProofContext.init thy);
e417a7236125 refined Variable.declare_const;
wenzelm
parents: 25318
diff changeset
   616
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   617
in
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   618
25326
e417a7236125 refined Variable.declare_const;
wenzelm
parents: 25318
diff changeset
   619
val class_cmd = gen_class read_class_spec read_const;
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24731
diff changeset
   620
val class = gen_class check_class_spec (K I);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   621
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   622
end; (*local*)
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   623
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   624
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   625
(* class target *)
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   626
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   627
fun declare class pos ((c, mx), dict) thy =
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   628
  let
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   629
    val prfx = class_prefix class;
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   630
    val thy' = thy |> Sign.add_path prfx;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   631
    val phi = morphism thy' class;
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   632
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   633
    val c' = Sign.full_name thy' c;
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   634
    val dict' = Morphism.term phi dict;
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   635
    val dict_def = map_types Logic.unvarifyT dict';
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   636
    val ty' = Term.fastype_of dict_def;
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   637
    val ty'' = Type.strip_sorts ty';
25239
3d6abdd10382 handling of notation in class target
haftmann
parents: 25210
diff changeset
   638
    val def_eq = Logic.mk_equals (Const (c', ty'), dict_def);
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   639
    fun get_axiom thy = ((Thm.varifyT o Thm.symmetric o Thm.get_axiom_i thy) c', thy);
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   640
  in
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   641
    thy'
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   642
    |> Sign.declare_const pos (c, ty'', mx) |> snd
25518
00d5cc16e891 interface for unchecked definitions
haftmann
parents: 25514
diff changeset
   643
    |> Thm.add_def false false (c, def_eq)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   644
    |>> Thm.symmetric
25618
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   645
    ||>> get_axiom
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   646
    |-> (fn (def, def') => class_interpretation class [def] [Thm.prop_of def]
01f20279fea1 improved rule calculation
haftmann
parents: 25603
diff changeset
   647
          #> register_operation class (c', (dict', SOME def')))
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   648
    |> Sign.restore_naming thy
25083
765528b4b419 improved class syntax
haftmann
parents: 25066
diff changeset
   649
    |> Sign.add_const_constraint (c', SOME ty')
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   650
  end;
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   651
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   652
fun abbrev class prmode pos ((c, mx), rhs) thy =
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   653
  let
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   654
    val prfx = class_prefix class;
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   655
    val thy' = thy |> Sign.add_path prfx;
25062
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   656
    val phi = morphism thy class;
af5ef0d4d655 global class syntax
haftmann
parents: 25060
diff changeset
   657
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   658
    val c' = Sign.full_name thy' c;
25146
c2a41f31cacb tuned abbreviations in class context
haftmann
parents: 25104
diff changeset
   659
    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
   660
    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
   661
    val ty' = Logic.unvarifyT (Term.fastype_of rhs');
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   662
  in
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   663
    thy'
25146
c2a41f31cacb tuned abbreviations in class context
haftmann
parents: 25104
diff changeset
   664
    |> 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
   665
    |> Sign.add_const_constraint (c', SOME ty')
25024
0615bb9955dd added is_class;
wenzelm
parents: 25020
diff changeset
   666
    |> Sign.notation true prmode [(Const (c', ty'), mx)]
25368
f12613fda79d proper implementation of check phase; non-qualified names for class operations
haftmann
parents: 25344
diff changeset
   667
    |> register_operation class (c', (rhs', NONE))
25096
b8950f7cf92e clarified abbreviations in class context
haftmann
parents: 25094
diff changeset
   668
    |> Sign.restore_naming thy
24836
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   669
  end;
dab06e93ec28 intermediate cleanup
haftmann
parents: 24770
diff changeset
   670
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   671
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   672
(** instantiation target **)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   673
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   674
(* bookkeeping *)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   675
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   676
datatype instantiation = Instantiation of {
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   677
  arities: string list * sort list * sort,
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   678
  params: ((string * string) * (string * typ)) list
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   679
    (*(instantiation parameter, type constructor), (local instantiation parameter, typ)*)
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   680
}
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   681
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   682
structure Instantiation = ProofDataFun
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   683
(
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   684
  type T = instantiation
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   685
  fun init _ = Instantiation { arities = ([], [], []), params = [] };
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   686
);
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   687
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   688
fun mk_instantiation (arities, params) =
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   689
  Instantiation { arities = arities, params = params };
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   690
fun get_instantiation lthy = case Instantiation.get (LocalTheory.target_of lthy)
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   691
 of Instantiation data => data;
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   692
fun map_instantiation f = (LocalTheory.target o Instantiation.map)
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   693
  (fn Instantiation { arities, params } => mk_instantiation (f (arities, params)));
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   694
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   695
fun the_instantiation lthy = case get_instantiation lthy
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   696
 of { arities = ([], [], []), ... } => error "No instantiation target"
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   697
  | data => data;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   698
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   699
val instantiation_params = #params o get_instantiation;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   700
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   701
fun instantiation_param lthy v = instantiation_params lthy
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   702
  |> find_first (fn (_, (v', _)) => v = v')
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   703
  |> Option.map (fst o fst);
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   704
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   705
fun confirm_declaration c = (map_instantiation o apsnd)
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   706
  (filter_out (fn (_, (c', _)) => c' = c));
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   707
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   708
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   709
(* syntax *)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   710
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25574
diff changeset
   711
fun subst_param thy params = map_aterms (fn t as Const (c, ty) =>
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25574
diff changeset
   712
    (case AxClass.inst_tyco_of thy (c, ty)
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   713
     of SOME tyco => (case AList.lookup (op =) params (c, tyco)
01753a944433 improved
haftmann
parents: 25518
diff changeset
   714
         of SOME v_ty => Free v_ty
01753a944433 improved
haftmann
parents: 25518
diff changeset
   715
          | NONE => t)
01753a944433 improved
haftmann
parents: 25518
diff changeset
   716
      | NONE => t)
01753a944433 improved
haftmann
parents: 25518
diff changeset
   717
  | t => t);
01753a944433 improved
haftmann
parents: 25518
diff changeset
   718
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   719
fun inst_term_check ts lthy =
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   720
  let
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   721
    val params = instantiation_params lthy;
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   722
    val tsig = ProofContext.tsig_of lthy;
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   723
    val thy = ProofContext.theory_of lthy;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   724
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25574
diff changeset
   725
    fun check_improve (Const (c, ty)) = (case AxClass.inst_tyco_of thy (c, ty)
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   726
         of SOME tyco => (case AList.lookup (op =) params (c, tyco)
25502
9200b36280c0 instance command as rudimentary class target
haftmann
parents: 25485
diff changeset
   727
             of SOME (_, ty') => perhaps (try (Type.typ_match tsig (ty, ty')))
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   728
              | NONE => I)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   729
          | NONE => I)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   730
      | check_improve _ = I;
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   731
    val improvement = (fold o fold_aterms) check_improve ts Vartab.empty;
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   732
    val ts' = (map o map_types) (Envir.typ_subst_TVars improvement) ts;
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   733
    val ts'' = map (subst_param thy params) ts';
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   734
  in if eq_list (op aconv) (ts, ts'') then NONE else SOME (ts'', lthy) end;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   735
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   736
fun inst_term_uncheck ts lthy =
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   737
  let
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   738
    val params = instantiation_params lthy;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   739
    val ts' = (map o map_aterms) (fn t as Free (v, ty) =>
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   740
       (case get_first (fn ((c, _), (v', _)) => if v = v' then SOME c else NONE) params
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   741
         of SOME c => Const (c, ty)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   742
          | NONE => t)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   743
      | t => t) ts;
25514
4b508bb31a6c first working version of instance target
haftmann
parents: 25502
diff changeset
   744
  in if eq_list (op aconv) (ts, ts') then NONE else SOME (ts', lthy) end;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   745
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   746
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   747
(* target *)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   748
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   749
val sanatize_name = (*FIXME*)
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   750
  let
25574
016f677ad7b8 declaration of instance parameter names
haftmann
parents: 25536
diff changeset
   751
    fun is_valid s = Symbol.is_ascii_letter s orelse Symbol.is_ascii_digit s
016f677ad7b8 declaration of instance parameter names
haftmann
parents: 25536
diff changeset
   752
      orelse s = "'" orelse s = "_";
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   753
    val is_junk = not o is_valid andf Symbol.is_regular;
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   754
    val junk = Scan.many is_junk;
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   755
    val scan_valids = Symbol.scanner "Malformed input"
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   756
      ((junk |--
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   757
        (Scan.optional (Scan.one Symbol.is_ascii_letter) "x" ^^ (Scan.many is_valid >> implode)
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   758
        --| junk))
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   759
      -- Scan.repeat ((Scan.many1 is_valid >> implode) --| junk) >> op ::);
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   760
  in
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   761
    explode #> scan_valids #> implode
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   762
  end;
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   763
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   764
fun init_instantiation (tycos, sorts, sort) thy =
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   765
  let
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   766
    val _ = if null tycos then error "At least one arity must be given" else ();
01753a944433 improved
haftmann
parents: 25518
diff changeset
   767
    val _ = map (the_class_data thy) sort;
01753a944433 improved
haftmann
parents: 25518
diff changeset
   768
    val vs = map TFree (Name.names Name.context Name.aT sorts);
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   769
    fun type_name "*" = "prod"
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   770
      | type_name "+" = "sum"
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   771
      | type_name s = sanatize_name (NameSpace.base s); (*FIXME*)
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25574
diff changeset
   772
    fun get_param tyco (param, (c, ty)) = if can (AxClass.param_of_inst thy) (c, tyco)
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   773
      then NONE else SOME ((c, tyco),
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   774
        (param ^ "_" ^ type_name tyco, map_atyps (K (Type (tyco, vs))) ty));
01753a944433 improved
haftmann
parents: 25518
diff changeset
   775
    val params = map_product get_param tycos (these_params thy sort) |> map_filter I;
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   776
  in
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   777
    thy
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   778
    |> ProofContext.init
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   779
    |> Instantiation.put (mk_instantiation ((tycos, sorts, sort), params))
01753a944433 improved
haftmann
parents: 25518
diff changeset
   780
    |> fold (Variable.declare_term o Logic.mk_type) vs
25574
016f677ad7b8 declaration of instance parameter names
haftmann
parents: 25536
diff changeset
   781
    |> fold (Variable.declare_names o Free o snd) params
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   782
    |> fold (fn tyco => ProofContext.add_arity (tyco, sorts, sort)) tycos
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   783
    |> Context.proof_map (
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   784
        Syntax.add_term_check 0 "instance" inst_term_check
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   785
        #> Syntax.add_term_uncheck 0 "instance" inst_term_uncheck)
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   786
  end;
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   787
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   788
fun gen_instantiation_instance do_proof after_qed lthy =
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   789
  let
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   790
    val (tycos, sorts, sort) = (#arities o the_instantiation) lthy;
01753a944433 improved
haftmann
parents: 25518
diff changeset
   791
    val arities_proof = maps (fn tyco => Logic.mk_arities (tyco, sorts, sort)) tycos;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   792
    fun after_qed' results =
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   793
      LocalTheory.theory (fold (AxClass.add_arity o Thm.varifyT) results)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   794
      #> after_qed;
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   795
  in
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   796
    lthy
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   797
    |> do_proof after_qed' arities_proof
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   798
  end;
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   799
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   800
val instantiation_instance = gen_instantiation_instance (fn after_qed => fn ts =>
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   801
  Proof.theorem_i NONE (after_qed o map the_single) (map (fn t => [(t, [])]) ts));
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   802
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   803
fun prove_instantiation_instance tac = gen_instantiation_instance (fn after_qed =>
25502
9200b36280c0 instance command as rudimentary class target
haftmann
parents: 25485
diff changeset
   804
  fn ts => fn lthy => after_qed (map (fn t => Goal.prove lthy [] [] t
9200b36280c0 instance command as rudimentary class target
haftmann
parents: 25485
diff changeset
   805
    (fn {context, ...} => tac context)) ts) lthy) I;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   806
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   807
fun conclude_instantiation lthy =
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   808
  let
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   809
    val { arities, params } = the_instantiation lthy;
25536
01753a944433 improved
haftmann
parents: 25518
diff changeset
   810
    val (tycos, sorts, sort) = arities;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   811
    val thy = ProofContext.theory_of lthy;
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25574
diff changeset
   812
    val _ = map (fn tyco => if Sign.of_sort thy
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   813
        (Type (tyco, map TFree (Name.names Name.context Name.aT sorts)), sort)
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   814
      then () else error ("Missing instance proof for type " ^ quote (Sign.extern_type thy tyco)))
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25574
diff changeset
   815
        tycos;
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25574
diff changeset
   816
  in lthy end;
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25368
diff changeset
   817
25603
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   818
fun pretty_instantiation lthy =
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   819
  let
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   820
    val { arities, params } = the_instantiation lthy;
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   821
    val (tycos, sorts, sort) = arities;
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   822
    val thy = ProofContext.theory_of lthy;
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   823
    fun pr_arity tyco = Syntax.pretty_arity lthy (tyco, sorts, sort);
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   824
    fun pr_param ((c, _), (v, ty)) =
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   825
      (Pretty.block o Pretty.breaks) [(Pretty.str o Sign.extern_const thy) c, Pretty.str "::",
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   826
        Sign.pretty_typ thy ty, Pretty.str "as", Pretty.str v];
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   827
  in
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   828
    (Pretty.block o Pretty.fbreaks)
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   829
      (Pretty.str "instantiation" :: map pr_arity tycos @ map pr_param params)
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   830
  end;
4b7a58fc168c dropped Class.prep_spec
haftmann
parents: 25597
diff changeset
   831
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents:
diff changeset
   832
end;