src/Pure/axclass.ML
author paulson
Wed, 20 Mar 1996 18:39:59 +0100
changeset 1591 7fa0265dcd13
parent 1498 7b7d20e89b1b
child 2266 82aef6857c5b
permissions -rw-r--r--
New module for display/printing operations, taken from drule.ML
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/axclass.ML
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     4
560
6702a715281d cleaned sig;
wenzelm
parents: 487
diff changeset
     5
User interfaces for axiomatic type classes.
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     6
*)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     7
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
     8
signature AX_CLASS =
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
     9
  sig
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    10
  val add_thms_as_axms: (string * thm) list -> theory -> theory
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    11
  val add_classrel_thms: thm list -> theory -> theory
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    12
  val add_arity_thms: thm list -> theory -> theory
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    13
  val add_axclass: class * class list -> (string * string) list
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    14
    -> theory -> theory
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    15
  val add_axclass_i: class * class list -> (string * term) list
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    16
    -> theory -> theory
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    17
  val add_inst_subclass: class * class -> string list -> thm list
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    18
    -> tactic option -> theory -> theory
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    19
  val add_inst_arity: string * sort list * class list -> string list
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    20
    -> thm list -> tactic option -> theory -> theory
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    21
  val axclass_tac: theory -> thm list -> tactic
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    22
  val prove_subclass: theory -> class * class -> thm list
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    23
    -> tactic option -> thm
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    24
  val prove_arity: theory -> string * sort list * class -> thm list
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    25
    -> tactic option -> thm
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    26
  val goal_subclass: theory -> class * class -> thm list
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    27
  val goal_arity: theory -> string * sort list * class -> thm list
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    28
  end;
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    29
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    30
structure AxClass : AX_CLASS =
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    31
struct
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    32
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    33
(** utilities **)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    34
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    35
(* type vars *)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    36
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    37
fun map_typ_frees f (Type (t, tys)) = Type (t, map (map_typ_frees f) tys)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    38
  | map_typ_frees f (TFree a) = f a
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    39
  | map_typ_frees _ a = a;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    40
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    41
val map_term_tfrees = map_term_types o map_typ_frees;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    42
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    43
fun aT S = TFree ("'a", S);
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    44
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    45
886
9af08725600b instance: now automatically includes defs of current thy node as witnesses;
wenzelm
parents: 638
diff changeset
    46
(* get axioms and theorems *)
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    47
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    48
fun get_ax thy name =
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    49
  Some (get_axiom thy name) handle THEORY _ => None;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    50
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    51
val get_axioms = mapfilter o get_ax;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    52
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    53
val is_def = Logic.is_equals o #prop o rep_thm;
886
9af08725600b instance: now automatically includes defs of current thy node as witnesses;
wenzelm
parents: 638
diff changeset
    54
9af08725600b instance: now automatically includes defs of current thy node as witnesses;
wenzelm
parents: 638
diff changeset
    55
fun witnesses thy axms thms =
1201
de2fc8cf9b6a minor fix: instance now raises error if witness axioms don't exist;
wenzelm
parents: 886
diff changeset
    56
  map (get_axiom thy) axms @ thms @ filter is_def (map snd (axioms_of thy));
886
9af08725600b instance: now automatically includes defs of current thy node as witnesses;
wenzelm
parents: 638
diff changeset
    57
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    58
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
    59
560
6702a715281d cleaned sig;
wenzelm
parents: 487
diff changeset
    60
(** abstract syntax operations **)
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    61
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    62
(* subclass relations as terms *)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    63
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    64
fun mk_classrel (c1, c2) = Logic.mk_inclass (aT [c1], c2);
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    65
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    66
fun dest_classrel tm =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    67
  let
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    68
    fun err () = raise_term "dest_classrel" [tm];
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    69
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    70
    val (ty, c2) = Logic.dest_inclass (Logic.freeze_vars tm)
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    71
	           handle TERM _ => err ();
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    72
    val c1 = (case ty of TFree (_, [c]) => c | _ => err ());
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    73
  in
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    74
    (c1, c2)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    75
  end;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    76
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    77
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    78
(* arities as terms *)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    79
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    80
fun mk_arity (t, ss, c) =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    81
  let
449
75ac32497f09 various minor changes (names and comments);
wenzelm
parents: 423
diff changeset
    82
    val names = tl (variantlist (replicate (length ss + 1) "'", []));
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    83
    val tfrees = map TFree (names ~~ ss);
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    84
  in
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    85
    Logic.mk_inclass (Type (t, tfrees), c)
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    86
  end;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    87
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    88
fun dest_arity tm =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    89
  let
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    90
    fun err () = raise_term "dest_arity" [tm];
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    91
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    92
    val (ty, c) = Logic.dest_inclass (Logic.freeze_vars tm) 
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
    93
	          handle TERM _ => err ();
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    94
    val (t, tfrees) =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    95
      (case ty of
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    96
        Type (t, tys) => (t, map (fn TFree x => x | _ => err ()) tys)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    97
      | _ => err ());
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    98
    val ss =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
    99
      if null (gen_duplicates eq_fst tfrees)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   100
      then map snd tfrees else err ();
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   101
  in
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   102
    (t, ss, c)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   103
  end;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   104
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   105
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   106
560
6702a715281d cleaned sig;
wenzelm
parents: 487
diff changeset
   107
