src/Pure/Isar/induct_attrib.ML
author wenzelm
Mon, 26 Feb 2007 23:18:24 +0100
changeset 22360 26ead7ed4f4b
parent 21506 b2a673894ce5
child 22846 fb79144af9a3
permissions -rw-r--r--
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11658
4200394242c5 Isar/induct_attrib.ML;
wenzelm
parents: 11656
diff changeset
     1
(*  Title:      Pure/Isar/induct_attrib.ML
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
     4
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
     5
Declaration of rules for cases and induction.
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
     6
*)
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
     7
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
     8
signature INDUCT_ATTRIB =
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
     9
sig
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    10
  val vars_of: term -> term list
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 19046
diff changeset
    11
  val dest_rules: Proof.context ->
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    12
    {type_cases: (string * thm) list, set_cases: (string * thm) list,
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    13
      type_induct: (string * thm) list, set_induct: (string * thm) list,
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    14
      type_coinduct: (string * thm) list, set_coinduct: (string * thm) list}
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 19046
diff changeset
    15
  val print_rules: Proof.context -> unit
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    16
  val lookup_casesT : Proof.context -> string -> thm option
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    17
  val lookup_casesS : Proof.context -> string -> thm option
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    18
  val lookup_inductT : Proof.context -> string -> thm option
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    19
  val lookup_inductS : Proof.context -> string -> thm option
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    20
  val lookup_coinductT : Proof.context -> string -> thm option
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    21
  val lookup_coinductS : Proof.context -> string -> thm option
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    22
  val find_casesT: Proof.context -> typ -> thm list
18226
8fde30f5cca6 find_xxxS: term instead of thm;
wenzelm
parents: 18210
diff changeset
    23
  val find_casesS: Proof.context -> term -> thm list
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    24
  val find_inductT: Proof.context -> typ -> thm list
18226
8fde30f5cca6 find_xxxS: term instead of thm;
wenzelm
parents: 18210
diff changeset
    25
  val find_inductS: Proof.context -> term -> thm list
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    26
  val find_coinductT: Proof.context -> typ -> thm list
18226
8fde30f5cca6 find_xxxS: term instead of thm;
wenzelm
parents: 18210
diff changeset
    27
  val find_coinductS: Proof.context -> term -> thm list
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    28
  val cases_type: string -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    29
  val cases_set: string -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    30
  val induct_type: string -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    31
  val induct_set: string -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    32
  val coinduct_type: string -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    33
  val coinduct_set: string -> attribute
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    34
  val casesN: string
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    35
  val inductN: string
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    36
  val coinductN: string
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    37
  val typeN: string
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    38
  val setN: string
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    39
end;
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    40
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    41
structure InductAttrib: INDUCT_ATTRIB =
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    42
struct
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    43
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    44
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    45
(** misc utils **)
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    46
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    47
(* encode_type -- for indexing purposes *)
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    48
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    49
fun encode_type (Type (c, Ts)) = Term.list_comb (Const (c, dummyT), map encode_type Ts)
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    50
  | encode_type (TFree (a, _)) = Free (a, dummyT)
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    51
  | encode_type (TVar (a, _)) = Var (a, dummyT);
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    52
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    53
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    54
(* variables -- ordered left-to-right, preferring right *)
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    55
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    56
fun vars_of tm =
19046
bc5c6c9b114e removed distinct, renamed gen_distinct to distinct;
wenzelm
parents: 18977
diff changeset
    57
  rev (distinct (op =) (Term.fold_aterms (fn (t as Var _) => cons t | _ => I) tm []));
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    58
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    59
local
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    60
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    61
val mk_var = encode_type o #2 o Term.dest_Var;
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    62
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    63
fun concl_var which thm = mk_var (which (vars_of (Thm.concl_of thm))) handle Empty =>
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    64
  raise THM ("No variables in conclusion of rule", 0, [thm]);
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    65
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    66
in
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    67
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    68
fun left_var_prem thm = mk_var (hd (vars_of (hd (Thm.prems_of thm)))) handle Empty =>
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    69
  raise THM ("No variables in major premise of rule", 0, [thm]);
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    70
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    71
val left_var_concl = concl_var hd;
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
    72
val right_var_concl = concl_var List.last;
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    73
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    74
end;
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    75
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    76
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
    77
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
    78
