src/HOL/Tools/inductive_package.ML
author berghofe
Wed, 18 Aug 1999 16:19:53 +0200
changeset 7257 745cfc8871e2
parent 7152 44d46a112127
child 7293 959e060f4a2f
permissions -rw-r--r--
Renamed sum_case to basic_sum_case.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
     1
(*  Title:      HOL/Tools/inductive_package.ML
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
     2
    ID:         $Id$
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
     4
                Stefan Berghofer,   TU Muenchen
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
     5
    Copyright   1994  University of Cambridge
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
     6
                1998  TU Muenchen     
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
     7
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
     8
(Co)Inductive Definition module for HOL.
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
     9
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    10
Features:
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    11
  * least or greatest fixedpoints
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    12
  * user-specified product and sum constructions
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    13
  * mutually recursive definitions
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    14
  * definitions involving arbitrary monotone operators
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    15
  * automatically proves introduction and elimination rules
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    16
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    17
The recursive sets must *already* be declared as constants in the
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    18
current theory!
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    19
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    20
  Introduction rules have the form
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    21
  [| ti:M(Sj), ..., P(x), ... |] ==> t: Sk |]
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    22
  where M is some monotone operator (usually the identity)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    23
  P(x) is any side condition on the free variables
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    24
  ti, t are any terms
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    25
  Sj, Sk are two of the sets being defined in mutual recursion
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    26
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    27
Sums are used only for mutual recursion.  Products are used only to
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    28
derive "streamlined" induction rules for relations.
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    29
*)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    30
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    31
signature INDUCTIVE_PACKAGE =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    32
sig
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    33
  val quiet_mode: bool ref
7020
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    34
  val unify_consts: Sign.sg -> term list -> term list -> term list * term list
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
    35
  val get_inductive: theory -> string ->
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
    36
    {names: string list, coind: bool} * {defs: thm list, elims: thm list, raw_induct: thm,
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
    37
      induct: thm, intrs: thm list, mk_cases: string -> thm, mono: thm, unfold: thm}
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
    38
  val print_inductives: theory -> unit
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    39
  val add_inductive_i: bool -> bool -> bstring -> bool -> bool -> bool -> term list ->
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
    40
    theory attribute list -> ((bstring * term) * theory attribute list) list ->
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
    41
      thm list -> thm list -> theory -> theory *
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    42
      {defs: thm list, elims: thm list, raw_induct: thm, induct: thm,
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
    43
       intrs: thm list, mk_cases: string -> thm, mono: thm, unfold: thm}
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
    44
  val add_inductive: bool -> bool -> string list -> Args.src list ->
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
    45
    ((bstring * string) * Args.src list) list -> (xstring * Args.src list) list ->
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
    46
      (xstring * Args.src list) list -> theory -> theory *
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    47
      {defs: thm list, elims: thm list, raw_induct: thm, induct: thm,
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
    48
       intrs: thm list, mk_cases: string -> thm, mono: thm, unfold: thm}
7107
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
    49
  val inductive_cases: (((bstring * Args.src list) * xstring) * string list) * Comment.text
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
    50
    -> theory -> theory
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
    51
  val inductive_cases_i: (((bstring * theory attribute list) * string) * term list) * Comment.text
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
    52
    -> theory -> theory
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
    53
  val setup: (theory -> theory) list
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    54
end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    55
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    56
structure InductivePackage: INDUCTIVE_PACKAGE =
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    57
struct
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
    58
7107
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
    59
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    60
(** utilities **)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    61
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    62
(* messages *)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    63
5662
72a2e33d3b9e Added quiet_mode flag.
berghofe
parents: 5553
diff changeset
    64
val quiet_mode = ref false;
72a2e33d3b9e Added quiet_mode flag.
berghofe
parents: 5553
diff changeset
    65
fun message s = if !quiet_mode then () else writeln s;
72a2e33d3b9e Added quiet_mode flag.
berghofe
parents: 5553
diff changeset
    66
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    67
fun coind_prefix true = "co"
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    68
  | coind_prefix false = "";
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    69
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
    70
