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