(** induct data **)
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    79
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    80
(* rules *)
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    81
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    82
type rules = (string * thm) NetRules.T;
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    83
12381
5177845a34f5 simplified NetRules;
wenzelm
parents: 12311
diff changeset
    84
val init_rules =
13105
3d1e7a199bdc use eq_thm_prop instead of slightly inadequate eq_thm;
wenzelm
parents: 12381
diff changeset
    85
  NetRules.init (fn ((s1: string, th1), (s2, th2)) => s1 = s2 andalso
22360
26ead7ed4f4b moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents: 21506
diff changeset
    86
    Thm.eq_thm_prop (th1, th2));
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    87
17184
3d80209e9a53 use AList operations;
wenzelm
parents: 16787
diff changeset
    88
fun lookup_rule (rs: rules) = AList.lookup (op =) (NetRules.rules rs);
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    89
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
    90
fun pretty_rules ctxt kind rs =
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    91
  let val thms = map snd (NetRules.rules rs)
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
    92
  in Pretty.big_list kind (map (ProofContext.pretty_thm ctxt) thms) end;
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    93
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    94
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
    95
(* context data *)
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
    96
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
    97
fun dest ((casesT, casesS), (inductT, inductS), (coinductT, coinductS)) =
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
    98
  {type_cases = NetRules.rules casesT,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
    99
   set_cases = NetRules.rules casesS,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   100
   type_induct = NetRules.rules inductT,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   101
   set_induct = NetRules.rules inductS,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   102
   type_coinduct = NetRules.rules coinductT,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   103
   set_coinduct = NetRules.rules coinductS};
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   104
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   105
structure Induct = GenericDataFun
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   106
(
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   107
  val name = "Isar/induct";
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   108
  type T = (rules * rules) * (rules * rules) * (rules * rules);
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   109
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
   110
  val empty =
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   111
    ((init_rules (left_var_prem o #2), init_rules (Thm.major_prem_of o #2)),
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   112
     (init_rules (right_var_concl o #2), init_rules (Thm.major_prem_of o #2)),
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   113
     (init_rules (left_var_concl o #2), init_rules (Thm.concl_of o #2)));
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   114
16424
18a07ad8fea8 accomodate change of TheoryDataFun;
wenzelm
parents: 15801
diff changeset
   115
  val extend = I;
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   116
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   117
  fun merge _ (((casesT1, casesS1), (inductT1, inductS1), (coinductT1, coinductS1)),
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   118
      ((casesT2, casesS2), (inductT2, inductS2), (coinductT2, coinductS2))) =
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   119
    ((NetRules.merge (casesT1, casesT2), NetRules.merge (casesS1, casesS2)),
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   120
      (NetRules.merge (inductT1, inductT2), NetRules.merge (inductS1, inductS2)),
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   121
      (NetRules.merge (coinductT1, coinductT2), NetRules.merge (coinductS1, coinductS2)));
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   122
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   123
  fun print generic ((casesT, casesS), (inductT, inductS), (coinductT, coinductS)) =
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   124
    let val ctxt = Context.proof_of generic in
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   125
     [pretty_rules ctxt "coinduct type:" coinductT,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   126
      pretty_rules ctxt "coinduct set:" coinductS,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   127
      pretty_rules ctxt "induct type:" inductT,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   128
      pretty_rules ctxt "induct set:" inductS,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   129
      pretty_rules ctxt "cases type:" casesT,
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   130
      pretty_rules ctxt "cases set:" casesS]
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   131
     |> Pretty.chunks |> Pretty.writeln
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   132
    end
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   133
);
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   134
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18637
diff changeset
   135
val _ = Context.add_setup Induct.init;
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 19046
diff changeset
   136
val print_rules = Induct.print o Context.Proof;
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 19046
diff changeset
   137
val dest_rules = dest o Induct.get o Context.Proof;
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   138
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   139
val get_local = Induct.get o Context.Proof;
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   140
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   141
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   142
(* access rules *)
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   143
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   144
val lookup_casesT = lookup_rule o #1 o #1 o get_local;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   145
val lookup_casesS = lookup_rule o #2 o #1 o get_local;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   146
val lookup_inductT = lookup_rule o #1 o #2 o get_local;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   147
val lookup_inductS = lookup_rule o #2 o #2 o get_local;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   148
val lookup_coinductT = lookup_rule o #1 o #3 o get_local;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   149
val lookup_coinductS = lookup_rule o #2 o #3 o get_local;
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
   150
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   151
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
   152
fun find_rules which how ctxt x =
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   153
  map snd (NetRules.retrieve (which (get_local ctxt)) (how x));
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
   154
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
   155
val find_casesT = find_rules (#1 o #1) encode_type;
18226
8fde30f5cca6 find_xxxS: term instead of thm;
wenzelm
parents: 18210
diff changeset
   156
val find_casesS = find_rules (#2 o #1) I;
11730
418533653668 removed get_cases, get_induct;
wenzelm
parents: 11665
diff changeset
   157
val find_inductT = find_rules (#1 o #2) encode_type;
18226
8fde30f5cca6 find_xxxS: term instead of thm;
wenzelm
parents: 18210
diff changeset
   158
val find_inductS = find_rules (#2 o #2) I;
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   159
val find_coinductT = find_rules (#1 o #3) encode_type;
18226
8fde30f5cca6 find_xxxS: term instead of thm;
wenzelm
parents: 18210
diff changeset
   160
val find_coinductS = find_rules (#2 o #3) I;
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   161
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   162
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   163
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   164
(** attributes **)
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   165
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   166
local
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   167
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   168
fun mk_att f g name arg =
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   169
  let val (x, thm) = g arg in (Induct.map (f (name, thm)) x, thm) end;
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   170
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   171
fun map1 f (x, y, z) = (f x, y, z);
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   172
fun map2 f (x, y, z) = (x, f y, z);
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   173
fun map3 f (x, y, z) = (x, y, f z);
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   174
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   175
fun add_casesT rule x = map1 (apfst (NetRules.insert rule)) x;
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   176
fun add_casesS rule x = map1 (apsnd (NetRules.insert rule)) x;
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   177
fun add_inductT rule x = map2 (apfst (NetRules.insert rule)) x;
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   178
fun add_inductS rule x = map2 (apsnd (NetRules.insert rule)) x;
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   179
fun add_coinductT rule x = map3 (apfst (NetRules.insert rule)) x;
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   180
fun add_coinductS rule x = map3 (apsnd (NetRules.insert rule)) x;
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   181
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   182
fun consumes0 x = RuleCases.consumes_default 0 x;
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   183
fun consumes1 x = RuleCases.consumes_default 1 x;
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   184
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   185
in
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   186
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   187
val cases_type = mk_att add_casesT consumes0;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   188
val cases_set = mk_att add_casesS consumes1;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   189
val induct_type = mk_att add_inductT consumes0;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   190
val induct_set = mk_att add_inductS consumes1;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   191
val coinduct_type = mk_att add_coinductT consumes0;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   192
val coinduct_set = mk_att add_coinductS consumes1;
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   193
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   194
end;
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   195
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   196
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   197
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   198
(** concrete syntax **)
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   199
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   200
val casesN = "cases";
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   201
val inductN = "induct";
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   202
val coinductN = "coinduct";
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   203
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   204
val typeN = "type";
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   205
val setN = "set";
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   206
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   207
local
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   208
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15570
diff changeset
   209
fun spec k arg =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15570
diff changeset
   210
  Scan.lift (Args.$$$ k -- Args.colon) |-- arg ||
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15570
diff changeset
   211
  Scan.lift (Args.$$$ k) >> K "";
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   212
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   213
fun attrib add_type add_set =
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   214
  Attrib.syntax (spec typeN Args.tyname >> add_type || spec setN Args.const >> add_set);
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   215
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   216
in
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   217
18637
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   218
val cases_att = attrib cases_type cases_set;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   219
val induct_att = attrib induct_type induct_set;
33a6f6caa617 generic data and attributes;
wenzelm
parents: 18226
diff changeset
   220
val coinduct_att = attrib coinduct_type coinduct_set;
18210
ad4b8567f6eb added coinduct attribute;
wenzelm
parents: 17184
diff changeset
   221
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   222
end;
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   223
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15710
diff changeset
   224
val _ = Context.add_setup
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18637
diff changeset
   225
 (Attrib.add_attributes
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   226
  [(casesN, cases_att, "declaration of cases rule for type or set"),
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   227
   (inductN, induct_att, "declaration of induction rule for type or set"),
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   228
   (coinductN, coinduct_att, "declaration of coinduction rule for type or set")]);
11656
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   229
e499dceca569 moved HOL/Tools/induct_attrib.ML to Pure/Isar/induct_attrib.ML;
wenzelm
parents:
diff changeset
   230
end;