7020
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    71
(* the following code ensures that each recursive set *)
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    72
(* always has the same type in all introduction rules *)
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    73
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    74
fun unify_consts sign cs intr_ts =
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    75
  (let
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    76
    val {tsig, ...} = Sign.rep_sg sign;
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    77
    val add_term_consts_2 =
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    78
      foldl_aterms (fn (cs, Const c) => c ins cs | (cs, _) => cs);
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    79
    fun varify (t, (i, ts)) =
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    80
      let val t' = map_term_types (incr_tvar (i + 1)) (Type.varify (t, []))
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    81
      in (maxidx_of_term t', t'::ts) end;
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    82
    val (i, cs') = foldr varify (cs, (~1, []));
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    83
    val (i', intr_ts') = foldr varify (intr_ts, (i, []));
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    84
    val rec_consts = foldl add_term_consts_2 ([], cs');
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    85
    val intr_consts = foldl add_term_consts_2 ([], intr_ts');
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    86
    fun unify (env, (cname, cT)) =
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    87
      let val consts = map snd (filter (fn c => fst c = cname) intr_consts)
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    88
      in foldl (fn ((env', j'), Tp) => (Type.unify tsig j' env' Tp))
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    89
          (env, (replicate (length consts) cT) ~~ consts)
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    90
      end;
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    91
    val (env, _) = foldl unify (([], i'), rec_consts);
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    92
    fun typ_subst_TVars_2 env T = let val T' = typ_subst_TVars env T
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    93
      in if T = T' then T else typ_subst_TVars_2 env T' end;
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    94
    val subst = fst o Type.freeze_thaw o
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    95
      (map_term_types (typ_subst_TVars_2 env))
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    96
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    97
  in (map subst cs', map subst intr_ts')
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    98
  end) handle Type.TUNIFY =>
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
    99
    (warning "Occurrences of recursive constant have non-unifiable types"; (cs, intr_ts));
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
   100
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
   101
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   102
(* misc *)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   103
7107
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   104
(*for proving monotonicity of recursion operator*)
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   105
val default_monos = basic_monos @ [vimage_mono];
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   106
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   107
val Const _ $ (vimage_f $ _) $ _ = HOLogic.dest_Trueprop (concl_of vimageD);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   108
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   109
(*Delete needless equality assumptions*)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   110
val refl_thin = prove_goal HOL.thy "!!P. [| a=a;  P |] ==> P"
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   111
     (fn _ => [assume_tac 1]);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   112
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   113
(*For simplifying the elimination rule*)
5120
f7f5442c934a Removed disjE from list of rules used to simplify elimination
berghofe
parents: 5108
diff changeset
   114
val elim_rls = [asm_rl, FalseE, refl_thin, conjE, exE, Pair_inject];
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   115
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   116
val vimage_name = Sign.intern_const (Theory.sign_of Vimage.thy) "op -``";
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   117
val mono_name = Sign.intern_const (Theory.sign_of Ord.thy) "mono";
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   118
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   119
(* make injections needed in mutually recursive definitions *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   120
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   121
fun mk_inj cs sumT c x =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   122
  let
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   123
    fun mk_inj' T n i =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   124
      if n = 1 then x else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   125
      let val n2 = n div 2;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   126
          val Type (_, [T1, T2]) = T
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   127
      in
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   128
        if i <= n2 then
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   129
          Const ("Inl", T1 --> T) $ (mk_inj' T1 n2 i)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   130
        else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   131
          Const ("Inr", T2 --> T) $ (mk_inj' T2 (n - n2) (i - n2))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   132
      end
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   133
  in mk_inj' sumT (length cs) (1 + find_index_eq c cs)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   134
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   135
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   136
(* make "vimage" terms for selecting out components of mutually rec.def. *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   137
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   138
fun mk_vimage cs sumT t c = if length cs < 2 then t else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   139
  let
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   140
    val cT = HOLogic.dest_setT (fastype_of c);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   141
    val vimageT = [cT --> sumT, HOLogic.mk_setT sumT] ---> HOLogic.mk_setT cT
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   142
  in
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   143
    Const (vimage_name, vimageT) $
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   144
      Abs ("y", cT, mk_inj cs sumT c (Bound 0)) $ t
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   145
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   146
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   147
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   148
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   149
(** well-formedness checks **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   150
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   151
fun err_in_rule sign t msg = error ("Ill-formed introduction rule\n" ^
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   152
  (Sign.string_of_term sign t) ^ "\n" ^ msg);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   153
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   154
fun err_in_prem sign t p msg = error ("Ill-formed premise\n" ^
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   155
  (Sign.string_of_term sign p) ^ "\nin introduction rule\n" ^
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   156
  (Sign.string_of_term sign t) ^ "\n" ^ msg);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   157
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   158
val msg1 = "Conclusion of introduction rule must have form\
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   159
          \ ' t : S_i '";
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   160
val msg2 = "Premises mentioning recursive sets must have form\
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   161
          \ ' t : M S_i '";
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   162
val msg3 = "Recursion term on left of member symbol";
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   163
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   164
fun check_rule sign cs r =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   165
  let
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   166
    fun check_prem prem = if exists (Logic.occs o (rpair prem)) cs then
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   167
         (case prem of
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   168
           (Const ("op :", _) $ t $ u) =>
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   169
             if exists (Logic.occs o (rpair t)) cs then
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   170
               err_in_prem sign r prem msg3 else ()
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   171
         | _ => err_in_prem sign r prem msg2)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   172
        else ()
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   173
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   174
  in (case (HOLogic.dest_Trueprop o Logic.strip_imp_concl) r of
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   175
        (Const ("op :", _) $ _ $ u) =>
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   176
          if u mem cs then seq (check_prem o HOLogic.dest_Trueprop)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   177
            (Logic.strip_imp_prems r)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   178
          else err_in_rule sign r msg1
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   179
      | _ => err_in_rule sign r msg1)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   180
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   181
7020
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
   182
fun try' f msg sign t = (case (try f t) of
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
   183
      Some x => x
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
   184
    | None => error (msg ^ Sign.string_of_term sign t));
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   185
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   186
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   187
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   188
(*** theory data ***)
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   189
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   190
(* data kind 'HOL/inductive' *)
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   191
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   192
type inductive_info =
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   193
  {names: string list, coind: bool} * {defs: thm list, elims: thm list, raw_induct: thm,
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   194
    induct: thm, intrs: thm list, mk_cases: string -> thm, mono: thm, unfold: thm};
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   195
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   196
structure InductiveArgs =
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   197
struct
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   198
  val name = "HOL/inductive";
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   199
  type T = inductive_info Symtab.table;
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   200
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   201
  val empty = Symtab.empty;
6556
daa00919502b theory data: copy;
wenzelm
parents: 6521
diff changeset
   202
  val copy = I;
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   203
  val prep_ext = I;
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   204
  val merge: T * T -> T = Symtab.merge (K true);
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   205
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   206
  fun print sg tab =
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   207
    Pretty.writeln (Pretty.strs ("(co)inductives:" ::
6851
526c0b90bcef cond_extern_table;
wenzelm
parents: 6729
diff changeset
   208
      map #1 (Sign.cond_extern_table sg Sign.constK tab)));
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   209
end;
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   210
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   211
structure InductiveData = TheoryDataFun(InductiveArgs);
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   212
val print_inductives = InductiveData.print;
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   213
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   214
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   215
(* get and put data *)
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   216
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   217
fun get_inductive thy name =
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   218
  (case Symtab.lookup (InductiveData.get thy, name) of
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   219
    Some info => info
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   220
  | None => error ("Unknown (co)inductive set " ^ quote name));
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   221
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   222
fun put_inductives names info thy =
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   223
  let
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   224
    fun upd (tab, name) = Symtab.update_new ((name, info), tab);
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   225
    val tab = foldl upd (InductiveData.get thy, names)
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   226
      handle Symtab.DUP name => error ("Duplicate definition of (co)inductive set " ^ quote name);
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   227
  in InductiveData.put tab thy end;
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   228
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   229
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   230
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   231
(*** properties of (co)inductive sets ***)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   232
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   233
(** elimination rules **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   234
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   235
fun mk_elims cs cTs params intr_ts =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   236
  let
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   237
    val used = foldr add_term_names (intr_ts, []);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   238
    val [aname, pname] = variantlist (["a", "P"], used);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   239
    val P = HOLogic.mk_Trueprop (Free (pname, HOLogic.boolT));
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   240
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   241
    fun dest_intr r =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   242
      let val Const ("op :", _) $ t $ u =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   243
        HOLogic.dest_Trueprop (Logic.strip_imp_concl r)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   244
      in (u, t, Logic.strip_imp_prems r) end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   245
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   246
    val intrs = map dest_intr intr_ts;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   247
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   248
    fun mk_elim (c, T) =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   249
      let
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   250
        val a = Free (aname, T);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   251
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   252
        fun mk_elim_prem (_, t, ts) =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   253
          list_all_free (map dest_Free ((foldr add_term_frees (t::ts, [])) \\ params),
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   254
            Logic.list_implies (HOLogic.mk_Trueprop (HOLogic.mk_eq (a, t)) :: ts, P));
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   255
      in
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   256
        Logic.list_implies (HOLogic.mk_Trueprop (HOLogic.mk_mem (a, c)) ::
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   257
          map mk_elim_prem (filter (equal c o #1) intrs), P)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   258
      end
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   259
  in
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   260
    map mk_elim (cs ~~ cTs)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   261
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   262
        
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   263
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   264
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   265
(** premises and conclusions of induction rules **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   266
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   267
fun mk_indrule cs cTs params intr_ts =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   268
  let
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   269
    val used = foldr add_term_names (intr_ts, []);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   270
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   271
    (* predicates for induction rule *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   272
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   273
    val preds = map Free (variantlist (if length cs < 2 then ["P"] else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   274
      map (fn i => "P" ^ string_of_int i) (1 upto length cs), used) ~~
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   275
        map (fn T => T --> HOLogic.boolT) cTs);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   276
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   277
    (* transform an introduction rule into a premise for induction rule *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   278
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   279
    fun mk_ind_prem r =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   280
      let
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   281
        val frees = map dest_Free ((add_term_frees (r, [])) \\ params);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   282
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   283
        fun subst (prem as (Const ("op :", T) $ t $ u), prems) =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   284
              let val n = find_index_eq u cs in
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   285
                if n >= 0 then prem :: (nth_elem (n, preds)) $ t :: prems else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   286
                  (subst_free (map (fn (c, P) => (c, HOLogic.mk_binop "op Int"
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   287
                    (c, HOLogic.Collect_const (HOLogic.dest_setT
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   288
                      (fastype_of c)) $ P))) (cs ~~ preds)) prem)::prems
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   289
              end
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   290
          | subst (prem, prems) = prem::prems;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   291
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   292
        val Const ("op :", _) $ t $ u =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   293
          HOLogic.dest_Trueprop (Logic.strip_imp_concl r)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   294
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   295
      in list_all_free (frees,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   296
           Logic.list_implies (map HOLogic.mk_Trueprop (foldr subst
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   297
             (map HOLogic.dest_Trueprop (Logic.strip_imp_prems r), [])),
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   298
               HOLogic.mk_Trueprop (nth_elem (find_index_eq u cs, preds) $ t)))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   299
      end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   300
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   301
    val ind_prems = map mk_ind_prem intr_ts;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   302
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   303
    (* make conclusions for induction rules *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   304
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   305
    fun mk_ind_concl ((c, P), (ts, x)) =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   306
      let val T = HOLogic.dest_setT (fastype_of c);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   307
          val Ts = HOLogic.prodT_factors T;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   308
          val (frees, x') = foldr (fn (T', (fs, s)) =>
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   309
            ((Free (s, T'))::fs, bump_string s)) (Ts, ([], x));
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   310
          val tuple = HOLogic.mk_tuple T frees;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   311
      in ((HOLogic.mk_binop "op -->"
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   312
        (HOLogic.mk_mem (tuple, c), P $ tuple))::ts, x')
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   313
      end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   314
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   315
    val mutual_ind_concl = HOLogic.mk_Trueprop (foldr1 (app HOLogic.conj)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   316
        (fst (foldr mk_ind_concl (cs ~~ preds, ([], "xa")))))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   317
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   318
  in (preds, ind_prems, mutual_ind_concl)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   319
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   320
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   321
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   322
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   323
(*** proofs for (co)inductive sets ***)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   324
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   325
(** prove monotonicity **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   326
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   327
fun prove_mono setT fp_fun monos thy =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   328
  let
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6424
diff changeset
   329
    val _ = message "  Proving monotonicity ...";
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   330
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   331
    val mono = prove_goalw_cterm [] (cterm_of (Theory.sign_of thy) (HOLogic.mk_Trueprop
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   332
      (Const (mono_name, (setT --> setT) --> HOLogic.boolT) $ fp_fun)))
7107
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   333
        (fn _ => [rtac monoI 1, REPEAT (ares_tac (default_monos @ monos) 1)])
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   334
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   335
  in mono end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   336
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   337
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   338
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   339
(** prove introduction rules **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   340
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   341
fun prove_intrs coind mono fp_def intr_ts con_defs rec_sets_defs thy =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   342
  let
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6424
diff changeset
   343
    val _ = message "  Proving the introduction rules ...";
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   344
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   345
    val unfold = standard (mono RS (fp_def RS
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   346
      (if coind then def_gfp_Tarski else def_lfp_Tarski)));
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   347
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   348
    fun select_disj 1 1 = []
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   349
      | select_disj _ 1 = [rtac disjI1]
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   350
      | select_disj n i = (rtac disjI2)::(select_disj (n - 1) (i - 1));
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   351
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   352
    val intrs = map (fn (i, intr) => prove_goalw_cterm rec_sets_defs
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   353
      (cterm_of (Theory.sign_of thy) intr) (fn prems =>
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   354
       [(*insert prems and underlying sets*)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   355
       cut_facts_tac prems 1,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   356
       stac unfold 1,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   357
       REPEAT (resolve_tac [vimageI2, CollectI] 1),
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   358
       (*Now 1-2 subgoals: the disjunction, perhaps equality.*)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   359
       EVERY1 (select_disj (length intr_ts) i),
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   360
       (*Not ares_tac, since refl must be tried before any equality assumptions;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   361
         backtracking may occur if the premises have extra variables!*)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   362
       DEPTH_SOLVE_1 (resolve_tac [refl,exI,conjI] 1 APPEND assume_tac 1),
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   363
       (*Now solve the equations like Inl 0 = Inl ?b2*)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   364
       rewrite_goals_tac con_defs,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   365
       REPEAT (rtac refl 1)])) (1 upto (length intr_ts) ~~ intr_ts)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   366
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   367
  in (intrs, unfold) end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   368
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   369
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   370
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   371
(** prove elimination rules **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   372
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   373
fun prove_elims cs cTs params intr_ts unfold rec_sets_defs thy =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   374
  let
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6424
diff changeset
   375
    val _ = message "  Proving the elimination rules ...";
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   376
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   377
    val rules1 = [CollectE, disjE, make_elim vimageD];
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   378
    val rules2 = [exE, conjE, Inl_neq_Inr, Inr_neq_Inl] @
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   379
      map make_elim [Inl_inject, Inr_inject];
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   380
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   381
    val elims = map (fn t => prove_goalw_cterm rec_sets_defs
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   382
      (cterm_of (Theory.sign_of thy) t) (fn prems =>
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   383
        [cut_facts_tac [hd prems] 1,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   384
         dtac (unfold RS subst) 1,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   385
         REPEAT (FIRSTGOAL (eresolve_tac rules1)),
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   386
         REPEAT (FIRSTGOAL (eresolve_tac rules2)),
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   387
         EVERY (map (fn prem =>
5149
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   388
           DEPTH_SOLVE_1 (ares_tac [prem, conjI] 1)) (tl prems))]))
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   389
      (mk_elims cs cTs params intr_ts)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   390
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   391
  in elims end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   392
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   393
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   394
(** derivation of simplified elimination rules **)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   395
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   396
(*Applies freeness of the given constructors, which *must* be unfolded by
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   397
  the given defs.  Cannot simply use the local con_defs because con_defs=[] 
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   398
  for inference systems.
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   399
 *)
6141
a6922171b396 removal of the (thm list) argument of mk_cases
paulson
parents: 6092
diff changeset
   400
fun con_elim_tac ss =
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   401
  let val elim_tac = REPEAT o (eresolve_tac elim_rls)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   402
  in ALLGOALS(EVERY'[elim_tac,
6141
a6922171b396 removal of the (thm list) argument of mk_cases
paulson
parents: 6092
diff changeset
   403
		     asm_full_simp_tac ss,
a6922171b396 removal of the (thm list) argument of mk_cases
paulson
parents: 6092
diff changeset
   404
		     elim_tac,
a6922171b396 removal of the (thm list) argument of mk_cases
paulson
parents: 6092
diff changeset
   405
		     REPEAT o bound_hyp_subst_tac])
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   406
     THEN prune_params_tac
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   407
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   408
7107
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   409
(*cprop should have the form t:Si where Si is an inductive set*)
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   410
fun mk_cases_i elims ss cprop =
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   411
  let
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   412
    val prem = Thm.assume cprop;
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   413
    fun mk_elim rl = standard (rule_by_tactic (con_elim_tac ss) (prem RS rl));
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   414
  in
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   415
    (case get_first (try mk_elim) elims of
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   416
      Some r => r
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   417
    | None => error (Pretty.string_of (Pretty.block
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   418
        [Pretty.str "mk_cases: proposition not of form 't : S_i'", Pretty.fbrk,
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   419
          Display.pretty_cterm cprop])))
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   420
  end;
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   421
6141
a6922171b396 removal of the (thm list) argument of mk_cases
paulson
parents: 6092
diff changeset
   422
fun mk_cases elims s =
7107
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   423
  mk_cases_i elims (simpset()) (Thm.read_cterm (Thm.sign_of_thm (hd elims)) (s, propT));
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   424
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   425
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   426
(* inductive_cases(_i) *)
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   427
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   428
fun gen_inductive_cases prep_att prep_const prep_prop
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   429
    ((((name, raw_atts), raw_set), raw_props), comment) thy =
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   430
  let
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   431
    val sign = Theory.sign_of thy;
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   432
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   433
    val atts = map (prep_att thy) raw_atts;
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   434
    val (_, {elims, ...}) = get_inductive thy (prep_const sign raw_set);
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   435
    val cprops = map (Thm.cterm_of sign o prep_prop (ProofContext.init thy)) raw_props;
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   436
    val thms = map (mk_cases_i elims (Simplifier.simpset_of thy)) cprops;
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   437
  in
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   438
    thy
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   439
    |> IsarThy.have_theorems_i (((name, atts), map Thm.no_attributes thms), comment)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   440
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   441
7107
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   442
val inductive_cases =
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   443
  gen_inductive_cases Attrib.global_attribute Sign.intern_const ProofContext.read_prop;
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   444
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   445
val inductive_cases_i = gen_inductive_cases (K I) (K I) ProofContext.cert_prop;
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   446
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   447
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   448
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   449
(** prove induction rule **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   450
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   451
fun prove_indrule cs cTs sumT rec_const params intr_ts mono
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   452
    fp_def rec_sets_defs thy =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   453
  let
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6424
diff changeset
   454
    val _ = message "  Proving the induction rule ...";
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   455
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   456
    val sign = Theory.sign_of thy;
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   457
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   458
    val (preds, ind_prems, mutual_ind_concl) = mk_indrule cs cTs params intr_ts;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   459
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   460
    (* make predicate for instantiation of abstract induction rule *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   461
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   462
    fun mk_ind_pred _ [P] = P
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   463
      | mk_ind_pred T Ps =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   464
         let val n = (length Ps) div 2;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   465
             val Type (_, [T1, T2]) = T
7257
745cfc8871e2 Renamed sum_case to basic_sum_case.
berghofe
parents: 7152
diff changeset
   466
         in Const ("basic_sum_case",
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   467
           [T1 --> HOLogic.boolT, T2 --> HOLogic.boolT, T] ---> HOLogic.boolT) $
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   468
             mk_ind_pred T1 (take (n, Ps)) $ mk_ind_pred T2 (drop (n, Ps))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   469
         end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   470
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   471
    val ind_pred = mk_ind_pred sumT preds;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   472
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   473
    val ind_concl = HOLogic.mk_Trueprop
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   474
      (HOLogic.all_const sumT $ Abs ("x", sumT, HOLogic.mk_binop "op -->"
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   475
        (HOLogic.mk_mem (Bound 0, rec_const), ind_pred $ Bound 0)));
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   476
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   477
    (* simplification rules for vimage and Collect *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   478
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   479
    val vimage_simps = if length cs < 2 then [] else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   480
      map (fn c => prove_goalw_cterm [] (cterm_of sign
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   481
        (HOLogic.mk_Trueprop (HOLogic.mk_eq
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   482
          (mk_vimage cs sumT (HOLogic.Collect_const sumT $ ind_pred) c,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   483
           HOLogic.Collect_const (HOLogic.dest_setT (fastype_of c)) $
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   484
             nth_elem (find_index_eq c cs, preds)))))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   485
        (fn _ => [rtac vimage_Collect 1, rewrite_goals_tac
5553
ae42b36a50c2 renamed mk_meta_eq to mk_eq
oheimb
parents: 5303
diff changeset
   486
           (map mk_meta_eq [sum_case_Inl, sum_case_Inr]),
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   487
          rtac refl 1])) cs;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   488
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   489
    val induct = prove_goalw_cterm [] (cterm_of sign
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   490
      (Logic.list_implies (ind_prems, ind_concl))) (fn prems =>
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   491
        [rtac (impI RS allI) 1,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   492
         DETERM (etac (mono RS (fp_def RS def_induct)) 1),
5553
ae42b36a50c2 renamed mk_meta_eq to mk_eq
oheimb
parents: 5303
diff changeset
   493
         rewrite_goals_tac (map mk_meta_eq (vimage_Int::vimage_simps)),
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   494
         fold_goals_tac rec_sets_defs,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   495
         (*This CollectE and disjE separates out the introduction rules*)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   496
         REPEAT (FIRSTGOAL (eresolve_tac [CollectE, disjE])),
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   497
         (*Now break down the individual cases.  No disjE here in case
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   498
           some premise involves disjunction.*)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   499
         REPEAT (FIRSTGOAL (eresolve_tac [IntE, CollectE, exE, conjE] 
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   500
                     ORELSE' hyp_subst_tac)),
5553
ae42b36a50c2 renamed mk_meta_eq to mk_eq
oheimb
parents: 5303
diff changeset
   501
         rewrite_goals_tac (map mk_meta_eq [sum_case_Inl, sum_case_Inr]),
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   502
         EVERY (map (fn prem =>
5149
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   503
           DEPTH_SOLVE_1 (ares_tac [prem, conjI, refl] 1)) prems)]);
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   504
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   505
    val lemma = prove_goalw_cterm rec_sets_defs (cterm_of sign
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   506
      (Logic.mk_implies (ind_concl, mutual_ind_concl))) (fn prems =>
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   507
        [cut_facts_tac prems 1,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   508
         REPEAT (EVERY
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   509
           [REPEAT (resolve_tac [conjI, impI] 1),
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   510
            TRY (dtac vimageD 1), etac allE 1, dtac mp 1, atac 1,
5553
ae42b36a50c2 renamed mk_meta_eq to mk_eq
oheimb
parents: 5303
diff changeset
   511
            rewrite_goals_tac (map mk_meta_eq [sum_case_Inl, sum_case_Inr]),
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   512
            atac 1])])
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   513
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   514
  in standard (split_rule (induct RS lemma))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   515
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   516
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   517
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   518
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   519
(*** specification of (co)inductive sets ****)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   520
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   521
(** definitional introduction of (co)inductive sets **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   522
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   523
fun add_ind_def verbose declare_consts alt_name coind no_elim no_ind cs
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
   524
    atts intros monos con_defs thy params paramTs cTs cnames =
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   525
  let
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   526
    val _ = if verbose then message ("Proofs for " ^ coind_prefix coind ^ "inductive set(s) " ^
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   527
      commas_quote cnames) else ();
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   528
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   529
    val sumT = fold_bal (fn (T, U) => Type ("+", [T, U])) cTs;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   530
    val setT = HOLogic.mk_setT sumT;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   531
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   532
    val fp_name = if coind then Sign.intern_const (Theory.sign_of Gfp.thy) "gfp"
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   533
      else Sign.intern_const (Theory.sign_of Lfp.thy) "lfp";
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   534
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   535
    val ((intr_names, intr_ts), intr_atts) = apfst split_list (split_list intros);
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   536
5149
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   537
    val used = foldr add_term_names (intr_ts, []);
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   538
    val [sname, xname] = variantlist (["S", "x"], used);
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   539
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   540
    (* transform an introduction rule into a conjunction  *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   541
    (*   [| t : ... S_i ... ; ... |] ==> u : S_j          *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   542
    (* is transformed into                                *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   543
    (*   x = Inj_j u & t : ... Inj_i -`` S ... & ...      *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   544
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   545
    fun transform_rule r =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   546
      let
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   547
        val frees = map dest_Free ((add_term_frees (r, [])) \\ params);
5149
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   548
        val subst = subst_free
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   549
          (cs ~~ (map (mk_vimage cs sumT (Free (sname, setT))) cs));
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   550
        val Const ("op :", _) $ t $ u =
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   551
          HOLogic.dest_Trueprop (Logic.strip_imp_concl r)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   552
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   553
      in foldr (fn ((x, T), P) => HOLogic.mk_exists (x, T, P))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   554
        (frees, foldr1 (app HOLogic.conj)
5149
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   555
          (((HOLogic.eq_const sumT) $ Free (xname, sumT) $ (mk_inj cs sumT u t))::
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   556
            (map (subst o HOLogic.dest_Trueprop)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   557
              (Logic.strip_imp_prems r))))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   558
      end
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   559
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   560
    (* make a disjunction of all introduction rules *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   561
5149
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   562
    val fp_fun = absfree (sname, setT, (HOLogic.Collect_const sumT) $
10f0be29c0d1 Fixed bug in transform_rule.
berghofe
parents: 5120
diff changeset
   563
      absfree (xname, sumT, foldr1 (app HOLogic.disj) (map transform_rule intr_ts)));
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   564
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   565
    (* add definiton of recursive sets to theory *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   566
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   567
    val rec_name = if alt_name = "" then space_implode "_" cnames else alt_name;
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   568
    val full_rec_name = Sign.full_name (Theory.sign_of thy) rec_name;
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   569
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   570
    val rec_const = list_comb
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   571
      (Const (full_rec_name, paramTs ---> setT), params);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   572
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   573
    val fp_def_term = Logic.mk_equals (rec_const,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   574
      Const (fp_name, (setT --> setT) --> setT) $ fp_fun)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   575
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   576
    val def_terms = fp_def_term :: (if length cs < 2 then [] else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   577
      map (fn c => Logic.mk_equals (c, mk_vimage cs sumT rec_const c)) cs);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   578
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   579
    val thy' = thy |>
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   580
      (if declare_consts then
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   581
        Theory.add_consts_i (map (fn (c, n) =>
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   582
          (n, paramTs ---> fastype_of c, NoSyn)) (cs ~~ cnames))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   583
       else I) |>
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   584
      (if length cs < 2 then I else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   585
       Theory.add_consts_i [(rec_name, paramTs ---> setT, NoSyn)]) |>
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   586
      Theory.add_path rec_name |>
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   587
      PureThy.add_defss_i [(("defs", def_terms), [])];
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   588
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   589
    (* get definitions from theory *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   590
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   591
    val fp_def::rec_sets_defs = PureThy.get_thms thy' "defs";
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   592
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   593
    (* prove and store theorems *)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   594
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   595
    val mono = prove_mono setT fp_fun monos thy';
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   596
    val (intrs, unfold) = prove_intrs coind mono fp_def intr_ts con_defs
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   597
      rec_sets_defs thy';
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   598
    val elims = if no_elim then [] else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   599
      prove_elims cs cTs params intr_ts unfold rec_sets_defs thy';
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   600
    val raw_induct = if no_ind then TrueI else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   601
      if coind then standard (rule_by_tactic
5553
ae42b36a50c2 renamed mk_meta_eq to mk_eq
oheimb
parents: 5303
diff changeset
   602
        (rewrite_tac [mk_meta_eq vimage_Un] THEN
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   603
          fold_tac rec_sets_defs) (mono RS (fp_def RS def_Collect_coinduct)))
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   604
      else
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   605
        prove_indrule cs cTs sumT rec_const params intr_ts mono fp_def
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   606
          rec_sets_defs thy';
5108
4074c7d86d44 Fixed bug (improper handling of flag no_ind).
berghofe
parents: 5094
diff changeset
   607
    val induct = if coind orelse no_ind orelse length cs > 1 then raw_induct
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   608
      else standard (raw_induct RSN (2, rev_mp));
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   609
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   610
    val thy'' = thy'
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
   611
      |> PureThy.add_thmss [(("intrs", intrs), atts)]
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   612
      |> PureThy.add_thms ((intr_names ~~ intrs) ~~ intr_atts)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   613
      |> (if no_elim then I else PureThy.add_thmss [(("elims", elims), [])])
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   614
      |> (if no_ind then I else PureThy.add_thms
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   615
        [((coind_prefix coind ^ "induct", induct), [])])
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   616
      |> Theory.parent_path;
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   617
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   618
  in (thy'',
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   619
    {defs = fp_def::rec_sets_defs,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   620
     mono = mono,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   621
     unfold = unfold,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   622
     intrs = intrs,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   623
     elims = elims,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   624
     mk_cases = mk_cases elims,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   625
     raw_induct = raw_induct,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   626
     induct = induct})
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   627
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   628
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   629
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   630
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   631
(** axiomatic introduction of (co)inductive sets **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   632
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   633
fun add_ind_axm verbose declare_consts alt_name coind no_elim no_ind cs
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
   634
    atts intros monos con_defs thy params paramTs cTs cnames =
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   635
  let
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   636
    val _ = if verbose then message ("Adding axioms for " ^ coind_prefix coind ^
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   637
      "inductive set(s) " ^ commas_quote cnames) else ();
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   638
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   639
    val rec_name = if alt_name = "" then space_implode "_" cnames else alt_name;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   640
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   641
    val ((intr_names, intr_ts), intr_atts) = apfst split_list (split_list intros);
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   642
    val elim_ts = mk_elims cs cTs params intr_ts;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   643
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   644
    val (_, ind_prems, mutual_ind_concl) = mk_indrule cs cTs params intr_ts;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   645
    val ind_t = Logic.list_implies (ind_prems, mutual_ind_concl);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   646
    
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   647
    val thy' = thy
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   648
      |> (if declare_consts then
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   649
            Theory.add_consts_i
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   650
              (map (fn (c, n) => (n, paramTs ---> fastype_of c, NoSyn)) (cs ~~ cnames))
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   651
         else I)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   652
      |> Theory.add_path rec_name
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
   653
      |> PureThy.add_axiomss_i [(("intrs", intr_ts), atts), (("elims", elim_ts), [])]
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   654
      |> (if coind then I else PureThy.add_axioms_i [(("internal_induct", ind_t), [])]);
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   655
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   656
    val intrs = PureThy.get_thms thy' "intrs";
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   657
    val elims = PureThy.get_thms thy' "elims";
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   658
    val raw_induct = if coind then TrueI else
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   659
      standard (split_rule (PureThy.get_thm thy' "internal_induct"));
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   660
    val induct = if coind orelse length cs > 1 then raw_induct
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   661
      else standard (raw_induct RSN (2, rev_mp));
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   662
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   663
    val thy'' =
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   664
      thy'
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   665
      |> (if coind then I else PureThy.add_thms [(("induct", induct), [])])
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   666
      |> PureThy.add_thms ((intr_names ~~ intrs) ~~ intr_atts)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   667
      |> Theory.parent_path;
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   668
  in (thy'',
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   669
    {defs = [],
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   670
     mono = TrueI,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   671
     unfold = TrueI,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   672
     intrs = intrs,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   673
     elims = elims,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   674
     mk_cases = mk_cases elims,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   675
     raw_induct = raw_induct,
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   676
     induct = induct})
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   677
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   678
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   679
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   680
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   681
(** introduction of (co)inductive sets **)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   682
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   683
fun add_inductive_i verbose declare_consts alt_name coind no_elim no_ind cs
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
   684
    atts intros monos con_defs thy =
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   685
  let
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   686
    val _ = Theory.requires thy "Inductive" (coind_prefix coind ^ "inductive definitions");
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   687
    val sign = Theory.sign_of thy;
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   688
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   689
    (*parameters should agree for all mutually recursive components*)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   690
    val (_, params) = strip_comb (hd cs);
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   691
    val paramTs = map (try' (snd o dest_Free) "Parameter in recursive\
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   692
      \ component is not a free variable: " sign) params;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   693
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   694
    val cTs = map (try' (HOLogic.dest_setT o fastype_of)
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   695
      "Recursive component not of type set: " sign) cs;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   696
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   697
    val full_cnames = map (try' (fst o dest_Const o head_of)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   698
      "Recursive set not previously declared as constant: " sign) cs;
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   699
    val cnames = map Sign.base_name full_cnames;
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   700
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   701
    val _ = assert_all Syntax.is_identifier cnames	(* FIXME why? *)
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   702
       (fn a => "Base name of recursive set not an identifier: " ^ a);
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   703
    val _ = seq (check_rule sign cs o snd o fst) intros;
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   704
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   705
    val (thy1, result) =
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   706
      (if ! quick_and_dirty then add_ind_axm else add_ind_def)
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
   707
        verbose declare_consts alt_name coind no_elim no_ind cs atts intros monos
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   708
        con_defs thy params paramTs cTs cnames;
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   709
    val thy2 = thy1 |> put_inductives full_cnames ({names = full_cnames, coind = coind}, result);
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   710
  in (thy2, result) end;
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   711
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   712
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   713
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   714
(** external interface **)
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   715
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
   716
fun add_inductive verbose coind c_strings srcs intro_srcs raw_monos raw_con_defs thy =
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   717
  let
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   718
    val sign = Theory.sign_of thy;
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6141
diff changeset
   719
    val cs = map (readtm (Theory.sign_of thy) HOLogic.termTVar) c_strings;
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   720
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
   721
    val atts = map (Attrib.global_attribute thy) srcs;
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   722
    val intr_names = map (fst o fst) intro_srcs;
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   723
    val intr_ts = map (readtm (Theory.sign_of thy) propT o snd o fst) intro_srcs;
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   724
    val intr_atts = map (map (Attrib.global_attribute thy) o snd) intro_srcs;
7020
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
   725
    val (cs', intr_ts') = unify_consts sign cs intr_ts;
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   726
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   727
    val ((thy', con_defs), monos) = thy
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   728
      |> IsarThy.apply_theorems raw_monos
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   729
      |> apfst (IsarThy.apply_theorems raw_con_defs);
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   730
  in
7020
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
   731
    add_inductive_i verbose false "" coind false false cs'
75ff179df7b7 Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents: 6851
diff changeset
   732
      atts ((intr_names ~~ intr_ts') ~~ intr_atts) monos con_defs thy'
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   733
  end;
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   734
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   735
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   736
6437
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   737
(** package setup **)
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   738
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   739
(* setup theory *)
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   740
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   741
val setup = [InductiveData.init];
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   742
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   743
9bdfe07ba8e9 'HOL/inductive' theory data;
wenzelm
parents: 6430
diff changeset
   744
(* outer syntax *)
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   745
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   746
local structure P = OuterParse and K = OuterSyntax.Keyword in
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   747
6521
16c425fc00cb intrs attributes;
wenzelm
parents: 6437
diff changeset
   748
fun mk_ind coind (((sets, (atts, intrs)), monos), con_defs) =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   749
  #1 o add_inductive true coind sets atts (map P.triple_swap intrs) monos con_defs;
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   750
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   751
fun ind_decl coind =
6729
b6e167580a32 formal comments (still dummy);
wenzelm
parents: 6723
diff changeset
   752
  (Scan.repeat1 P.term --| P.marg_comment) --
b6e167580a32 formal comments (still dummy);
wenzelm
parents: 6723
diff changeset
   753
  (P.$$$ "intrs" |--
7152
44d46a112127 tuned outer syntax;
wenzelm
parents: 7107
diff changeset
   754
    P.!!! (P.opt_attribs -- Scan.repeat1 (P.opt_thm_name ":" -- P.prop --| P.marg_comment))) --
6729
b6e167580a32 formal comments (still dummy);
wenzelm
parents: 6723
diff changeset
   755
  Scan.optional (P.$$$ "monos" |-- P.!!! P.xthms1 --| P.marg_comment) [] --
b6e167580a32 formal comments (still dummy);
wenzelm
parents: 6723
diff changeset
   756
  Scan.optional (P.$$$ "con_defs" |-- P.!!! P.xthms1 --| P.marg_comment) []
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   757
  >> (Toplevel.theory o mk_ind coind);
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   758
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   759
val inductiveP =
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   760
  OuterSyntax.command "inductive" "define inductive sets" K.thy_decl (ind_decl false);
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   761
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   762
val coinductiveP =
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   763
  OuterSyntax.command "coinductive" "define coinductive sets" K.thy_decl (ind_decl true);
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   764
7107
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   765
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   766
val ind_cases =
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   767
  P.opt_thm_name "=" -- P.xname --| P.$$$ ":" -- Scan.repeat1 P.prop -- P.marg_comment
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   768
  >> (Toplevel.theory o inductive_cases);
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   769
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   770
val inductive_casesP =
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   771
  OuterSyntax.command "inductive_cases" "create simplified instances of elimination rules"
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   772
    K.thy_decl ind_cases;
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   773
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   774
val _ = OuterSyntax.add_keywords ["intrs", "monos", "con_defs"];
7107
ce69de572bca inductive_cases(_i): Isar interface to mk_cases;
wenzelm
parents: 7020
diff changeset
   775
val _ = OuterSyntax.add_parsers [inductiveP, coinductiveP, inductive_casesP];
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   776
5094
ddcc3c114a0e New inductive definition package
berghofe
parents:
diff changeset
   777
end;
6424
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   778
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   779
ceab9e663e08 tuned comments;
wenzelm
parents: 6394
diff changeset
   780
end;