(** add theorems as axioms **)
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   108
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   109
fun prep_thm_axm thy thm =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   110
  let
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   111
    fun err msg = raise THM ("prep_thm_axm: " ^ msg, 0, [thm]);
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   112
1237
45ac644b0052 adapted to new version of shyps-stuff;
wenzelm
parents: 1217
diff changeset
   113
    val {sign, hyps, prop, ...} = rep_thm thm;
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   114
  in
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   115
    if not (Sign.subsig (sign, sign_of thy)) then
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   116
      err "theorem not of same theory"
1237
45ac644b0052 adapted to new version of shyps-stuff;
wenzelm
parents: 1217
diff changeset
   117
    else if not (null (extra_shyps thm)) orelse not (null hyps) then
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   118
      err "theorem may not contain hypotheses"
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   119
    else prop
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   120
  end;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   121
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   122
(*general theorems*)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   123
fun add_thms_as_axms thms thy =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   124
  add_axioms_i (map (apsnd (prep_thm_axm thy)) thms) thy;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   125
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   126
(*theorems expressing class relations*)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   127
fun add_classrel_thms thms thy =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   128
  let
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   129
    fun prep_thm thm =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   130
      let
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   131
        val prop = prep_thm_axm thy thm;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   132
        val (c1, c2) = dest_classrel prop handle TERM _ =>
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   133
          raise THM ("add_classrel_thms: theorem is not a class relation", 0, [thm]);
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   134
      in (c1, c2) end;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   135
  in
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   136
    add_classrel (map prep_thm thms) thy
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   137
  end;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   138
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   139
(*theorems expressing arities*)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   140
fun add_arity_thms thms thy =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   141
  let
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   142
    fun prep_thm thm =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   143
      let
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   144
        val prop = prep_thm_axm thy thm;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   145
        val (t, ss, c) = dest_arity prop handle TERM _ =>
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   146
          raise THM ("add_arity_thms: theorem is not an arity", 0, [thm]);
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   147
      in (t, ss, [c]) end;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   148
  in
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   149
    add_arities (map prep_thm thms) thy
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   150
  end;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   151
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   152
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   153
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   154
(** add axiomatic type classes **)
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   155
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   156
(* errors *)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   157
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   158
fun err_not_logic c =
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   159
  error ("Axiomatic class " ^ quote c ^ " not subclass of \"logic\"");
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   160
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   161
fun err_bad_axsort ax c =
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   162
  error ("Sort constraint in axiom " ^ quote ax ^ " not supersort of " ^ quote c);
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   163
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   164
fun err_bad_tfrees ax =
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   165
  error ("More than one type variable in axiom " ^ quote ax);
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   166
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   167
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   168
(* ext_axclass *)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   169
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   170
fun ext_axclass prep_axm (class, super_classes) raw_axioms old_thy =
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   171
  let
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   172
    val axioms = map (prep_axm (sign_of old_thy)) raw_axioms;
560
6702a715281d cleaned sig;
wenzelm
parents: 487
diff changeset
   173
    val thy = add_classes [(class, super_classes)] old_thy;
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   174
    val sign = sign_of thy;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   175
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   176
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   177
    (* prepare abstract axioms *)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   178
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   179
    fun abs_axm ax =
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   180
      if null (term_tfrees ax) then
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
   181
        Logic.mk_implies (Logic.mk_inclass (aT logicS, class), ax)
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   182
      else
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   183
        map_term_tfrees (K (aT [class])) ax;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   184
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   185
    val abs_axioms = map (apsnd abs_axm) axioms;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   186
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   187
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   188
    (* prepare introduction orule *)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   189
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   190
    val _ =
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   191
      if Sign.subsort sign ([class], logicS) then ()
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   192
      else err_not_logic class;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   193
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   194
    fun axm_sort (name, ax) =
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   195
      (case term_tfrees ax of
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   196
        [] => []
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   197
      | [(_, S)] =>
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   198
          if Sign.subsort sign ([class], S) then S
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   199
          else err_bad_axsort name class
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   200
      | _ => err_bad_tfrees name);
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   201
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   202
    val axS = Sign.norm_sort sign (logicC :: flat (map axm_sort axioms));
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   203
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
   204
    val int_axm = Logic.close_form o map_term_tfrees (K (aT axS));
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
   205
    fun inclass c = Logic.mk_inclass (aT axS, c);
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   206
1498
7b7d20e89b1b Elimination of fully-functorial style.
paulson
parents: 1237
diff changeset
   207
    val intro_axm = Logic.list_implies
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   208
      (map inclass super_classes @ map (int_axm o snd) axioms, inclass class);
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   209
  in
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   210
    add_axioms_i ((class ^ "I", intro_axm) :: abs_axioms) thy
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   211
  end;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   212
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   213
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   214
(* external interfaces *)
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   215
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   216
val add_axclass = ext_axclass read_axm;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   217
val add_axclass_i = ext_axclass cert_axm;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   218
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   219
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   220
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   221
(** prove class relations and type arities **)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   222
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   223
(* class_axms *)
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   224
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   225
fun class_axms thy =
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   226
  let
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   227
    val classes = Sign.classes (sign_of thy);
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   228
    val intros = map (fn c => c ^ "I") classes;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   229
  in
