| author | wenzelm | 
| Tue, 26 Mar 2013 20:36:32 +0100 | |
| changeset 51543 | 118f7cb0ee8e | 
| parent 49748 | a346daa8a1f4 | 
| child 51580 | 64ef8260dc60 | 
| permissions | -rw-r--r-- | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 1 | (* Title: Tools/induct.ML | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 2 | Author: Markus Wenzel, TU Muenchen | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 3 | |
| 26924 | 4 | Proof by cases, induction, and coinduction. | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 5 | *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 6 | |
| 37524 | 7 | signature INDUCT_ARGS = | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 8 | sig | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 9 | val cases_default: thm | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 10 | val atomize: thm list | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 11 | val rulify: thm list | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 12 | val rulify_fallback: thm list | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 13 | val equal_def: thm | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 14 | val dest_def: term -> (term * term) option | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 15 | val trivial_tac: int -> tactic | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 16 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 17 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 18 | signature INDUCT = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 19 | sig | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 20 | (*rule declarations*) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 21 | val vars_of: term -> term list | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 22 | val dest_rules: Proof.context -> | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 23 |     {type_cases: (string * thm) list, pred_cases: (string * thm) list,
 | 
| 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 24 | type_induct: (string * thm) list, pred_induct: (string * thm) list, | 
| 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 25 | type_coinduct: (string * thm) list, pred_coinduct: (string * thm) list} | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 26 | val print_rules: Proof.context -> unit | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 27 | val lookup_casesT: Proof.context -> string -> thm option | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 28 | val lookup_casesP: Proof.context -> string -> thm option | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 29 | val lookup_inductT: Proof.context -> string -> thm option | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 30 | val lookup_inductP: Proof.context -> string -> thm option | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 31 | val lookup_coinductT: Proof.context -> string -> thm option | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 32 | val lookup_coinductP: Proof.context -> string -> thm option | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 33 | val find_casesT: Proof.context -> typ -> thm list | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 34 | val find_casesP: Proof.context -> term -> thm list | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 35 | val find_inductT: Proof.context -> typ -> thm list | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 36 | val find_inductP: Proof.context -> term -> thm list | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 37 | val find_coinductT: Proof.context -> typ -> thm list | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 38 | val find_coinductP: Proof.context -> term -> thm list | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 39 | val cases_type: string -> attribute | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 40 | val cases_pred: string -> attribute | 
| 27140 | 41 | val cases_del: attribute | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 42 | val induct_type: string -> attribute | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 43 | val induct_pred: string -> attribute | 
| 27140 | 44 | val induct_del: attribute | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 45 | val coinduct_type: string -> attribute | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 46 | val coinduct_pred: string -> attribute | 
| 27140 | 47 | val coinduct_del: attribute | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 48 | val map_simpset: (simpset -> simpset) -> Context.generic -> Context.generic | 
| 36602 
0cbcdfd9e527
slightly more standard induct_simp_add/del attributes;
 wenzelm parents: 
35625diff
changeset | 49 | val induct_simp_add: attribute | 
| 
0cbcdfd9e527
slightly more standard induct_simp_add/del attributes;
 wenzelm parents: 
35625diff
changeset | 50 | val induct_simp_del: attribute | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 51 | val no_simpN: string | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 52 | val casesN: string | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 53 | val inductN: string | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 54 | val coinductN: string | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 55 | val typeN: string | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 56 | val predN: string | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 57 | val setN: string | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 58 | (*proof methods*) | 
| 45132 | 59 | val arbitrary_tac: Proof.context -> int -> (string * typ) list -> int -> tactic | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 60 | val add_defs: (binding option * (term * bool)) option list -> Proof.context -> | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 61 | (term option list * thm list) * Proof.context | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 62 | val atomize_term: theory -> term -> term | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 63 | val atomize_cterm: conv | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 64 | val atomize_tac: int -> tactic | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 65 | val inner_atomize_tac: int -> tactic | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 66 | val rulified_term: thm -> theory * term | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 67 | val rulify_tac: int -> tactic | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 68 | val simplified_rule: Proof.context -> thm -> thm | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 69 | val simplify_tac: Proof.context -> int -> tactic | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 70 | val trivial_tac: int -> tactic | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 71 | val rotate_tac: int -> int -> int -> tactic | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 72 | val internalize: int -> thm -> thm | 
| 26940 | 73 | val guess_instance: Proof.context -> thm -> int -> thm -> thm Seq.seq | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 74 | val cases_tac: Proof.context -> bool -> term option list list -> thm option -> | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 75 | thm list -> int -> cases_tactic | 
| 27323 
385c0ce33173
tuned get_inductT: *all* rules for missing instantiation;
 wenzelm parents: 
27140diff
changeset | 76 | val get_inductT: Proof.context -> term option list list -> thm list list | 
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 77 | type case_data = (((string * string list) * string list) list * int) (* FIXME -> rule_cases.ML *) | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 78 | val gen_induct_tac: (theory -> case_data * thm -> case_data * thm) -> | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 79 | Proof.context -> bool -> (binding option * (term * bool)) option list list -> | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 80 | (string * typ) list list -> term option list -> thm list option -> | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 81 | thm list -> int -> cases_tactic | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 82 | val induct_tac: Proof.context -> bool -> (binding option * (term * bool)) option list list -> | 
| 26924 | 83 | (string * typ) list list -> term option list -> thm list option -> | 
| 84 | thm list -> int -> cases_tactic | |
| 85 | val coinduct_tac: Proof.context -> term option list -> term option list -> thm option -> | |
| 86 | thm list -> int -> cases_tactic | |
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 87 | val gen_induct_setup: binding -> | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 88 | (Proof.context -> bool -> (binding option * (term * bool)) option list list -> | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 89 | (string * typ) list list -> term option list -> thm list option -> | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 90 | thm list -> int -> cases_tactic) -> | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 91 | theory -> theory | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 92 | val setup: theory -> theory | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 93 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 94 | |
| 37524 | 95 | functor Induct(Induct_Args: INDUCT_ARGS): INDUCT = | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 96 | struct | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 97 | |
| 37523 | 98 | (** variables -- ordered left-to-right, preferring right **) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 99 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 100 | fun vars_of tm = | 
| 45131 | 101 | rev (distinct (op =) (Term.fold_aterms (fn t as Var _ => cons t | _ => I) tm [])); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 102 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 103 | local | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 104 | |
| 37523 | 105 | val mk_var = Net.encode_type o #2 o Term.dest_Var; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 106 | |
| 47060 
e2741ec9ae36
prefer explicitly qualified exception List.Empty;
 wenzelm parents: 
46961diff
changeset | 107 | fun concl_var which thm = mk_var (which (vars_of (Thm.concl_of thm))) handle List.Empty => | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 108 |   raise THM ("No variables in conclusion of rule", 0, [thm]);
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 109 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 110 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 111 | |
| 47060 
e2741ec9ae36
prefer explicitly qualified exception List.Empty;
 wenzelm parents: 
46961diff
changeset | 112 | fun left_var_prem thm = mk_var (hd (vars_of (hd (Thm.prems_of thm)))) handle List.Empty => | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 113 |   raise THM ("No variables in major premise of rule", 0, [thm]);
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 114 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 115 | val left_var_concl = concl_var hd; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 116 | val right_var_concl = concl_var List.last; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 117 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 118 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 119 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 120 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 121 | |
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 122 | (** constraint simplification **) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 123 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 124 | (* rearrange parameters and premises to allow application of one-point-rules *) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 125 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 126 | fun swap_params_conv ctxt i j cv = | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 127 | let | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 128 | fun conv1 0 ctxt = Conv.forall_conv (cv o snd) ctxt | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 129 | | conv1 k ctxt = | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 130 |           Conv.rewr_conv @{thm swap_params} then_conv
 | 
| 37525 | 131 | Conv.forall_conv (conv1 (k - 1) o snd) ctxt | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 132 | fun conv2 0 ctxt = conv1 j ctxt | 
| 37525 | 133 | | conv2 k ctxt = Conv.forall_conv (conv2 (k - 1) o snd) ctxt | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 134 | in conv2 i ctxt end; | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 135 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 136 | fun swap_prems_conv 0 = Conv.all_conv | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 137 | | swap_prems_conv i = | 
| 37525 | 138 | Conv.implies_concl_conv (swap_prems_conv (i - 1)) then_conv | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 139 | Conv.rewr_conv Drule.swap_prems_eq | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 140 | |
| 42361 | 141 | fun drop_judgment ctxt = Object_Logic.drop_judgment (Proof_Context.theory_of ctxt); | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 142 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 143 | fun find_eq ctxt t = | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 144 | let | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 145 | val l = length (Logic.strip_params t); | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 146 | val Hs = Logic.strip_assums_hyp t; | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 147 | fun find (i, t) = | 
| 37525 | 148 | (case Induct_Args.dest_def (drop_judgment ctxt t) of | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 149 | SOME (Bound j, _) => SOME (i, j) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 150 | | SOME (_, Bound j) => SOME (i, j) | 
| 37525 | 151 | | _ => NONE); | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 152 | in | 
| 37525 | 153 | (case get_first find (map_index I Hs) of | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 154 | NONE => NONE | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 155 | | SOME (0, 0) => NONE | 
| 37525 | 156 | | SOME (i, j) => SOME (i, l - j - 1, j)) | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 157 | end; | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 158 | |
| 37525 | 159 | fun mk_swap_rrule ctxt ct = | 
| 160 | (case find_eq ctxt (term_of ct) of | |
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 161 | NONE => NONE | 
| 37525 | 162 | | SOME (i, k, j) => SOME (swap_params_conv ctxt k j (K (swap_prems_conv i)) ct)); | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 163 | |
| 37525 | 164 | val rearrange_eqs_simproc = | 
| 38715 
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
 wenzelm parents: 
37525diff
changeset | 165 | Simplifier.simproc_global | 
| 37525 | 166 | (Thm.theory_of_thm Drule.swap_prems_eq) "rearrange_eqs" ["all t"] | 
| 167 | (fn thy => fn ss => fn t => | |
| 168 | mk_swap_rrule (Simplifier.the_context ss) (cterm_of thy t)); | |
| 169 | ||
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 170 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 171 | (* rotate k premises to the left by j, skipping over first j premises *) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 172 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 173 | fun rotate_conv 0 j 0 = Conv.all_conv | 
| 37525 | 174 | | rotate_conv 0 j k = swap_prems_conv j then_conv rotate_conv 1 j (k - 1) | 
| 175 | | rotate_conv i j k = Conv.implies_concl_conv (rotate_conv (i - 1) j k); | |
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 176 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 177 | fun rotate_tac j 0 = K all_tac | 
| 37525 | 178 | | rotate_tac j k = SUBGOAL (fn (goal, i) => | 
| 179 | CONVERSION (rotate_conv | |
| 180 | j (length (Logic.strip_assums_hyp goal) - j - k) k) i); | |
| 181 | ||
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 182 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 183 | (* rulify operators around definition *) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 184 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 185 | fun rulify_defs_conv ctxt ct = | 
| 37524 | 186 | if exists_subterm (is_some o Induct_Args.dest_def) (term_of ct) andalso | 
| 187 | not (is_some (Induct_Args.dest_def (drop_judgment ctxt (term_of ct)))) | |
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 188 | then | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 189 | (Conv.forall_conv (rulify_defs_conv o snd) ctxt else_conv | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 190 | Conv.implies_conv (Conv.try_conv (rulify_defs_conv ctxt)) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 191 | (Conv.try_conv (rulify_defs_conv ctxt)) else_conv | 
| 37524 | 192 | Conv.first_conv (map Conv.rewr_conv Induct_Args.rulify) then_conv | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 193 | Conv.try_conv (rulify_defs_conv ctxt)) ct | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 194 | else Conv.no_conv ct; | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 195 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 196 | |
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 197 | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 198 | (** induct data **) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 199 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 200 | (* rules *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 201 | |
| 30560 | 202 | type rules = (string * thm) Item_Net.T; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 203 | |
| 33373 | 204 | fun init_rules index : rules = | 
| 205 | Item_Net.init | |
| 206 | (fn ((s1, th1), (s2, th2)) => s1 = s2 andalso Thm.eq_thm_prop (th1, th2)) | |
| 207 | (single o index); | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 208 | |
| 27140 | 209 | fun filter_rules (rs: rules) th = | 
| 30560 | 210 | filter (fn (_, th') => Thm.eq_thm_prop (th, th')) (Item_Net.content rs); | 
| 27140 | 211 | |
| 30560 | 212 | fun lookup_rule (rs: rules) = AList.lookup (op =) (Item_Net.content rs); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 213 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 214 | fun pretty_rules ctxt kind rs = | 
| 30560 | 215 | let val thms = map snd (Item_Net.content rs) | 
| 32091 
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
 wenzelm parents: 
32032diff
changeset | 216 | in Pretty.big_list kind (map (Display.pretty_thm ctxt) thms) end; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 217 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 218 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 219 | (* context data *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 220 | |
| 37524 | 221 | structure Data = Generic_Data | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 222 | ( | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 223 | type T = (rules * rules) * (rules * rules) * (rules * rules) * simpset; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 224 | val empty = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 225 | ((init_rules (left_var_prem o #2), init_rules (Thm.major_prem_of o #2)), | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 226 | (init_rules (right_var_concl o #2), init_rules (Thm.major_prem_of o #2)), | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 227 | (init_rules (left_var_concl o #2), init_rules (Thm.concl_of o #2)), | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 228 | empty_ss addsimprocs [rearrange_eqs_simproc] addsimps [Drule.norm_hhf_eq]); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 229 | val extend = I; | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 230 | fun merge (((casesT1, casesP1), (inductT1, inductP1), (coinductT1, coinductP1), simpset1), | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 231 | ((casesT2, casesP2), (inductT2, inductP2), (coinductT2, coinductP2), simpset2)) = | 
| 30560 | 232 | ((Item_Net.merge (casesT1, casesT2), Item_Net.merge (casesP1, casesP2)), | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 233 | (Item_Net.merge (inductT1, inductT2), Item_Net.merge (inductP1, inductP2)), | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 234 | (Item_Net.merge (coinductT1, coinductT2), Item_Net.merge (coinductP1, coinductP2)), | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 235 | merge_ss (simpset1, simpset2)); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 236 | ); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 237 | |
| 37524 | 238 | val get_local = Data.get o Context.Proof; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 239 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 240 | fun dest_rules ctxt = | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 241 | let val ((casesT, casesP), (inductT, inductP), (coinductT, coinductP), _) = get_local ctxt in | 
| 30560 | 242 |     {type_cases = Item_Net.content casesT,
 | 
| 243 | pred_cases = Item_Net.content casesP, | |
| 244 | type_induct = Item_Net.content inductT, | |
| 245 | pred_induct = Item_Net.content inductP, | |
| 246 | type_coinduct = Item_Net.content coinductT, | |
| 247 | pred_coinduct = Item_Net.content coinductP} | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 248 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 249 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 250 | fun print_rules ctxt = | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 251 | let val ((casesT, casesP), (inductT, inductP), (coinductT, coinductP), _) = get_local ctxt in | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 252 | [pretty_rules ctxt "coinduct type:" coinductT, | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 253 | pretty_rules ctxt "coinduct pred:" coinductP, | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 254 | pretty_rules ctxt "induct type:" inductT, | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 255 | pretty_rules ctxt "induct pred:" inductP, | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 256 | pretty_rules ctxt "cases type:" casesT, | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 257 | pretty_rules ctxt "cases pred:" casesP] | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 258 | |> Pretty.chunks |> Pretty.writeln | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 259 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 260 | |
| 24867 | 261 | val _ = | 
| 46961 
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
 wenzelm parents: 
45375diff
changeset | 262 |   Outer_Syntax.improper_command @{command_spec "print_induct_rules"}
 | 
| 
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
 wenzelm parents: 
45375diff
changeset | 263 | "print induction and cases rules" | 
| 
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
 wenzelm parents: 
45375diff
changeset | 264 | (Scan.succeed (Toplevel.no_timing o Toplevel.unknown_context o | 
| 24867 | 265 | Toplevel.keep (print_rules o Toplevel.context_of))); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 266 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 267 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 268 | (* access rules *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 269 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 270 | val lookup_casesT = lookup_rule o #1 o #1 o get_local; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 271 | val lookup_casesP = lookup_rule o #2 o #1 o get_local; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 272 | val lookup_inductT = lookup_rule o #1 o #2 o get_local; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 273 | val lookup_inductP = lookup_rule o #2 o #2 o get_local; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 274 | val lookup_coinductT = lookup_rule o #1 o #3 o get_local; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 275 | val lookup_coinductP = lookup_rule o #2 o #3 o get_local; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 276 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 277 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 278 | fun find_rules which how ctxt x = | 
| 30560 | 279 | map snd (Item_Net.retrieve (which (get_local ctxt)) (how x)); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 280 | |
| 37523 | 281 | val find_casesT = find_rules (#1 o #1) Net.encode_type; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 282 | val find_casesP = find_rules (#2 o #1) I; | 
| 37523 | 283 | val find_inductT = find_rules (#1 o #2) Net.encode_type; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 284 | val find_inductP = find_rules (#2 o #2) I; | 
| 37523 | 285 | val find_coinductT = find_rules (#1 o #3) Net.encode_type; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 286 | val find_coinductP = find_rules (#2 o #3) I; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 287 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 288 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 289 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 290 | (** attributes **) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 291 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 292 | local | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 293 | |
| 45375 
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
 wenzelm parents: 
45328diff
changeset | 294 | fun mk_att f g name = | 
| 
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
 wenzelm parents: 
45328diff
changeset | 295 | Thm.mixed_attribute (fn (context, thm) => | 
| 
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
 wenzelm parents: 
45328diff
changeset | 296 | let | 
| 
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
 wenzelm parents: 
45328diff
changeset | 297 | val thm' = g thm; | 
| 
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
 wenzelm parents: 
45328diff
changeset | 298 | val context' = Data.map (f (name, thm')) context; | 
| 
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
 wenzelm parents: 
45328diff
changeset | 299 | in (context', thm') end); | 
| 27140 | 300 | |
| 37525 | 301 | fun del_att which = | 
| 302 | Thm.declaration_attribute (fn th => Data.map (which (pairself (fn rs => | |
| 303 | fold Item_Net.remove (filter_rules rs th) rs)))); | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 304 | |
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 305 | fun map1 f (x, y, z, s) = (f x, y, z, s); | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 306 | fun map2 f (x, y, z, s) = (x, f y, z, s); | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 307 | fun map3 f (x, y, z, s) = (x, y, f z, s); | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 308 | fun map4 f (x, y, z, s) = (x, y, z, f s); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 309 | |
| 33373 | 310 | fun add_casesT rule x = map1 (apfst (Item_Net.update rule)) x; | 
| 311 | fun add_casesP rule x = map1 (apsnd (Item_Net.update rule)) x; | |
| 312 | fun add_inductT rule x = map2 (apfst (Item_Net.update rule)) x; | |
| 313 | fun add_inductP rule x = map2 (apsnd (Item_Net.update rule)) x; | |
| 314 | fun add_coinductT rule x = map3 (apfst (Item_Net.update rule)) x; | |
| 315 | fun add_coinductP rule x = map3 (apsnd (Item_Net.update rule)) x; | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 316 | |
| 45375 
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
 wenzelm parents: 
45328diff
changeset | 317 | val consumes0 = Rule_Cases.default_consumes 0; | 
| 
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
 wenzelm parents: 
45328diff
changeset | 318 | val consumes1 = Rule_Cases.default_consumes 1; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 319 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 320 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 321 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 322 | val cases_type = mk_att add_casesT consumes0; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 323 | val cases_pred = mk_att add_casesP consumes1; | 
| 27140 | 324 | val cases_del = del_att map1; | 
| 325 | ||
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 326 | val induct_type = mk_att add_inductT consumes0; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 327 | val induct_pred = mk_att add_inductP consumes1; | 
| 27140 | 328 | val induct_del = del_att map2; | 
| 329 | ||
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 330 | val coinduct_type = mk_att add_coinductT consumes0; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 331 | val coinduct_pred = mk_att add_coinductP consumes1; | 
| 27140 | 332 | val coinduct_del = del_att map3; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 333 | |
| 37524 | 334 | fun map_simpset f = Data.map (map4 f); | 
| 36602 
0cbcdfd9e527
slightly more standard induct_simp_add/del attributes;
 wenzelm parents: 
35625diff
changeset | 335 | |
| 
0cbcdfd9e527
slightly more standard induct_simp_add/del attributes;
 wenzelm parents: 
35625diff
changeset | 336 | fun induct_simp f = | 
| 
0cbcdfd9e527
slightly more standard induct_simp_add/del attributes;
 wenzelm parents: 
35625diff
changeset | 337 | Thm.declaration_attribute (fn thm => fn context => | 
| 37525 | 338 | map_simpset | 
| 339 | (Simplifier.with_context (Context.proof_of context) (fn ss => f (ss, [thm]))) context); | |
| 36602 
0cbcdfd9e527
slightly more standard induct_simp_add/del attributes;
 wenzelm parents: 
35625diff
changeset | 340 | |
| 
0cbcdfd9e527
slightly more standard induct_simp_add/del attributes;
 wenzelm parents: 
35625diff
changeset | 341 | val induct_simp_add = induct_simp (op addsimps); | 
| 
0cbcdfd9e527
slightly more standard induct_simp_add/del attributes;
 wenzelm parents: 
35625diff
changeset | 342 | val induct_simp_del = induct_simp (op delsimps); | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 343 | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 344 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 345 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 346 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 347 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 348 | (** attribute syntax **) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 349 | |
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 350 | val no_simpN = "no_simp"; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 351 | val casesN = "cases"; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 352 | val inductN = "induct"; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 353 | val coinductN = "coinduct"; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 354 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 355 | val typeN = "type"; | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 356 | val predN = "pred"; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 357 | val setN = "set"; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 358 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 359 | local | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 360 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 361 | fun spec k arg = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 362 | Scan.lift (Args.$$$ k -- Args.colon) |-- arg || | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 363 | Scan.lift (Args.$$$ k) >> K ""; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 364 | |
| 30528 | 365 | fun attrib add_type add_pred del = | 
| 35400 
1fad91c02b98
type/const name: explicitly allow abbreviations as well;
 wenzelm parents: 
35360diff
changeset | 366 | spec typeN (Args.type_name false) >> add_type || | 
| 
1fad91c02b98
type/const name: explicitly allow abbreviations as well;
 wenzelm parents: 
35360diff
changeset | 367 | spec predN (Args.const false) >> add_pred || | 
| 
1fad91c02b98
type/const name: explicitly allow abbreviations as well;
 wenzelm parents: 
35360diff
changeset | 368 | spec setN (Args.const false) >> add_pred || | 
| 30528 | 369 | Scan.lift Args.del >> K del; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 370 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 371 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 372 | |
| 30528 | 373 | val attrib_setup = | 
| 30722 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 374 |   Attrib.setup @{binding cases} (attrib cases_type cases_pred cases_del)
 | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 375 | "declaration of cases rule" #> | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 376 |   Attrib.setup @{binding induct} (attrib induct_type induct_pred induct_del)
 | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 377 | "declaration of induction rule" #> | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 378 |   Attrib.setup @{binding coinduct} (attrib coinduct_type coinduct_pred coinduct_del)
 | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 379 | "declaration of coinduction rule" #> | 
| 36602 
0cbcdfd9e527
slightly more standard induct_simp_add/del attributes;
 wenzelm parents: 
35625diff
changeset | 380 |   Attrib.setup @{binding induct_simp} (Attrib.add_del induct_simp_add induct_simp_del)
 | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 381 | "declaration of rules for simplifying induction or cases rules"; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 382 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 383 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 384 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 385 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 386 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 387 | (** method utils **) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 388 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 389 | (* alignment *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 390 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 391 | fun align_left msg xs ys = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 392 | let val m = length xs and n = length ys | 
| 33957 | 393 | in if m < n then error msg else (take n xs ~~ ys) end; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 394 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 395 | fun align_right msg xs ys = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 396 | let val m = length xs and n = length ys | 
| 33957 | 397 | in if m < n then error msg else (drop (m - n) xs ~~ ys) end; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 398 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 399 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 400 | (* prep_inst *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 401 | |
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 402 | fun prep_inst ctxt align tune (tm, ts) = | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 403 | let | 
| 42361 | 404 | val cert = Thm.cterm_of (Proof_Context.theory_of ctxt); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 405 | fun prep_var (x, SOME t) = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 406 | let | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 407 | val cx = cert x; | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26568diff
changeset | 408 | val xT = #T (Thm.rep_cterm cx); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 409 | val ct = cert (tune t); | 
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 410 | val tT = #T (Thm.rep_cterm ct); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 411 | in | 
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 412 | if Type.could_unify (tT, xT) then SOME (cx, ct) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 413 | else error (Pretty.string_of (Pretty.block | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 414 | [Pretty.str "Ill-typed instantiation:", Pretty.fbrk, | 
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 415 | Syntax.pretty_term ctxt (Thm.term_of ct), Pretty.str " ::", Pretty.brk 1, | 
| 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 416 | Syntax.pretty_typ ctxt tT])) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 417 | end | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 418 | | prep_var (_, NONE) = NONE; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 419 | val xs = vars_of tm; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 420 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 421 | align "Rule has fewer variables than instantiations given" xs ts | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 422 | |> map_filter prep_var | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 423 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 424 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 425 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 426 | (* trace_rules *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 427 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 428 | fun trace_rules _ kind [] = error ("Unable to figure out " ^ kind ^ " rule")
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 429 | | trace_rules ctxt _ rules = Method.trace ctxt rules; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 430 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 431 | |
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 432 | (* mark equality constraints in cases rule *) | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 433 | |
| 37524 | 434 | val equal_def' = Thm.symmetric Induct_Args.equal_def; | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 435 | |
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 436 | fun mark_constraints n ctxt = Conv.fconv_rule | 
| 45130 | 437 | (Conv.prems_conv ~1 (Conv.params_conv ~1 (K (Conv.prems_conv n | 
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
38715diff
changeset | 438 | (Raw_Simplifier.rewrite false [equal_def']))) ctxt)); | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 439 | |
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 440 | val unmark_constraints = Conv.fconv_rule | 
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
38715diff
changeset | 441 | (Raw_Simplifier.rewrite true [Induct_Args.equal_def]); | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 442 | |
| 37525 | 443 | |
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 444 | (* simplify *) | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 445 | |
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 446 | fun simplify_conv' ctxt = | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 447 | Simplifier.full_rewrite (Simplifier.context ctxt (#4 (get_local ctxt))); | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 448 | |
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 449 | fun simplify_conv ctxt ct = | 
| 37524 | 450 | if exists_subterm (is_some o Induct_Args.dest_def) (term_of ct) then | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 451 | (Conv.try_conv (rulify_defs_conv ctxt) then_conv simplify_conv' ctxt) ct | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 452 | else Conv.all_conv ct; | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 453 | |
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 454 | fun gen_simplified_rule cv ctxt = | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 455 | Conv.fconv_rule (Conv.prems_conv ~1 (cv ctxt)); | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 456 | |
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 457 | val simplified_rule' = gen_simplified_rule simplify_conv'; | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 458 | val simplified_rule = gen_simplified_rule simplify_conv; | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 459 | |
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 460 | fun simplify_tac ctxt = CONVERSION (simplify_conv ctxt); | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 461 | |
| 37524 | 462 | val trivial_tac = Induct_Args.trivial_tac; | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 463 | |
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 464 | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 465 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 466 | (** cases method **) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 467 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 468 | (* | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 469 | rule selection scheme: | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 470 | cases - default case split | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 471 | `A t` cases ... - predicate/set cases | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 472 | cases t - type cases | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 473 | ... cases ... r - explicit rule | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 474 | *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 475 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 476 | local | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 477 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 478 | fun get_casesT ctxt ((SOME t :: _) :: _) = find_casesT ctxt (Term.fastype_of t) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 479 | | get_casesT _ _ = []; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 480 | |
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 481 | fun get_casesP ctxt (fact :: _) = find_casesP ctxt (Thm.concl_of fact) | 
| 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 482 | | get_casesP _ _ = []; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 483 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 484 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 485 | |
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 486 | fun cases_tac ctxt simp insts opt_rule facts = | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 487 | let | 
| 42361 | 488 | val thy = Proof_Context.theory_of ctxt; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 489 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 490 | fun inst_rule r = | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 491 | (if null insts then r | 
| 45131 | 492 | else | 
| 493 | (align_left "Rule has fewer premises than arguments given" (Thm.prems_of r) insts | |
| 494 | |> maps (prep_inst ctxt align_left I) | |
| 495 | |> Drule.cterm_instantiate) r) | |
| 496 | |> simp ? mark_constraints (Rule_Cases.get_constraints r) ctxt | |
| 497 | |> pair (Rule_Cases.get r); | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 498 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 499 | val ruleq = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 500 | (case opt_rule of | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 501 | SOME r => Seq.single (inst_rule r) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 502 | | NONE => | 
| 37524 | 503 | (get_casesP ctxt facts @ get_casesT ctxt insts @ [Induct_Args.cases_default]) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 504 | |> tap (trace_rules ctxt casesN) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 505 | |> Seq.of_list |> Seq.maps (Seq.try inst_rule)); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 506 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 507 | fn i => fn st => | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 508 | ruleq | 
| 33368 | 509 | |> Seq.maps (Rule_Cases.consume [] facts) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 510 | |> Seq.maps (fn ((cases, (_, more_facts)), rule) => | 
| 45131 | 511 | let | 
| 512 | val rule' = rule | |
| 513 | |> simp ? (simplified_rule' ctxt #> unmark_constraints); | |
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 514 | in | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 515 | CASES (Rule_Cases.make_common (thy, | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 516 | Thm.prop_of (Rule_Cases.internalize_params rule')) cases) | 
| 45130 | 517 | ((Method.insert_tac more_facts THEN' rtac rule' THEN_ALL_NEW | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 518 | (if simp then TRY o trivial_tac else K all_tac)) i) st | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 519 | end) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 520 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 521 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 522 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 523 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 524 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 525 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 526 | (** induct method **) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 527 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 528 | val conjunction_congs = [@{thm Pure.all_conjunction}, @{thm imp_conjunction}];
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 529 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 530 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 531 | (* atomize *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 532 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 533 | fun atomize_term thy = | 
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
38715diff
changeset | 534 | Raw_Simplifier.rewrite_term thy Induct_Args.atomize [] | 
| 35625 | 535 | #> Object_Logic.drop_judgment thy; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 536 | |
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
38715diff
changeset | 537 | val atomize_cterm = Raw_Simplifier.rewrite true Induct_Args.atomize; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 538 | |
| 37524 | 539 | val atomize_tac = Simplifier.rewrite_goal_tac Induct_Args.atomize; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 540 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 541 | val inner_atomize_tac = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 542 | Simplifier.rewrite_goal_tac (map Thm.symmetric conjunction_congs) THEN' atomize_tac; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 543 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 544 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 545 | (* rulify *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 546 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 547 | fun rulify_term thy = | 
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
38715diff
changeset | 548 | Raw_Simplifier.rewrite_term thy (Induct_Args.rulify @ conjunction_congs) [] #> | 
| 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
38715diff
changeset | 549 | Raw_Simplifier.rewrite_term thy Induct_Args.rulify_fallback []; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 550 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 551 | fun rulified_term thm = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 552 | let | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 553 | val thy = Thm.theory_of_thm thm; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 554 | val rulify = rulify_term thy; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 555 | val (As, B) = Logic.strip_horn (Thm.prop_of thm); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 556 | in (thy, Logic.list_implies (map rulify As, rulify B)) end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 557 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 558 | val rulify_tac = | 
| 37524 | 559 | Simplifier.rewrite_goal_tac (Induct_Args.rulify @ conjunction_congs) THEN' | 
| 560 | Simplifier.rewrite_goal_tac Induct_Args.rulify_fallback THEN' | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 561 | Goal.conjunction_tac THEN_ALL_NEW | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 562 |   (Simplifier.rewrite_goal_tac [@{thm Pure.conjunction_imp}] THEN' Goal.norm_hhf_tac);
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 563 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 564 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 565 | (* prepare rule *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 566 | |
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 567 | fun rule_instance ctxt inst rule = | 
| 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 568 | Drule.cterm_instantiate (prep_inst ctxt align_left I (Thm.prop_of rule, inst)) rule; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 569 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 570 | fun internalize k th = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 571 | th |> Thm.permute_prems 0 k | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 572 | |> Conv.fconv_rule (Conv.concl_conv (Thm.nprems_of th - k) atomize_cterm); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 573 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 574 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 575 | (* guess rule instantiation -- cannot handle pending goal parameters *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 576 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 577 | local | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 578 | |
| 32032 | 579 | fun dest_env thy env = | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 580 | let | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 581 | val cert = Thm.cterm_of thy; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 582 | val certT = Thm.ctyp_of thy; | 
| 32032 | 583 | val pairs = Vartab.dest (Envir.term_env env); | 
| 584 | val types = Vartab.dest (Envir.type_env env); | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 585 | val ts = map (cert o Envir.norm_term env o #2 o #2) pairs; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 586 | val xs = map2 (curry (cert o Var)) (map #1 pairs) (map (#T o Thm.rep_cterm) ts); | 
| 32032 | 587 | in (map (fn (xi, (S, T)) => (certT (TVar (xi, S)), certT T)) types, xs ~~ ts) end; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 588 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 589 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 590 | |
| 26940 | 591 | fun guess_instance ctxt rule i st = | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 592 | let | 
| 42361 | 593 | val thy = Proof_Context.theory_of ctxt; | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26568diff
changeset | 594 | val maxidx = Thm.maxidx_of st; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 595 | val goal = Thm.term_of (Thm.cprem_of st i); (*exception Subscript*) | 
| 29276 | 596 | val params = rev (Term.rename_wrt_term goal (Logic.strip_params goal)); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 597 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 598 | if not (null params) then | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 599 |       (warning ("Cannot determine rule instantiation due to pending parameter(s): " ^
 | 
| 49660 
de49d9b4d7bc
more explicit Syntax_Trans.mark_bound_abs/mark_bound_body: preserve type information for show_markup;
 wenzelm parents: 
47060diff
changeset | 600 | commas_quote (map (Syntax.string_of_term ctxt o Syntax_Trans.mark_bound_abs) params)); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 601 | Seq.single rule) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 602 | else | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 603 | let | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 604 | val rule' = Thm.incr_indexes (maxidx + 1) rule; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 605 | val concl = Logic.strip_assums_concl goal; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 606 | in | 
| 32032 | 607 | Unify.smash_unifiers thy [(Thm.concl_of rule', concl)] (Envir.empty (Thm.maxidx_of rule')) | 
| 43333 
2bdec7f430d3
renamed Drule.instantiate to Drule.instantiate_normalize to emphasize its meaning as opposed to plain Thm.instantiate;
 wenzelm parents: 
43326diff
changeset | 608 | |> Seq.map (fn env => Drule.instantiate_normalize (dest_env thy env) rule') | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 609 | end | 
| 43333 
2bdec7f430d3
renamed Drule.instantiate to Drule.instantiate_normalize to emphasize its meaning as opposed to plain Thm.instantiate;
 wenzelm parents: 
43326diff
changeset | 610 | end | 
| 
2bdec7f430d3
renamed Drule.instantiate to Drule.instantiate_normalize to emphasize its meaning as opposed to plain Thm.instantiate;
 wenzelm parents: 
43326diff
changeset | 611 | handle General.Subscript => Seq.empty; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 612 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 613 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 614 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 615 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 616 | (* special renaming of rule parameters *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 617 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 618 | fun special_rename_params ctxt [[SOME (Free (z, Type (T, _)))]] [thm] = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 619 | let | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42361diff
changeset | 620 | val x = Name.clean (Variable.revert_fixed ctxt z); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 621 | fun index i [] = [] | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 622 | | index i (y :: ys) = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 623 | if x = y then x ^ string_of_int i :: index (i + 1) ys | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 624 | else y :: index i ys; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 625 | fun rename_params [] = [] | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 626 | | rename_params ((y, Type (U, _)) :: ys) = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 627 | (if U = T then x else y) :: rename_params ys | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 628 | | rename_params ((y, _) :: ys) = y :: rename_params ys; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 629 | fun rename_asm A = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 630 | let | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 631 | val xs = rename_params (Logic.strip_params A); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 632 | val xs' = | 
| 28375 | 633 | (case filter (fn x' => x' = x) xs of | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 634 | [] => xs | [_] => xs | _ => index 1 xs); | 
| 45328 | 635 | in Logic.list_rename_params xs' A end; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 636 | fun rename_prop p = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 637 | let val (As, C) = Logic.strip_horn p | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 638 | in Logic.list_implies (map rename_asm As, C) end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 639 | val cp' = cterm_fun rename_prop (Thm.cprop_of thm); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 640 | val thm' = Thm.equal_elim (Thm.reflexive cp') thm; | 
| 33368 | 641 | in [Rule_Cases.save thm thm'] end | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 642 | | special_rename_params _ _ ths = ths; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 643 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 644 | |
| 45132 | 645 | (* arbitrary_tac *) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 646 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 647 | local | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 648 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 649 | fun goal_prefix k ((c as Const ("all", _)) $ Abs (a, T, B)) = c $ Abs (a, T, goal_prefix k B)
 | 
| 45156 | 650 | | goal_prefix 0 _ = Term.dummy_prop | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 651 |   | goal_prefix k ((c as Const ("==>", _)) $ A $ B) = c $ A $ goal_prefix (k - 1) B
 | 
| 45156 | 652 | | goal_prefix _ _ = Term.dummy_prop; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 653 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 654 | fun goal_params k (Const ("all", _) $ Abs (_, _, B)) = goal_params k B + 1
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 655 | | goal_params 0 _ = 0 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 656 |   | goal_params k (Const ("==>", _) $ _ $ B) = goal_params (k - 1) B
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 657 | | goal_params _ _ = 0; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 658 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 659 | fun meta_spec_tac ctxt n (x, T) = SUBGOAL (fn (goal, i) => | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 660 | let | 
| 42361 | 661 | val thy = Proof_Context.theory_of ctxt; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 662 | val cert = Thm.cterm_of thy; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 663 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 664 | val v = Free (x, T); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 665 | fun spec_rule prfx (xs, body) = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 666 |       @{thm Pure.meta_spec}
 | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42361diff
changeset | 667 | |> Thm.rename_params_rule ([Name.clean (Variable.revert_fixed ctxt x)], 1) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 668 | |> Thm.lift_rule (cert prfx) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 669 | |> `(Thm.prop_of #> Logic.strip_assums_concl) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 670 | |-> (fn pred $ arg => | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 671 | Drule.cterm_instantiate | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 672 | [(cert (Term.head_of pred), cert (Logic.rlist_abs (xs, body))), | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 673 | (cert (Term.head_of arg), cert (Logic.rlist_abs (xs, v)))]); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 674 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 675 |     fun goal_concl k xs (Const ("all", _) $ Abs (a, T, B)) = goal_concl k ((a, T) :: xs) B
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 676 | | goal_concl 0 xs B = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 677 | if not (Term.exists_subterm (fn t => t aconv v) B) then NONE | 
| 44241 | 678 | else SOME (xs, absfree (x, T) (Term.incr_boundvars 1 B)) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 679 |       | goal_concl k xs (Const ("==>", _) $ _ $ B) = goal_concl (k - 1) xs B
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 680 | | goal_concl _ _ _ = NONE; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 681 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 682 | (case goal_concl n [] goal of | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 683 | SOME concl => | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 684 | (compose_tac (false, spec_rule (goal_prefix n goal) concl, 1) THEN' rtac asm_rl) i | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 685 | | NONE => all_tac) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 686 | end); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 687 | |
| 24832 | 688 | fun miniscope_tac p = CONVERSION o | 
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
38715diff
changeset | 689 | Conv.params_conv p (K (Raw_Simplifier.rewrite true [Thm.symmetric Drule.norm_hhf_eq])); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 690 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 691 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 692 | |
| 45132 | 693 | fun arbitrary_tac _ _ [] = K all_tac | 
| 694 | | arbitrary_tac ctxt n xs = SUBGOAL (fn (goal, i) => | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 695 | (EVERY' (map (meta_spec_tac ctxt n) xs) THEN' | 
| 24832 | 696 | (miniscope_tac (goal_params n goal) ctxt)) i); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 697 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 698 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 699 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 700 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 701 | (* add_defs *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 702 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 703 | fun add_defs def_insts = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 704 | let | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 705 | fun add (SOME (_, (t, true))) ctxt = ((SOME t, []), ctxt) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 706 | | add (SOME (SOME x, (t, _))) ctxt = | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27865diff
changeset | 707 | let val ([(lhs, (_, th))], ctxt') = | 
| 49748 
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
 wenzelm parents: 
49660diff
changeset | 708 | Local_Defs.add_defs [((x, NoSyn), ((Thm.def_binding x, []), t))] ctxt | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 709 | in ((SOME lhs, [th]), ctxt') end | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 710 | | add (SOME (NONE, (t as Free _, _))) ctxt = ((SOME t, []), ctxt) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 711 | | add (SOME (NONE, (t, _))) ctxt = | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 712 | let | 
| 43326 
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
 wenzelm parents: 
43278diff
changeset | 713 | val (s, _) = Name.variant "x" (Variable.names_of ctxt); | 
| 49748 
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
 wenzelm parents: 
49660diff
changeset | 714 | val x = Binding.name s; | 
| 
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
 wenzelm parents: 
49660diff
changeset | 715 | val ([(lhs, (_, th))], ctxt') = ctxt | 
| 
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
 wenzelm parents: 
49660diff
changeset | 716 | |> Local_Defs.add_defs [((x, NoSyn), ((Thm.def_binding x, []), t))]; | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 717 | in ((SOME lhs, [th]), ctxt') end | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 718 | | add NONE ctxt = ((NONE, []), ctxt); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 719 | in fold_map add def_insts #> apfst (split_list #> apsnd flat) end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 720 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 721 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 722 | (* induct_tac *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 723 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 724 | (* | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 725 | rule selection scheme: | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 726 | `A x` induct ... - predicate/set induction | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 727 | induct x - type induction | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 728 | ... induct ... r - explicit rule | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 729 | *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 730 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 731 | fun get_inductT ctxt insts = | 
| 32188 | 732 | fold_rev (map_product cons) (insts |> map | 
| 27323 
385c0ce33173
tuned get_inductT: *all* rules for missing instantiation;
 wenzelm parents: 
27140diff
changeset | 733 | ((fn [] => NONE | ts => List.last ts) #> | 
| 
385c0ce33173
tuned get_inductT: *all* rules for missing instantiation;
 wenzelm parents: 
27140diff
changeset | 734 |         (fn NONE => TVar (("'a", 0), []) | SOME t => Term.fastype_of t) #>
 | 
| 
385c0ce33173
tuned get_inductT: *all* rules for missing instantiation;
 wenzelm parents: 
27140diff
changeset | 735 | find_inductT ctxt)) [[]] | 
| 33368 | 736 | |> filter_out (forall Rule_Cases.is_inner_rule); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 737 | |
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 738 | fun get_inductP ctxt (fact :: _) = map single (find_inductP ctxt (Thm.concl_of fact)) | 
| 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 739 | | get_inductP _ _ = []; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 740 | |
| 45130 | 741 | type case_data = (((string * string list) * string list) list * int); | 
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 742 | |
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 743 | fun gen_induct_tac mod_cases ctxt simp def_insts arbitrary taking opt_rule facts = | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 744 | let | 
| 42361 | 745 | val thy = Proof_Context.theory_of ctxt; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 746 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 747 | val ((insts, defs), defs_ctxt) = fold_map add_defs def_insts ctxt |>> split_list; | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 748 | val atomized_defs = map (map (Conv.fconv_rule atomize_cterm)) defs; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 749 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 750 | fun inst_rule (concls, r) = | 
| 33368 | 751 | (if null insts then `Rule_Cases.get r | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 752 | else (align_left "Rule has fewer conclusions than arguments given" | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 753 | (map Logic.strip_imp_concl (Logic.dest_conjunctions (Thm.concl_of r))) insts | 
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 754 | |> maps (prep_inst ctxt align_right (atomize_term thy)) | 
| 33368 | 755 | |> Drule.cterm_instantiate) r |> pair (Rule_Cases.get r)) | 
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 756 | |> mod_cases thy | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 757 | |> (fn ((cases, consumes), th) => (((cases, concls), consumes), th)); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 758 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 759 | val ruleq = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 760 | (case opt_rule of | 
| 33368 | 761 | SOME rs => Seq.single (inst_rule (Rule_Cases.strict_mutual_rule ctxt rs)) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 762 | | NONE => | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 763 | (get_inductP ctxt facts @ | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 764 | map (special_rename_params defs_ctxt insts) (get_inductT ctxt insts)) | 
| 33368 | 765 | |> map_filter (Rule_Cases.mutual_rule ctxt) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 766 | |> tap (trace_rules ctxt inductN o map #2) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 767 | |> Seq.of_list |> Seq.maps (Seq.try inst_rule)); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 768 | |
| 44942 
a05ab4d803f2
when applying induction rules, remove names of assumptions that come
 nipkow parents: 
44241diff
changeset | 769 | fun rule_cases ctxt rule cases = | 
| 
a05ab4d803f2
when applying induction rules, remove names of assumptions that come
 nipkow parents: 
44241diff
changeset | 770 | let | 
| 
a05ab4d803f2
when applying induction rules, remove names of assumptions that come
 nipkow parents: 
44241diff
changeset | 771 | val rule' = Rule_Cases.internalize_params rule; | 
| 45131 | 772 | val rule'' = rule' |> simp ? simplified_rule ctxt; | 
| 45130 | 773 | val nonames = map (fn ((cn, _), cls) => ((cn, []), cls)); | 
| 774 | val cases' = if Thm.eq_thm_prop (rule', rule'') then cases else nonames cases; | |
| 775 | in Rule_Cases.make_nested (Thm.prop_of rule'') (rulified_term rule'') cases' end; | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 776 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 777 | (fn i => fn st => | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 778 | ruleq | 
| 33368 | 779 | |> Seq.maps (Rule_Cases.consume (flat defs) facts) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 780 | |> Seq.maps (fn (((cases, concls), (more_consumes, more_facts)), rule) => | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 781 | (PRECISE_CONJUNCTS (length concls) (ALLGOALS (fn j => | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 782 | (CONJUNCTS (ALLGOALS | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 783 | let | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 784 | val adefs = nth_list atomized_defs (j - 1); | 
| 45130 | 785 | val frees = fold (Term.add_frees o Thm.prop_of) adefs []; | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 786 | val xs = nth_list arbitrary (j - 1); | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 787 | val k = nth concls (j - 1) + more_consumes | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 788 | in | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 789 | Method.insert_tac (more_facts @ adefs) THEN' | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 790 | (if simp then | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 791 | rotate_tac k (length adefs) THEN' | 
| 45132 | 792 | arbitrary_tac defs_ctxt k (List.partition (member op = frees) xs |> op @) | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 793 | else | 
| 45132 | 794 | arbitrary_tac defs_ctxt k xs) | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 795 | end) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 796 | THEN' inner_atomize_tac) j)) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 797 | THEN' atomize_tac) i st |> Seq.maps (fn st' => | 
| 26940 | 798 | guess_instance ctxt (internalize more_consumes rule) i st' | 
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 799 | |> Seq.map (rule_instance ctxt (burrow_options (Variable.polymorphic ctxt) taking)) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 800 | |> Seq.maps (fn rule' => | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 801 | CASES (rule_cases ctxt rule' cases) | 
| 45130 | 802 | (rtac rule' i THEN | 
| 42361 | 803 | PRIMITIVE (singleton (Proof_Context.export defs_ctxt ctxt))) st')))) | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 804 | THEN_ALL_NEW_CASES | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 805 | ((if simp then simplify_tac ctxt THEN' (TRY o trivial_tac) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 806 | else K all_tac) | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 807 | THEN_ALL_NEW rulify_tac) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 808 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 809 | |
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 810 | val induct_tac = gen_induct_tac (K I); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 811 | |
| 45130 | 812 | |
| 813 | ||
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 814 | (** coinduct method **) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 815 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 816 | (* | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 817 | rule selection scheme: | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 818 | goal "A x" coinduct ... - predicate/set coinduction | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 819 | coinduct x - type coinduction | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 820 | coinduct ... r - explicit rule | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 821 | *) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 822 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 823 | local | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 824 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 825 | fun get_coinductT ctxt (SOME t :: _) = find_coinductT ctxt (Term.fastype_of t) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 826 | | get_coinductT _ _ = []; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 827 | |
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 828 | fun get_coinductP ctxt goal = find_coinductP ctxt (Logic.strip_assums_concl goal); | 
| 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 829 | |
| 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 830 | fun main_prop_of th = | 
| 33368 | 831 | if Rule_Cases.get_consumes th > 0 then Thm.major_prem_of th else Thm.concl_of th; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 832 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 833 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 834 | |
| 26924 | 835 | fun coinduct_tac ctxt inst taking opt_rule facts = | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 836 | let | 
| 42361 | 837 | val thy = Proof_Context.theory_of ctxt; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 838 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 839 | fun inst_rule r = | 
| 33368 | 840 | if null inst then `Rule_Cases.get r | 
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 841 | else Drule.cterm_instantiate (prep_inst ctxt align_right I (main_prop_of r, inst)) r | 
| 33368 | 842 | |> pair (Rule_Cases.get r); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 843 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 844 | fun ruleq goal = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 845 | (case opt_rule of | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 846 | SOME r => Seq.single (inst_rule r) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 847 | | NONE => | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 848 | (get_coinductP ctxt goal @ get_coinductT ctxt inst) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 849 | |> tap (trace_rules ctxt coinductN) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 850 | |> Seq.of_list |> Seq.maps (Seq.try inst_rule)); | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 851 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 852 | SUBGOAL_CASES (fn (goal, i) => fn st => | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 853 | ruleq goal | 
| 33368 | 854 | |> Seq.maps (Rule_Cases.consume [] facts) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 855 | |> Seq.maps (fn ((cases, (_, more_facts)), rule) => | 
| 26940 | 856 | guess_instance ctxt rule i st | 
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32188diff
changeset | 857 | |> Seq.map (rule_instance ctxt (burrow_options (Variable.polymorphic ctxt) taking)) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 858 | |> Seq.maps (fn rule' => | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 859 | CASES (Rule_Cases.make_common (thy, | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 860 | Thm.prop_of (Rule_Cases.internalize_params rule')) cases) | 
| 45130 | 861 | (Method.insert_tac more_facts i THEN rtac rule' i) st))) | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 862 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 863 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 864 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 865 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 866 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 867 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 868 | (** concrete syntax **) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 869 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 870 | val arbitraryN = "arbitrary"; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 871 | val takingN = "taking"; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 872 | val ruleN = "rule"; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 873 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 874 | local | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 875 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 876 | fun single_rule [rule] = rule | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 877 | | single_rule _ = error "Single rule expected"; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 878 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 879 | fun named_rule k arg get = | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 880 | Scan.lift (Args.$$$ k -- Args.colon) |-- Scan.repeat arg :|-- | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 881 | (fn names => Scan.peek (fn context => Scan.succeed (names |> map (fn name => | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 882 | (case get (Context.proof_of context) name of SOME x => x | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 883 |       | NONE => error ("No rule for " ^ k ^ " " ^ quote name))))));
 | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 884 | |
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 885 | fun rule get_type get_pred = | 
| 35400 
1fad91c02b98
type/const name: explicitly allow abbreviations as well;
 wenzelm parents: 
35360diff
changeset | 886 | named_rule typeN (Args.type_name false) get_type || | 
| 
1fad91c02b98
type/const name: explicitly allow abbreviations as well;
 wenzelm parents: 
35360diff
changeset | 887 | named_rule predN (Args.const false) get_pred || | 
| 
1fad91c02b98
type/const name: explicitly allow abbreviations as well;
 wenzelm parents: 
35360diff
changeset | 888 | named_rule setN (Args.const false) get_pred || | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 889 | Scan.lift (Args.$$$ ruleN -- Args.colon) |-- Attrib.thms; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 890 | |
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 891 | val cases_rule = rule lookup_casesT lookup_casesP >> single_rule; | 
| 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 892 | val induct_rule = rule lookup_inductT lookup_inductP; | 
| 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 893 | val coinduct_rule = rule lookup_coinductT lookup_coinductP >> single_rule; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 894 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 895 | val inst = Scan.lift (Args.$$$ "_") >> K NONE || Args.term >> SOME; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 896 | |
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 897 | val inst' = Scan.lift (Args.$$$ "_") >> K NONE || | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 898 | Args.term >> (SOME o rpair false) || | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 899 |   Scan.lift (Args.$$$ "(") |-- (Args.term >> (SOME o rpair true)) --|
 | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 900 | Scan.lift (Args.$$$ ")"); | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 901 | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 902 | val def_inst = | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27865diff
changeset | 903 | ((Scan.lift (Args.binding --| (Args.$$$ "\<equiv>" || Args.$$$ "==")) >> SOME) | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 904 | -- (Args.term >> rpair false)) >> SOME || | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 905 | inst' >> Option.map (pair NONE); | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 906 | |
| 27370 | 907 | val free = Args.context -- Args.term >> (fn (_, Free v) => v | (ctxt, t) => | 
| 908 |   error ("Bad free variable: " ^ Syntax.string_of_term ctxt t));
 | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 909 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 910 | fun unless_more_args scan = Scan.unless (Scan.lift | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 911 | ((Args.$$$ arbitraryN || Args.$$$ takingN || Args.$$$ typeN || | 
| 24861 
cc669ca5f382
tuned Induct interface: prefer pred'' over set'';
 wenzelm parents: 
24832diff
changeset | 912 | Args.$$$ predN || Args.$$$ setN || Args.$$$ ruleN) -- Args.colon)) scan; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 913 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 914 | val arbitrary = Scan.optional (Scan.lift (Args.$$$ arbitraryN -- Args.colon) |-- | 
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36602diff
changeset | 915 | Parse.and_list1' (Scan.repeat (unless_more_args free))) []; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 916 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 917 | val taking = Scan.optional (Scan.lift (Args.$$$ takingN -- Args.colon) |-- | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 918 | Scan.repeat1 (unless_more_args inst)) []; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 919 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 920 | in | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 921 | |
| 30722 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 922 | val cases_setup = | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 923 |   Method.setup @{binding cases}
 | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 924 | (Args.mode no_simpN -- | 
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36602diff
changeset | 925 | (Parse.and_list' (Scan.repeat (unless_more_args inst)) -- Scan.option cases_rule) >> | 
| 34987 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 926 | (fn (no_simp, (insts, opt_rule)) => fn ctxt => | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 927 | METHOD_CASES (fn facts => Seq.DETERM (HEADGOAL | 
| 
c1e8af37ee75
Added infrastructure for simplifying equality constraints in cases rules.
 berghofe parents: 
34907diff
changeset | 928 | (cases_tac ctxt (not no_simp) insts opt_rule facts))))) | 
| 30722 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 929 | "case analysis on types or predicates/sets"; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 930 | |
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 931 | fun gen_induct_setup binding itac = | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 932 | Method.setup binding | 
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36602diff
changeset | 933 | (Args.mode no_simpN -- (Parse.and_list' (Scan.repeat (unless_more_args def_inst)) -- | 
| 34907 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 934 | (arbitrary -- taking -- Scan.option induct_rule)) >> | 
| 
b0aaec87751c
Added infrastructure for simplifying equality constraints.
 berghofe parents: 
33957diff
changeset | 935 | (fn (no_simp, (insts, ((arbitrary, taking), opt_rule))) => fn ctxt => | 
| 30722 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 936 | RAW_METHOD_CASES (fn facts => | 
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36602diff
changeset | 937 | Seq.DETERM | 
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 938 | (HEADGOAL (itac ctxt (not no_simp) insts arbitrary taking opt_rule facts))))) | 
| 30722 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 939 | "induction on types or predicates/sets"; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 940 | |
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 941 | val induct_setup = gen_induct_setup @{binding induct} induct_tac;
 | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44942diff
changeset | 942 | |
| 30722 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 943 | val coinduct_setup = | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 944 |   Method.setup @{binding coinduct}
 | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 945 | (Scan.repeat (unless_more_args inst) -- taking -- Scan.option coinduct_rule >> | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 946 | (fn ((insts, taking), opt_rule) => fn ctxt => | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 947 | RAW_METHOD_CASES (fn facts => | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 948 | Seq.DETERM (HEADGOAL (coinduct_tac ctxt insts taking opt_rule facts))))) | 
| 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 949 | "coinduction on types or predicates/sets"; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 950 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 951 | end; | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 952 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 953 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 954 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 955 | (** theory setup **) | 
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 956 | |
| 30722 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 wenzelm parents: 
30560diff
changeset | 957 | val setup = attrib_setup #> cases_setup #> induct_setup #> coinduct_setup; | 
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 958 | |
| 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: diff
changeset | 959 | end; |