1217
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   230
    map (class_triv thy) classes @
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   231
    get_axioms thy intros
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   232
  end;
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   233
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   234
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   235
(* axclass_tac *)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   236
487
af83700cb771 added experimental add_defns (actually should be moved somewhere else);
wenzelm
parents: 474
diff changeset
   237
(*(1) repeatedly resolve goals of form "OFCLASS(ty, c_class)",
1217
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   238
      try class_trivs first, then "cI" axioms
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   239
  (2) rewrite goals using user supplied definitions
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   240
  (3) repeatedly resolve goals with user supplied non-definitions*)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   241
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   242
fun axclass_tac thy thms =
1217
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   243
  let
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   244
    val defs = filter is_def thms;
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   245
    val non_defs = filter_out is_def thms;
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   246
  in
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   247
    TRY (REPEAT_FIRST (resolve_tac (class_axms thy))) THEN
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   248
    TRY (rewrite_goals_tac defs) THEN
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   249
    TRY (REPEAT_FIRST (fn i => assume_tac i ORELSE resolve_tac non_defs i))
f96a04c6b352 modified prep_thm_axm to handle shyps;
wenzelm
parents: 1201
diff changeset
   250
  end;
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   251
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   252
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   253
(* provers *)
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   254
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   255
fun prove term_of str_of thy sig_prop thms usr_tac =
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   256
  let
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   257
    val sign = sign_of thy;
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   258
    val goal = cterm_of sign (term_of sig_prop);
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   259
    val tac = axclass_tac thy thms THEN (if_none usr_tac all_tac);
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   260
  in
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   261
    prove_goalw_cterm [] goal (K [tac])
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   262
  end
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   263
  handle ERROR => error ("The error(s) above occurred while trying to prove "
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   264
    ^ quote (str_of sig_prop));
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   265
638
7f25cc9067e7 prove_subclass, prove_arity now exported;
wenzelm
parents: 560
diff changeset
   266
val prove_subclass =
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   267
  prove mk_classrel (fn (c1, c2) => c1 ^ " < " ^ c2);
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   268
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   269
val prove_arity =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   270
  prove mk_arity (fn (t, ss, c) => Type.str_of_arity (t, ss, [c]));
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   271
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   272
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   273
(* make goals (for interactive use) *)
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   274
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   275
fun mk_goal term_of thy sig_prop =
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   276
  goalw_cterm [] (cterm_of (sign_of thy) (term_of sig_prop));
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   277
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   278
val goal_subclass = mk_goal mk_classrel;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   279
val goal_arity = mk_goal mk_arity;
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   280
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   281
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   282
449
75ac32497f09 various minor changes (names and comments);
wenzelm
parents: 423
diff changeset
   283
(** add proved subclass relations and arities **)
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   284
449
75ac32497f09 various minor changes (names and comments);
wenzelm
parents: 423
diff changeset
   285
fun add_inst_subclass (c1, c2) axms thms usr_tac thy =
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   286
  add_classrel_thms
886
9af08725600b instance: now automatically includes defs of current thy node as witnesses;
wenzelm
parents: 638
diff changeset
   287
  [prove_subclass thy (c1, c2) (witnesses thy axms thms) usr_tac] thy;
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   288
449
75ac32497f09 various minor changes (names and comments);
wenzelm
parents: 423
diff changeset
   289
fun add_inst_arity (t, ss, cs) axms thms usr_tac thy =
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   290
  let
886
9af08725600b instance: now automatically includes defs of current thy node as witnesses;
wenzelm
parents: 638
diff changeset
   291
    val wthms = witnesses thy axms thms;
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   292
    fun prove c =
886
9af08725600b instance: now automatically includes defs of current thy node as witnesses;
wenzelm
parents: 638
diff changeset
   293
      prove_arity thy (t, ss, c) wthms usr_tac;
423
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   294
  in
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   295
    add_arity_thms (map prove cs) thy
a42892e72854 (beta release)
wenzelm
parents: 404
diff changeset
   296
  end;
404
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   297
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   298
dd3d3d6467db axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff changeset
   299
end;