author | wenzelm |
Fri, 22 Dec 2000 18:24:39 +0100 | |
changeset 10729 | 1b3350c4ee92 |
parent 10569 | e8346dad78e1 |
child 10735 | dfaf75f0076f |
permissions | -rw-r--r-- |
5094 | 1 |
(* Title: HOL/Tools/inductive_package.ML |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Stefan Berghofer, TU Muenchen |
|
5 |
Copyright 1994 University of Cambridge |
|
9598 | 6 |
1998 TU Muenchen |
5094 | 7 |
|
6424 | 8 |
(Co)Inductive Definition module for HOL. |
5094 | 9 |
|
10 |
Features: |
|
6424 | 11 |
* least or greatest fixedpoints |
12 |
* user-specified product and sum constructions |
|
13 |
* mutually recursive definitions |
|
14 |
* definitions involving arbitrary monotone operators |
|
15 |
* automatically proves introduction and elimination rules |
|
5094 | 16 |
|
6424 | 17 |
The recursive sets must *already* be declared as constants in the |
18 |
current theory! |
|
5094 | 19 |
|
20 |
Introduction rules have the form |
|
8316
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
21 |
[| ti:M(Sj), ..., P(x), ... |] ==> t: Sk |
5094 | 22 |
where M is some monotone operator (usually the identity) |
23 |
P(x) is any side condition on the free variables |
|
24 |
ti, t are any terms |
|
25 |
Sj, Sk are two of the sets being defined in mutual recursion |
|
26 |
||
6424 | 27 |
Sums are used only for mutual recursion. Products are used only to |
28 |
derive "streamlined" induction rules for relations. |
|
5094 | 29 |
*) |
30 |
||
31 |
signature INDUCTIVE_PACKAGE = |
|
32 |
sig |
|
6424 | 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 |
9116
9df44b5c610b
get_inductive now returns None instead of raising an exception.
berghofe
parents:
9072
diff
changeset
|
35 |
val get_inductive: theory -> string -> ({names: string list, coind: bool} * |
9df44b5c610b
get_inductive now returns None instead of raising an exception.
berghofe
parents:
9072
diff
changeset
|
36 |
{defs: thm list, elims: thm list, raw_induct: thm, induct: thm, |
9df44b5c610b
get_inductive now returns None instead of raising an exception.
berghofe
parents:
9072
diff
changeset
|
37 |
intrs: thm list, mk_cases: string -> thm, mono: thm, unfold: thm}) option |
6437 | 38 |
val print_inductives: theory -> unit |
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
39 |
val mono_add_global: theory attribute |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
40 |
val mono_del_global: theory attribute |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
41 |
val get_monos: theory -> thm list |
6424 | 42 |
val add_inductive_i: bool -> bool -> bstring -> bool -> bool -> bool -> term list -> |
6521 | 43 |
theory attribute list -> ((bstring * term) * theory attribute list) list -> |
44 |
thm list -> thm list -> theory -> theory * |
|
6424 | 45 |
{defs: thm list, elims: thm list, raw_induct: thm, induct: thm, |
6437 | 46 |
intrs: thm list, mk_cases: string -> thm, mono: thm, unfold: thm} |
6521 | 47 |
val add_inductive: bool -> bool -> string list -> Args.src list -> |
48 |
((bstring * string) * Args.src list) list -> (xstring * Args.src list) list -> |
|
49 |
(xstring * Args.src list) list -> theory -> theory * |
|
6424 | 50 |
{defs: thm list, elims: thm list, raw_induct: thm, induct: thm, |
6437 | 51 |
intrs: thm list, mk_cases: string -> thm, mono: thm, unfold: thm} |
9598 | 52 |
val inductive_cases: ((bstring * Args.src list) * string list) * Comment.text |
7107 | 53 |
-> theory -> theory |
9598 | 54 |
val inductive_cases_i: ((bstring * theory attribute list) * term list) * Comment.text |
7107 | 55 |
-> theory -> theory |
6437 | 56 |
val setup: (theory -> theory) list |
5094 | 57 |
end; |
58 |
||
6424 | 59 |
structure InductivePackage: INDUCTIVE_PACKAGE = |
5094 | 60 |
struct |
61 |
||
9598 | 62 |
|
10729 | 63 |
(** theory context references **) |
64 |
||
65 |
val mk_inductive_conj = HOLogic.mk_binop "Inductive.conj"; |
|
66 |
val inductive_conj_def = thm "conj_def"; |
|
67 |
val inductive_conj = thms "inductive_conj"; |
|
68 |
val inductive_atomize = thms "inductive_atomize"; |
|
69 |
val inductive_rulify1 = thms "inductive_rulify1"; |
|
70 |
val inductive_rulify2 = thms "inductive_rulify2"; |
|
71 |
||
72 |
||
73 |
||
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
74 |
(*** theory data ***) |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
75 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
76 |
(* data kind 'HOL/inductive' *) |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
77 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
78 |
type inductive_info = |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
79 |
{names: string list, coind: bool} * {defs: thm list, elims: thm list, raw_induct: thm, |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
80 |
induct: thm, intrs: thm list, mk_cases: string -> thm, mono: thm, unfold: thm}; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
81 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
82 |
structure InductiveArgs = |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
83 |
struct |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
84 |
val name = "HOL/inductive"; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
85 |
type T = inductive_info Symtab.table * thm list; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
86 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
87 |
val empty = (Symtab.empty, []); |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
88 |
val copy = I; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
89 |
val prep_ext = I; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
90 |
fun merge ((tab1, monos1), (tab2, monos2)) = (Symtab.merge (K true) (tab1, tab2), |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
91 |
Library.generic_merge Thm.eq_thm I I monos1 monos2); |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
92 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
93 |
fun print sg (tab, monos) = |
8720 | 94 |
[Pretty.strs ("(co)inductives:" :: map #1 (Sign.cond_extern_table sg Sign.constK tab)), |
10008 | 95 |
Pretty.big_list "monotonicity rules:" (map (Display.pretty_thm_sg sg) monos)] |
8720 | 96 |
|> Pretty.chunks |> Pretty.writeln; |
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
97 |
end; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
98 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
99 |
structure InductiveData = TheoryDataFun(InductiveArgs); |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
100 |
val print_inductives = InductiveData.print; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
101 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
102 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
103 |
(* get and put data *) |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
104 |
|
9116
9df44b5c610b
get_inductive now returns None instead of raising an exception.
berghofe
parents:
9072
diff
changeset
|
105 |
fun get_inductive thy name = Symtab.lookup (fst (InductiveData.get thy), name); |
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
106 |
|
9598 | 107 |
fun the_inductive thy name = |
108 |
(case get_inductive thy name of |
|
109 |
None => error ("Unknown (co)inductive set " ^ quote name) |
|
110 |
| Some info => info); |
|
111 |
||
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
112 |
fun put_inductives names info thy = |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
113 |
let |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
114 |
fun upd ((tab, monos), name) = (Symtab.update_new ((name, info), tab), monos); |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
115 |
val tab_monos = foldl upd (InductiveData.get thy, names) |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
116 |
handle Symtab.DUP name => error ("Duplicate definition of (co)inductive set " ^ quote name); |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
117 |
in InductiveData.put tab_monos thy end; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
118 |
|
8277 | 119 |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
120 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
121 |
(** monotonicity rules **) |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
122 |
|
9831 | 123 |
val get_monos = #2 o InductiveData.get; |
124 |
fun map_monos f = InductiveData.map (Library.apsnd f); |
|
8277 | 125 |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
126 |
fun mk_mono thm = |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
127 |
let |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
128 |
fun eq2mono thm' = [standard (thm' RS (thm' RS eq_to_mono))] @ |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
129 |
(case concl_of thm of |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
130 |
(_ $ (_ $ (Const ("Not", _) $ _) $ _)) => [] |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
131 |
| _ => [standard (thm' RS (thm' RS eq_to_mono2))]); |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
132 |
val concl = concl_of thm |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
133 |
in |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
134 |
if Logic.is_equals concl then |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
135 |
eq2mono (thm RS meta_eq_to_obj_eq) |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
136 |
else if can (HOLogic.dest_eq o HOLogic.dest_Trueprop) concl then |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
137 |
eq2mono thm |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
138 |
else [thm] |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
139 |
end; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
140 |
|
8634 | 141 |
|
142 |
(* attributes *) |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
143 |
|
9831 | 144 |
fun mono_add_global (thy, thm) = (map_monos (Drule.add_rules (mk_mono thm)) thy, thm); |
145 |
fun mono_del_global (thy, thm) = (map_monos (Drule.del_rules (mk_mono thm)) thy, thm); |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
146 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
147 |
val mono_attr = |
8634 | 148 |
(Attrib.add_del_args mono_add_global mono_del_global, |
149 |
Attrib.add_del_args Attrib.undef_local_attribute Attrib.undef_local_attribute); |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
150 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
151 |
|
7107 | 152 |
|
6424 | 153 |
(** utilities **) |
154 |
||
155 |
(* messages *) |
|
156 |
||
5662 | 157 |
val quiet_mode = ref false; |
158 |
fun message s = if !quiet_mode then () else writeln s; |
|
159 |
||
6424 | 160 |
fun coind_prefix true = "co" |
161 |
| coind_prefix false = ""; |
|
162 |
||
163 |
||
7020
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
164 |
(* the following code ensures that each recursive set *) |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
165 |
(* always has the same type in all introduction rules *) |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
166 |
|
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
167 |
fun unify_consts sign cs intr_ts = |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
168 |
(let |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
169 |
val {tsig, ...} = Sign.rep_sg sign; |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
170 |
val add_term_consts_2 = |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
171 |
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
|
172 |
fun varify (t, (i, ts)) = |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
173 |
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
|
174 |
in (maxidx_of_term t', t'::ts) end; |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
175 |
val (i, cs') = foldr varify (cs, (~1, [])); |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
176 |
val (i', intr_ts') = foldr varify (intr_ts, (i, [])); |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
177 |
val rec_consts = foldl add_term_consts_2 ([], cs'); |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
178 |
val intr_consts = foldl add_term_consts_2 ([], intr_ts'); |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
179 |
fun unify (env, (cname, cT)) = |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
180 |
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
|
181 |
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
|
182 |
(env, (replicate (length consts) cT) ~~ consts) |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
183 |
end; |
8410
5902c02fa122
Type.unify now uses Vartab instead of association lists.
berghofe
parents:
8401
diff
changeset
|
184 |
val (env, _) = foldl unify ((Vartab.empty, i'), rec_consts); |
5902c02fa122
Type.unify now uses Vartab instead of association lists.
berghofe
parents:
8401
diff
changeset
|
185 |
fun typ_subst_TVars_2 env T = let val T' = typ_subst_TVars_Vartab env T |
7020
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
186 |
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
|
187 |
val subst = fst o Type.freeze_thaw o |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
188 |
(map_term_types (typ_subst_TVars_2 env)) |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
189 |
|
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
190 |
in (map subst cs', map subst intr_ts') |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
191 |
end) handle Type.TUNIFY => |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
192 |
(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
|
193 |
|
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
194 |
|
6424 | 195 |
(* misc *) |
196 |
||
5094 | 197 |
val Const _ $ (vimage_f $ _) $ _ = HOLogic.dest_Trueprop (concl_of vimageD); |
198 |
||
10212 | 199 |
val vimage_name = Sign.intern_const (Theory.sign_of Inverse_Image.thy) "vimage"; |
6394 | 200 |
val mono_name = Sign.intern_const (Theory.sign_of Ord.thy) "mono"; |
5094 | 201 |
|
202 |
(* make injections needed in mutually recursive definitions *) |
|
203 |
||
204 |
fun mk_inj cs sumT c x = |
|
205 |
let |
|
206 |
fun mk_inj' T n i = |
|
207 |
if n = 1 then x else |
|
208 |
let val n2 = n div 2; |
|
209 |
val Type (_, [T1, T2]) = T |
|
210 |
in |
|
211 |
if i <= n2 then |
|
212 |
Const ("Inl", T1 --> T) $ (mk_inj' T1 n2 i) |
|
213 |
else |
|
214 |
Const ("Inr", T2 --> T) $ (mk_inj' T2 (n - n2) (i - n2)) |
|
215 |
end |
|
216 |
in mk_inj' sumT (length cs) (1 + find_index_eq c cs) |
|
217 |
end; |
|
218 |
||
219 |
(* make "vimage" terms for selecting out components of mutually rec.def. *) |
|
220 |
||
221 |
fun mk_vimage cs sumT t c = if length cs < 2 then t else |
|
222 |
let |
|
223 |
val cT = HOLogic.dest_setT (fastype_of c); |
|
224 |
val vimageT = [cT --> sumT, HOLogic.mk_setT sumT] ---> HOLogic.mk_setT cT |
|
225 |
in |
|
226 |
Const (vimage_name, vimageT) $ |
|
227 |
Abs ("y", cT, mk_inj cs sumT c (Bound 0)) $ t |
|
228 |
end; |
|
229 |
||
6424 | 230 |
|
231 |
||
10729 | 232 |
(** process rules **) |
233 |
||
234 |
local |
|
5094 | 235 |
|
10729 | 236 |
fun err_in_rule sg name t msg = |
237 |
error (cat_lines ["Ill-formed introduction rule " ^ quote name, Sign.string_of_term sg t, msg]); |
|
238 |
||
239 |
fun err_in_prem sg name t p msg = |
|
240 |
error (cat_lines ["Ill-formed premise", Sign.string_of_term sg p, |
|
241 |
"in introduction rule " ^ quote name, Sign.string_of_term sg t, msg]); |
|
5094 | 242 |
|
10729 | 243 |
val bad_concl = "Conclusion of introduction rule must have form \"t : S_i\""; |
244 |
||
245 |
val atomize_cterm = InductMethod.rewrite_cterm inductive_atomize; |
|
246 |
fun full_simplify rews = Simplifier.full_simplify (HOL_basic_ss addsimps rews); |
|
247 |
||
248 |
in |
|
5094 | 249 |
|
10729 | 250 |
fun check_rule sg cs ((name, rule), att) = |
251 |
let |
|
252 |
val concl = Logic.strip_imp_concl rule; |
|
253 |
val prems = Logic.strip_imp_prems rule; |
|
254 |
val aprems = prems |> map (Thm.term_of o atomize_cterm o Thm.cterm_of sg); |
|
255 |
val arule = Logic.list_implies (aprems, concl); |
|
5094 | 256 |
|
10729 | 257 |
fun check_prem (prem, aprem) = |
258 |
if can HOLogic.dest_Trueprop aprem then () |
|
259 |
else err_in_prem sg name rule prem "Non-atomic premise"; |
|
260 |
in |
|
261 |
(case HOLogic.dest_Trueprop concl of |
|
262 |
(Const ("op :", _) $ t $ u) => |
|
263 |
if u mem cs then |
|
264 |
if exists (Logic.occs o rpair t) cs then |
|
265 |
err_in_rule sg name rule "Recursion term on left of member symbol" |
|
266 |
else seq check_prem (prems ~~ aprems) |
|
267 |
else err_in_rule sg name rule bad_concl |
|
268 |
| _ => err_in_rule sg name rule bad_concl); |
|
269 |
((name, arule), att) |
|
270 |
end; |
|
5094 | 271 |
|
10729 | 272 |
val rulify = |
273 |
standard o full_simplify [Drule.norm_hhf_eq] o |
|
274 |
full_simplify inductive_rulify2 o full_simplify inductive_rulify1 o |
|
275 |
full_simplify inductive_conj; |
|
276 |
||
277 |
fun rulified x = Drule.rule_attribute (K rulify) x; |
|
278 |
||
279 |
end; |
|
280 |
||
5094 | 281 |
|
7020
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
282 |
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
|
283 |
Some x => x |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
284 |
| None => error (msg ^ Sign.string_of_term sign t)); |
5094 | 285 |
|
6424 | 286 |
|
5094 | 287 |
|
6424 | 288 |
(*** properties of (co)inductive sets ***) |
289 |
||
290 |
(** elimination rules **) |
|
5094 | 291 |
|
8375 | 292 |
fun mk_elims cs cTs params intr_ts intr_names = |
5094 | 293 |
let |
294 |
val used = foldr add_term_names (intr_ts, []); |
|
295 |
val [aname, pname] = variantlist (["a", "P"], used); |
|
296 |
val P = HOLogic.mk_Trueprop (Free (pname, HOLogic.boolT)); |
|
297 |
||
298 |
fun dest_intr r = |
|
299 |
let val Const ("op :", _) $ t $ u = |
|
300 |
HOLogic.dest_Trueprop (Logic.strip_imp_concl r) |
|
301 |
in (u, t, Logic.strip_imp_prems r) end; |
|
302 |
||
8380 | 303 |
val intrs = map dest_intr intr_ts ~~ intr_names; |
5094 | 304 |
|
305 |
fun mk_elim (c, T) = |
|
306 |
let |
|
307 |
val a = Free (aname, T); |
|
308 |
||
309 |
fun mk_elim_prem (_, t, ts) = |
|
310 |
list_all_free (map dest_Free ((foldr add_term_frees (t::ts, [])) \\ params), |
|
311 |
Logic.list_implies (HOLogic.mk_Trueprop (HOLogic.mk_eq (a, t)) :: ts, P)); |
|
8375 | 312 |
val c_intrs = (filter (equal c o #1 o #1) intrs); |
5094 | 313 |
in |
8375 | 314 |
(Logic.list_implies (HOLogic.mk_Trueprop (HOLogic.mk_mem (a, c)) :: |
315 |
map mk_elim_prem (map #1 c_intrs), P), map #2 c_intrs) |
|
5094 | 316 |
end |
317 |
in |
|
318 |
map mk_elim (cs ~~ cTs) |
|
319 |
end; |
|
9598 | 320 |
|
6424 | 321 |
|
322 |
||
323 |
(** premises and conclusions of induction rules **) |
|
5094 | 324 |
|
325 |
fun mk_indrule cs cTs params intr_ts = |
|
326 |
let |
|
327 |
val used = foldr add_term_names (intr_ts, []); |
|
328 |
||
329 |
(* predicates for induction rule *) |
|
330 |
||
331 |
val preds = map Free (variantlist (if length cs < 2 then ["P"] else |
|
332 |
map (fn i => "P" ^ string_of_int i) (1 upto length cs), used) ~~ |
|
333 |
map (fn T => T --> HOLogic.boolT) cTs); |
|
334 |
||
335 |
(* transform an introduction rule into a premise for induction rule *) |
|
336 |
||
337 |
fun mk_ind_prem r = |
|
338 |
let |
|
339 |
val frees = map dest_Free ((add_term_frees (r, [])) \\ params); |
|
340 |
||
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
341 |
val pred_of = curry (Library.gen_assoc (op aconv)) (cs ~~ preds); |
5094 | 342 |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
343 |
fun subst (s as ((m as Const ("op :", T)) $ t $ u)) = |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
344 |
(case pred_of u of |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
345 |
None => (m $ fst (subst t) $ fst (subst u), None) |
10729 | 346 |
| Some P => (mk_inductive_conj (s, P $ t), Some (s, P $ t))) |
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
347 |
| subst s = |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
348 |
(case pred_of s of |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
349 |
Some P => (HOLogic.mk_binop "op Int" |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
350 |
(s, HOLogic.Collect_const (HOLogic.dest_setT |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
351 |
(fastype_of s)) $ P), None) |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
352 |
| None => (case s of |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
353 |
(t $ u) => (fst (subst t) $ fst (subst u), None) |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
354 |
| (Abs (a, T, t)) => (Abs (a, T, fst (subst t)), None) |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
355 |
| _ => (s, None))); |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
356 |
|
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
357 |
fun mk_prem (s, prems) = (case subst s of |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
358 |
(_, Some (t, u)) => t :: u :: prems |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
359 |
| (t, _) => t :: prems); |
9598 | 360 |
|
5094 | 361 |
val Const ("op :", _) $ t $ u = |
362 |
HOLogic.dest_Trueprop (Logic.strip_imp_concl r) |
|
363 |
||
364 |
in list_all_free (frees, |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
365 |
Logic.list_implies (map HOLogic.mk_Trueprop (foldr mk_prem |
5094 | 366 |
(map HOLogic.dest_Trueprop (Logic.strip_imp_prems r), [])), |
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
367 |
HOLogic.mk_Trueprop (the (pred_of u) $ t))) |
5094 | 368 |
end; |
369 |
||
370 |
val ind_prems = map mk_ind_prem intr_ts; |
|
371 |
||
372 |
(* make conclusions for induction rules *) |
|
373 |
||
374 |
fun mk_ind_concl ((c, P), (ts, x)) = |
|
375 |
let val T = HOLogic.dest_setT (fastype_of c); |
|
376 |
val Ts = HOLogic.prodT_factors T; |
|
377 |
val (frees, x') = foldr (fn (T', (fs, s)) => |
|
378 |
((Free (s, T'))::fs, bump_string s)) (Ts, ([], x)); |
|
379 |
val tuple = HOLogic.mk_tuple T frees; |
|
380 |
in ((HOLogic.mk_binop "op -->" |
|
381 |
(HOLogic.mk_mem (tuple, c), P $ tuple))::ts, x') |
|
382 |
end; |
|
383 |
||
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
384 |
val mutual_ind_concl = HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj |
5094 | 385 |
(fst (foldr mk_ind_concl (cs ~~ preds, ([], "xa"))))) |
386 |
||
387 |
in (preds, ind_prems, mutual_ind_concl) |
|
388 |
end; |
|
389 |
||
6424 | 390 |
|
5094 | 391 |
|
8316
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
392 |
(** prepare cases and induct rules **) |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
393 |
|
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
394 |
(* |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
395 |
transform mutual rule: |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
396 |
HH ==> (x1:A1 --> P1 x1) & ... & (xn:An --> Pn xn) |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
397 |
into i-th projection: |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
398 |
xi:Ai ==> HH ==> Pi xi |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
399 |
*) |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
400 |
|
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
401 |
fun project_rules [name] rule = [(name, rule)] |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
402 |
| project_rules names mutual_rule = |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
403 |
let |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
404 |
val n = length names; |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
405 |
fun proj i = |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
406 |
(if i < n then (fn th => th RS conjunct1) else I) |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
407 |
(Library.funpow (i - 1) (fn th => th RS conjunct2) mutual_rule) |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
408 |
RS mp |> Thm.permute_prems 0 ~1 |> Drule.standard; |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
409 |
in names ~~ map proj (1 upto n) end; |
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
410 |
|
8375 | 411 |
fun add_cases_induct no_elim no_ind names elims induct induct_cases = |
8316
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
412 |
let |
9405 | 413 |
fun cases_spec (name, elim) thy = |
414 |
thy |
|
415 |
|> Theory.add_path (Sign.base_name name) |
|
10279 | 416 |
|> (#1 o PureThy.add_thms [(("cases", elim), [InductAttrib.cases_set_global name])]) |
9405 | 417 |
|> Theory.parent_path; |
8375 | 418 |
val cases_specs = if no_elim then [] else map2 cases_spec (names, elims); |
8316
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
419 |
|
9405 | 420 |
fun induct_spec (name, th) = (#1 o PureThy.add_thms |
10279 | 421 |
[(("", th), [RuleCases.case_names induct_cases, InductAttrib.induct_set_global name])]); |
8401 | 422 |
val induct_specs = if no_ind then [] else map induct_spec (project_rules names induct); |
9405 | 423 |
in Library.apply (cases_specs @ induct_specs) end; |
8316
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
424 |
|
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
425 |
|
74639e19eca0
add_cases_induct: project_rules accomodates mutual induction;
wenzelm
parents:
8312
diff
changeset
|
426 |
|
6424 | 427 |
(*** proofs for (co)inductive sets ***) |
428 |
||
429 |
(** prove monotonicity **) |
|
5094 | 430 |
|
431 |
fun prove_mono setT fp_fun monos thy = |
|
432 |
let |
|
6427 | 433 |
val _ = message " Proving monotonicity ..."; |
5094 | 434 |
|
6394 | 435 |
val mono = prove_goalw_cterm [] (cterm_of (Theory.sign_of thy) (HOLogic.mk_Trueprop |
5094 | 436 |
(Const (mono_name, (setT --> setT) --> HOLogic.boolT) $ fp_fun))) |
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
437 |
(fn _ => [rtac monoI 1, REPEAT (ares_tac (get_monos thy @ flat (map mk_mono monos)) 1)]) |
5094 | 438 |
|
439 |
in mono end; |
|
440 |
||
6424 | 441 |
|
442 |
||
443 |
(** prove introduction rules **) |
|
5094 | 444 |
|
445 |
fun prove_intrs coind mono fp_def intr_ts con_defs rec_sets_defs thy = |
|
446 |
let |
|
6427 | 447 |
val _ = message " Proving the introduction rules ..."; |
5094 | 448 |
|
449 |
val unfold = standard (mono RS (fp_def RS |
|
10186 | 450 |
(if coind then def_gfp_unfold else def_lfp_unfold))); |
5094 | 451 |
|
452 |
fun select_disj 1 1 = [] |
|
453 |
| select_disj _ 1 = [rtac disjI1] |
|
454 |
| select_disj n i = (rtac disjI2)::(select_disj (n - 1) (i - 1)); |
|
455 |
||
456 |
val intrs = map (fn (i, intr) => prove_goalw_cterm rec_sets_defs |
|
6394 | 457 |
(cterm_of (Theory.sign_of thy) intr) (fn prems => |
5094 | 458 |
[(*insert prems and underlying sets*) |
459 |
cut_facts_tac prems 1, |
|
460 |
stac unfold 1, |
|
461 |
REPEAT (resolve_tac [vimageI2, CollectI] 1), |
|
462 |
(*Now 1-2 subgoals: the disjunction, perhaps equality.*) |
|
463 |
EVERY1 (select_disj (length intr_ts) i), |
|
464 |
(*Not ares_tac, since refl must be tried before any equality assumptions; |
|
465 |
backtracking may occur if the premises have extra variables!*) |
|
466 |
DEPTH_SOLVE_1 (resolve_tac [refl,exI,conjI] 1 APPEND assume_tac 1), |
|
467 |
(*Now solve the equations like Inl 0 = Inl ?b2*) |
|
468 |
rewrite_goals_tac con_defs, |
|
10729 | 469 |
REPEAT (rtac refl 1)]) |
470 |
|> rulify) (1 upto (length intr_ts) ~~ intr_ts) |
|
5094 | 471 |
|
472 |
in (intrs, unfold) end; |
|
473 |
||
6424 | 474 |
|
475 |
||
476 |
(** prove elimination rules **) |
|
5094 | 477 |
|
8375 | 478 |
fun prove_elims cs cTs params intr_ts intr_names unfold rec_sets_defs thy = |
5094 | 479 |
let |
6427 | 480 |
val _ = message " Proving the elimination rules ..."; |
5094 | 481 |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
482 |
val rules1 = [CollectE, disjE, make_elim vimageD, exE]; |
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
483 |
val rules2 = [conjE, Inl_neq_Inr, Inr_neq_Inl] @ |
5094 | 484 |
map make_elim [Inl_inject, Inr_inject]; |
8375 | 485 |
in |
486 |
map (fn (t, cases) => prove_goalw_cterm rec_sets_defs |
|
6394 | 487 |
(cterm_of (Theory.sign_of thy) t) (fn prems => |
5094 | 488 |
[cut_facts_tac [hd prems] 1, |
489 |
dtac (unfold RS subst) 1, |
|
490 |
REPEAT (FIRSTGOAL (eresolve_tac rules1)), |
|
491 |
REPEAT (FIRSTGOAL (eresolve_tac rules2)), |
|
492 |
EVERY (map (fn prem => |
|
8375 | 493 |
DEPTH_SOLVE_1 (ares_tac [prem, conjI] 1)) (tl prems))]) |
10729 | 494 |
|> rulify |
8375 | 495 |
|> RuleCases.name cases) |
496 |
(mk_elims cs cTs params intr_ts intr_names) |
|
497 |
end; |
|
5094 | 498 |
|
6424 | 499 |
|
5094 | 500 |
(** derivation of simplified elimination rules **) |
501 |
||
502 |
(*Applies freeness of the given constructors, which *must* be unfolded by |
|
9598 | 503 |
the given defs. Cannot simply use the local con_defs because con_defs=[] |
5094 | 504 |
for inference systems. |
505 |
*) |
|
506 |
||
7107 | 507 |
(*cprop should have the form t:Si where Si is an inductive set*) |
9598 | 508 |
|
509 |
val mk_cases_err = "mk_cases: proposition not of form 't : S_i'"; |
|
510 |
||
511 |
fun mk_cases_i elims ss cprop = |
|
7107 | 512 |
let |
513 |
val prem = Thm.assume cprop; |
|
9598 | 514 |
val tac = ALLGOALS (InductMethod.simp_case_tac false ss) THEN prune_params_tac; |
9298 | 515 |
fun mk_elim rl = Drule.standard (Tactic.rule_by_tactic tac (prem RS rl)); |
7107 | 516 |
in |
517 |
(case get_first (try mk_elim) elims of |
|
518 |
Some r => r |
|
519 |
| None => error (Pretty.string_of (Pretty.block |
|
9598 | 520 |
[Pretty.str mk_cases_err, Pretty.fbrk, Display.pretty_cterm cprop]))) |
7107 | 521 |
end; |
522 |
||
6141 | 523 |
fun mk_cases elims s = |
9598 | 524 |
mk_cases_i elims (simpset()) (Thm.read_cterm (Thm.sign_of_thm (hd elims)) (s, propT)); |
525 |
||
526 |
fun smart_mk_cases thy ss cprop = |
|
527 |
let |
|
528 |
val c = #1 (Term.dest_Const (Term.head_of (#2 (HOLogic.dest_mem (HOLogic.dest_Trueprop |
|
529 |
(Logic.strip_imp_concl (Thm.term_of cprop))))))) handle TERM _ => error mk_cases_err; |
|
530 |
val (_, {elims, ...}) = the_inductive thy c; |
|
531 |
in mk_cases_i elims ss cprop end; |
|
7107 | 532 |
|
533 |
||
534 |
(* inductive_cases(_i) *) |
|
535 |
||
536 |
fun gen_inductive_cases prep_att prep_const prep_prop |
|
9598 | 537 |
(((name, raw_atts), raw_props), comment) thy = |
538 |
let |
|
539 |
val ss = Simplifier.simpset_of thy; |
|
540 |
val sign = Theory.sign_of thy; |
|
541 |
val cprops = map (Thm.cterm_of sign o prep_prop (ProofContext.init thy)) raw_props; |
|
542 |
val atts = map (prep_att thy) raw_atts; |
|
543 |
val thms = map (smart_mk_cases thy ss) cprops; |
|
544 |
in thy |> IsarThy.have_theorems_i [(((name, atts), map Thm.no_attributes thms), comment)] end; |
|
5094 | 545 |
|
7107 | 546 |
val inductive_cases = |
547 |
gen_inductive_cases Attrib.global_attribute Sign.intern_const ProofContext.read_prop; |
|
548 |
||
549 |
val inductive_cases_i = gen_inductive_cases (K I) (K I) ProofContext.cert_prop; |
|
550 |
||
6424 | 551 |
|
9598 | 552 |
(* mk_cases_meth *) |
553 |
||
554 |
fun mk_cases_meth (ctxt, raw_props) = |
|
555 |
let |
|
556 |
val thy = ProofContext.theory_of ctxt; |
|
557 |
val ss = Simplifier.get_local_simpset ctxt; |
|
558 |
val cprops = map (Thm.cterm_of (Theory.sign_of thy) o ProofContext.read_prop ctxt) raw_props; |
|
559 |
in Method.erule (map (smart_mk_cases thy ss) cprops) end; |
|
560 |
||
561 |
val mk_cases_args = Method.syntax (Scan.lift (Scan.repeat1 Args.name)); |
|
562 |
||
563 |
||
6424 | 564 |
|
565 |
(** prove induction rule **) |
|
5094 | 566 |
|
567 |
fun prove_indrule cs cTs sumT rec_const params intr_ts mono |
|
568 |
fp_def rec_sets_defs thy = |
|
569 |
let |
|
6427 | 570 |
val _ = message " Proving the induction rule ..."; |
5094 | 571 |
|
6394 | 572 |
val sign = Theory.sign_of thy; |
5094 | 573 |
|
7293 | 574 |
val sum_case_rewrites = (case ThyInfo.lookup_theory "Datatype" of |
575 |
None => [] |
|
576 |
| Some thy' => map mk_meta_eq (PureThy.get_thms thy' "sum.cases")); |
|
577 |
||
5094 | 578 |
val (preds, ind_prems, mutual_ind_concl) = mk_indrule cs cTs params intr_ts; |
579 |
||
580 |
(* make predicate for instantiation of abstract induction rule *) |
|
581 |
||
582 |
fun mk_ind_pred _ [P] = P |
|
583 |
| mk_ind_pred T Ps = |
|
584 |
let val n = (length Ps) div 2; |
|
585 |
val Type (_, [T1, T2]) = T |
|
7293 | 586 |
in Const ("Datatype.sum.sum_case", |
5094 | 587 |
[T1 --> HOLogic.boolT, T2 --> HOLogic.boolT, T] ---> HOLogic.boolT) $ |
588 |
mk_ind_pred T1 (take (n, Ps)) $ mk_ind_pred T2 (drop (n, Ps)) |
|
589 |
end; |
|
590 |
||
591 |
val ind_pred = mk_ind_pred sumT preds; |
|
592 |
||
593 |
val ind_concl = HOLogic.mk_Trueprop |
|
594 |
(HOLogic.all_const sumT $ Abs ("x", sumT, HOLogic.mk_binop "op -->" |
|
595 |
(HOLogic.mk_mem (Bound 0, rec_const), ind_pred $ Bound 0))); |
|
596 |
||
597 |
(* simplification rules for vimage and Collect *) |
|
598 |
||
599 |
val vimage_simps = if length cs < 2 then [] else |
|
600 |
map (fn c => prove_goalw_cterm [] (cterm_of sign |
|
601 |
(HOLogic.mk_Trueprop (HOLogic.mk_eq |
|
602 |
(mk_vimage cs sumT (HOLogic.Collect_const sumT $ ind_pred) c, |
|
603 |
HOLogic.Collect_const (HOLogic.dest_setT (fastype_of c)) $ |
|
604 |
nth_elem (find_index_eq c cs, preds))))) |
|
7293 | 605 |
(fn _ => [rtac vimage_Collect 1, rewrite_goals_tac sum_case_rewrites, |
5094 | 606 |
rtac refl 1])) cs; |
607 |
||
10729 | 608 |
val induct = prove_goalw_cterm [inductive_conj_def] (cterm_of sign |
5094 | 609 |
(Logic.list_implies (ind_prems, ind_concl))) (fn prems => |
610 |
[rtac (impI RS allI) 1, |
|
10202 | 611 |
DETERM (etac (mono RS (fp_def RS def_lfp_induct)) 1), |
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
612 |
rewrite_goals_tac (map mk_meta_eq (vimage_Int::Int_Collect::vimage_simps)), |
5094 | 613 |
fold_goals_tac rec_sets_defs, |
614 |
(*This CollectE and disjE separates out the introduction rules*) |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
615 |
REPEAT (FIRSTGOAL (eresolve_tac [CollectE, disjE, exE])), |
5094 | 616 |
(*Now break down the individual cases. No disjE here in case |
617 |
some premise involves disjunction.*) |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
618 |
REPEAT (FIRSTGOAL (etac conjE ORELSE' hyp_subst_tac)), |
7293 | 619 |
rewrite_goals_tac sum_case_rewrites, |
5094 | 620 |
EVERY (map (fn prem => |
5149 | 621 |
DEPTH_SOLVE_1 (ares_tac [prem, conjI, refl] 1)) prems)]); |
5094 | 622 |
|
623 |
val lemma = prove_goalw_cterm rec_sets_defs (cterm_of sign |
|
624 |
(Logic.mk_implies (ind_concl, mutual_ind_concl))) (fn prems => |
|
625 |
[cut_facts_tac prems 1, |
|
626 |
REPEAT (EVERY |
|
627 |
[REPEAT (resolve_tac [conjI, impI] 1), |
|
628 |
TRY (dtac vimageD 1), etac allE 1, dtac mp 1, atac 1, |
|
7293 | 629 |
rewrite_goals_tac sum_case_rewrites, |
5094 | 630 |
atac 1])]) |
631 |
||
10729 | 632 |
in standard (split_rule (induct RS lemma)) end; |
5094 | 633 |
|
6424 | 634 |
|
635 |
||
636 |
(*** specification of (co)inductive sets ****) |
|
637 |
||
638 |
(** definitional introduction of (co)inductive sets **) |
|
5094 | 639 |
|
10729 | 640 |
fun cond_declare_consts declare_consts cs paramTs cnames = |
641 |
if declare_consts then |
|
642 |
Theory.add_consts_i (map (fn (c, n) => (n, paramTs ---> fastype_of c, NoSyn)) (cs ~~ cnames)) |
|
643 |
else I; |
|
644 |
||
9072
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
645 |
fun mk_ind_def declare_consts alt_name coind cs intr_ts monos con_defs thy |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
646 |
params paramTs cTs cnames = |
5094 | 647 |
let |
648 |
val sumT = fold_bal (fn (T, U) => Type ("+", [T, U])) cTs; |
|
649 |
val setT = HOLogic.mk_setT sumT; |
|
650 |
||
6394 | 651 |
val fp_name = if coind then Sign.intern_const (Theory.sign_of Gfp.thy) "gfp" |
652 |
else Sign.intern_const (Theory.sign_of Lfp.thy) "lfp"; |
|
5094 | 653 |
|
5149 | 654 |
val used = foldr add_term_names (intr_ts, []); |
655 |
val [sname, xname] = variantlist (["S", "x"], used); |
|
656 |
||
5094 | 657 |
(* transform an introduction rule into a conjunction *) |
658 |
(* [| t : ... S_i ... ; ... |] ==> u : S_j *) |
|
659 |
(* is transformed into *) |
|
660 |
(* x = Inj_j u & t : ... Inj_i -`` S ... & ... *) |
|
661 |
||
662 |
fun transform_rule r = |
|
663 |
let |
|
664 |
val frees = map dest_Free ((add_term_frees (r, [])) \\ params); |
|
5149 | 665 |
val subst = subst_free |
666 |
(cs ~~ (map (mk_vimage cs sumT (Free (sname, setT))) cs)); |
|
5094 | 667 |
val Const ("op :", _) $ t $ u = |
668 |
HOLogic.dest_Trueprop (Logic.strip_imp_concl r) |
|
669 |
||
670 |
in foldr (fn ((x, T), P) => HOLogic.mk_exists (x, T, P)) |
|
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
671 |
(frees, foldr1 HOLogic.mk_conj |
5149 | 672 |
(((HOLogic.eq_const sumT) $ Free (xname, sumT) $ (mk_inj cs sumT u t)):: |
5094 | 673 |
(map (subst o HOLogic.dest_Trueprop) |
674 |
(Logic.strip_imp_prems r)))) |
|
675 |
end |
|
676 |
||
677 |
(* make a disjunction of all introduction rules *) |
|
678 |
||
5149 | 679 |
val fp_fun = absfree (sname, setT, (HOLogic.Collect_const sumT) $ |
7710
bf8cb3fc5d64
Monotonicity rules for inductive definitions can now be added to a theory via
berghofe
parents:
7349
diff
changeset
|
680 |
absfree (xname, sumT, foldr1 HOLogic.mk_disj (map transform_rule intr_ts))); |
5094 | 681 |
|
682 |
(* add definiton of recursive sets to theory *) |
|
683 |
||
684 |
val rec_name = if alt_name = "" then space_implode "_" cnames else alt_name; |
|
6394 | 685 |
val full_rec_name = Sign.full_name (Theory.sign_of thy) rec_name; |
5094 | 686 |
|
687 |
val rec_const = list_comb |
|
688 |
(Const (full_rec_name, paramTs ---> setT), params); |
|
689 |
||
690 |
val fp_def_term = Logic.mk_equals (rec_const, |
|
691 |
Const (fp_name, (setT --> setT) --> setT) $ fp_fun) |
|
692 |
||
693 |
val def_terms = fp_def_term :: (if length cs < 2 then [] else |
|
694 |
map (fn c => Logic.mk_equals (c, mk_vimage cs sumT rec_const c)) cs); |
|
695 |
||
8433 | 696 |
val (thy', [fp_def :: rec_sets_defs]) = |
697 |
thy |
|
10729 | 698 |
|> cond_declare_consts declare_consts cs paramTs cnames |
8433 | 699 |
|> (if length cs < 2 then I |
700 |
else Theory.add_consts_i [(rec_name, paramTs ---> setT, NoSyn)]) |
|
701 |
|> Theory.add_path rec_name |
|
9315 | 702 |
|> PureThy.add_defss_i false [(("defs", def_terms), [])]; |
5094 | 703 |
|
9072
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
704 |
val mono = prove_mono setT fp_fun monos thy' |
5094 | 705 |
|
9072
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
706 |
in |
9598 | 707 |
(thy', mono, fp_def, rec_sets_defs, rec_const, sumT) |
9072
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
708 |
end; |
5094 | 709 |
|
9072
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
710 |
fun add_ind_def verbose declare_consts alt_name coind no_elim no_ind cs |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
711 |
atts intros monos con_defs thy params paramTs cTs cnames induct_cases = |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
712 |
let |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
713 |
val _ = if verbose then message ("Proofs for " ^ coind_prefix coind ^ "inductive set(s) " ^ |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
714 |
commas_quote cnames) else (); |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
715 |
|
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
716 |
val ((intr_names, intr_ts), intr_atts) = apfst split_list (split_list intros); |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
717 |
|
9939 | 718 |
val (thy1, mono, fp_def, rec_sets_defs, rec_const, sumT) = |
9072
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
719 |
mk_ind_def declare_consts alt_name coind cs intr_ts monos con_defs thy |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
720 |
params paramTs cTs cnames; |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
721 |
|
5094 | 722 |
val (intrs, unfold) = prove_intrs coind mono fp_def intr_ts con_defs |
9939 | 723 |
rec_sets_defs thy1; |
5094 | 724 |
val elims = if no_elim then [] else |
9939 | 725 |
prove_elims cs cTs params intr_ts intr_names unfold rec_sets_defs thy1; |
8312
b470bc28b59d
add_cases_induct: accomodate no_elim and no_ind flags;
wenzelm
parents:
8307
diff
changeset
|
726 |
val raw_induct = if no_ind then Drule.asm_rl else |
5094 | 727 |
if coind then standard (rule_by_tactic |
5553 | 728 |
(rewrite_tac [mk_meta_eq vimage_Un] THEN |
5094 | 729 |
fold_tac rec_sets_defs) (mono RS (fp_def RS def_Collect_coinduct))) |
730 |
else |
|
731 |
prove_indrule cs cTs sumT rec_const params intr_ts mono fp_def |
|
9939 | 732 |
rec_sets_defs thy1; |
5108 | 733 |
val induct = if coind orelse no_ind orelse length cs > 1 then raw_induct |
5094 | 734 |
else standard (raw_induct RSN (2, rev_mp)); |
735 |
||
9939 | 736 |
val (thy2, intrs') = |
737 |
thy1 |> PureThy.add_thms ((intr_names ~~ intrs) ~~ intr_atts); |
|
738 |
val (thy3, [intrs'']) = |
|
739 |
thy2 |
|
740 |
|> PureThy.add_thmss [(("intros", intrs'), atts)] |
|
8433 | 741 |
|>> (if no_elim then I else #1 o PureThy.add_thmss [(("elims", elims), [])]) |
742 |
|>> (if no_ind then I else #1 o PureThy.add_thms |
|
10729 | 743 |
[((coind_prefix coind ^ "induct", rulify induct), [RuleCases.case_names induct_cases])]) |
8433 | 744 |
|>> Theory.parent_path; |
9939 | 745 |
val elims' = if no_elim then elims else PureThy.get_thms thy3 "elims"; (* FIXME improve *) |
746 |
val induct' = if no_ind then induct else PureThy.get_thm thy3 (coind_prefix coind ^ "induct"); (* FIXME improve *) |
|
747 |
in (thy3, |
|
5094 | 748 |
{defs = fp_def::rec_sets_defs, |
749 |
mono = mono, |
|
750 |
unfold = unfold, |
|
9939 | 751 |
intrs = intrs'', |
7798
42e94b618f34
return stored thms with proper naming in derivation;
wenzelm
parents:
7710
diff
changeset
|
752 |
elims = elims', |
42e94b618f34
return stored thms with proper naming in derivation;
wenzelm
parents:
7710
diff
changeset
|
753 |
mk_cases = mk_cases elims', |
10729 | 754 |
raw_induct = rulify raw_induct, |
7798
42e94b618f34
return stored thms with proper naming in derivation;
wenzelm
parents:
7710
diff
changeset
|
755 |
induct = induct'}) |
5094 | 756 |
end; |
757 |
||
6424 | 758 |
|
759 |
||
760 |
(** axiomatic introduction of (co)inductive sets **) |
|
5094 | 761 |
|
762 |
fun add_ind_axm verbose declare_consts alt_name coind no_elim no_ind cs |
|
8401 | 763 |
atts intros monos con_defs thy params paramTs cTs cnames induct_cases = |
5094 | 764 |
let |
9072
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
765 |
val _ = message (coind_prefix coind ^ "inductive set(s) " ^ commas_quote cnames); |
5094 | 766 |
|
6424 | 767 |
val ((intr_names, intr_ts), intr_atts) = apfst split_list (split_list intros); |
9939 | 768 |
val (thy1, _, fp_def, rec_sets_defs, _, _) = |
9072
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
769 |
mk_ind_def declare_consts alt_name coind cs intr_ts monos con_defs thy |
a4896cf23638
Now also proves monotonicity when in quick_and_dirty mode.
berghofe
parents:
8720
diff
changeset
|
770 |
params paramTs cTs cnames; |
8375 | 771 |
val (elim_ts, elim_cases) = Library.split_list (mk_elims cs cTs params intr_ts intr_names); |
5094 | 772 |
val (_, ind_prems, mutual_ind_concl) = mk_indrule cs cTs params intr_ts; |
773 |
val ind_t = Logic.list_implies (ind_prems, mutual_ind_concl); |
|
9598 | 774 |
|
9939 | 775 |
val (thy2, [intrs, raw_elims]) = |
776 |
thy1 |
|
10729 | 777 |
|> PureThy.add_axiomss_i |
778 |
[(("raw_intros", intr_ts), [rulified]), |
|
779 |
(("raw_elims", elim_ts), [rulified])] |
|
9598 | 780 |
|>> (if coind then I else |
8433 | 781 |
#1 o PureThy.add_axioms_i [(("raw_induct", ind_t), [apsnd (standard o split_rule)])]); |
5094 | 782 |
|
9598 | 783 |
val elims = map2 (fn (th, cases) => RuleCases.name cases th) (raw_elims, elim_cases); |
9939 | 784 |
val raw_induct = if coind then Drule.asm_rl else PureThy.get_thm thy2 "raw_induct"; |
5094 | 785 |
val induct = if coind orelse length cs > 1 then raw_induct |
786 |
else standard (raw_induct RSN (2, rev_mp)); |
|
787 |
||
9939 | 788 |
val (thy3, intrs') = |
789 |
thy2 |> PureThy.add_thms ((intr_names ~~ intrs) ~~ intr_atts); |
|
790 |
val (thy4, [intrs'', elims']) = |
|
791 |
thy3 |
|
792 |
|> PureThy.add_thmss [(("intros", intrs'), atts), (("elims", elims), [])] |
|
8433 | 793 |
|>> (if coind then I |
10729 | 794 |
else #1 o PureThy.add_thms [(("induct", rulify induct), |
795 |
[RuleCases.case_names induct_cases])]) |
|
8433 | 796 |
|>> Theory.parent_path; |
9939 | 797 |
val induct' = if coind then raw_induct else PureThy.get_thm thy4 "induct"; |
798 |
in (thy4, |
|
9235 | 799 |
{defs = fp_def :: rec_sets_defs, |
8312
b470bc28b59d
add_cases_induct: accomodate no_elim and no_ind flags;
wenzelm
parents:
8307
diff
changeset
|
800 |
mono = Drule.asm_rl, |
b470bc28b59d
add_cases_induct: accomodate no_elim and no_ind flags;
wenzelm
parents:
8307
diff
changeset
|
801 |
unfold = Drule.asm_rl, |
9939 | 802 |
intrs = intrs'', |
8433 | 803 |
elims = elims', |
804 |
mk_cases = mk_cases elims', |
|
10729 | 805 |
raw_induct = rulify raw_induct, |
7798
42e94b618f34
return stored thms with proper naming in derivation;
wenzelm
parents:
7710
diff
changeset
|
806 |
induct = induct'}) |
5094 | 807 |
end; |
808 |
||
6424 | 809 |
|
810 |
||
811 |
(** introduction of (co)inductive sets **) |
|
5094 | 812 |
|
813 |
fun add_inductive_i verbose declare_consts alt_name coind no_elim no_ind cs |
|
10729 | 814 |
atts pre_intros monos con_defs thy = |
5094 | 815 |
let |
6424 | 816 |
val _ = Theory.requires thy "Inductive" (coind_prefix coind ^ "inductive definitions"); |
6394 | 817 |
val sign = Theory.sign_of thy; |
5094 | 818 |
|
819 |
(*parameters should agree for all mutually recursive components*) |
|
820 |
val (_, params) = strip_comb (hd cs); |
|
821 |
val paramTs = map (try' (snd o dest_Free) "Parameter in recursive\ |
|
822 |
\ component is not a free variable: " sign) params; |
|
823 |
||
824 |
val cTs = map (try' (HOLogic.dest_setT o fastype_of) |
|
825 |
"Recursive component not of type set: " sign) cs; |
|
826 |
||
6437 | 827 |
val full_cnames = map (try' (fst o dest_Const o head_of) |
5094 | 828 |
"Recursive set not previously declared as constant: " sign) cs; |
6437 | 829 |
val cnames = map Sign.base_name full_cnames; |
5094 | 830 |
|
10729 | 831 |
val save_sign = |
832 |
thy |> Theory.copy |> cond_declare_consts declare_consts cs paramTs cnames |> Theory.sign_of; |
|
833 |
val intros = map (check_rule save_sign cs) pre_intros; |
|
8401 | 834 |
val induct_cases = map (#1 o #1) intros; |
6437 | 835 |
|
9405 | 836 |
val (thy1, result as {elims, induct, ...}) = |
10569 | 837 |
(if ! quick_and_dirty andalso not coind (* FIXME *) then add_ind_axm else add_ind_def) |
6521 | 838 |
verbose declare_consts alt_name coind no_elim no_ind cs atts intros monos |
8401 | 839 |
con_defs thy params paramTs cTs cnames induct_cases; |
8307 | 840 |
val thy2 = thy1 |
841 |
|> put_inductives full_cnames ({names = full_cnames, coind = coind}, result) |
|
9405 | 842 |
|> add_cases_induct no_elim (no_ind orelse coind) full_cnames elims induct induct_cases; |
6437 | 843 |
in (thy2, result) end; |
5094 | 844 |
|
6424 | 845 |
|
5094 | 846 |
|
6424 | 847 |
(** external interface **) |
848 |
||
6521 | 849 |
fun add_inductive verbose coind c_strings srcs intro_srcs raw_monos raw_con_defs thy = |
5094 | 850 |
let |
6394 | 851 |
val sign = Theory.sign_of thy; |
8100 | 852 |
val cs = map (term_of o Thm.read_cterm sign o rpair HOLogic.termT) c_strings; |
6424 | 853 |
|
6521 | 854 |
val atts = map (Attrib.global_attribute thy) srcs; |
6424 | 855 |
val intr_names = map (fst o fst) intro_srcs; |
9405 | 856 |
fun read_rule s = Thm.read_cterm sign (s, propT) |
857 |
handle ERROR => error ("The error(s) above occurred for " ^ s); |
|
858 |
val intr_ts = map (Thm.term_of o read_rule o snd o fst) intro_srcs; |
|
6424 | 859 |
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
|
860 |
val (cs', intr_ts') = unify_consts sign cs intr_ts; |
5094 | 861 |
|
6424 | 862 |
val ((thy', con_defs), monos) = thy |
863 |
|> IsarThy.apply_theorems raw_monos |
|
864 |
|> apfst (IsarThy.apply_theorems raw_con_defs); |
|
865 |
in |
|
7020
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
866 |
add_inductive_i verbose false "" coind false false cs' |
75ff179df7b7
Exported function unify_consts (workaround to avoid inconsistently
berghofe
parents:
6851
diff
changeset
|
867 |
atts ((intr_names ~~ intr_ts') ~~ intr_atts) monos con_defs thy' |
5094 | 868 |
end; |
869 |
||
6424 | 870 |
|
871 |
||
6437 | 872 |
(** package setup **) |
873 |
||
874 |
(* setup theory *) |
|
875 |
||
8634 | 876 |
val setup = |
877 |
[InductiveData.init, |
|
9625 | 878 |
Method.add_methods [("ind_cases", mk_cases_meth oo mk_cases_args, |
9598 | 879 |
"dynamic case analysis on sets")], |
9893 | 880 |
Attrib.add_attributes [("mono", mono_attr, "declaration of monotonicity rule")]]; |
6437 | 881 |
|
882 |
||
883 |
(* outer syntax *) |
|
6424 | 884 |
|
6723 | 885 |
local structure P = OuterParse and K = OuterSyntax.Keyword in |
6424 | 886 |
|
6521 | 887 |
fun mk_ind coind (((sets, (atts, intrs)), monos), con_defs) = |
6723 | 888 |
#1 o add_inductive true coind sets atts (map P.triple_swap intrs) monos con_defs; |
6424 | 889 |
|
890 |
fun ind_decl coind = |
|
6729 | 891 |
(Scan.repeat1 P.term --| P.marg_comment) -- |
9598 | 892 |
(P.$$$ "intros" |-- |
7152 | 893 |
P.!!! (P.opt_attribs -- Scan.repeat1 (P.opt_thm_name ":" -- P.prop --| P.marg_comment))) -- |
6729 | 894 |
Scan.optional (P.$$$ "monos" |-- P.!!! P.xthms1 --| P.marg_comment) [] -- |
895 |
Scan.optional (P.$$$ "con_defs" |-- P.!!! P.xthms1 --| P.marg_comment) [] |
|
6424 | 896 |
>> (Toplevel.theory o mk_ind coind); |
897 |
||
6723 | 898 |
val inductiveP = |
899 |
OuterSyntax.command "inductive" "define inductive sets" K.thy_decl (ind_decl false); |
|
900 |
||
901 |
val coinductiveP = |
|
902 |
OuterSyntax.command "coinductive" "define coinductive sets" K.thy_decl (ind_decl true); |
|
6424 | 903 |
|
7107 | 904 |
|
905 |
val ind_cases = |
|
9625 | 906 |
P.opt_thm_name ":" -- Scan.repeat1 P.prop -- P.marg_comment |
7107 | 907 |
>> (Toplevel.theory o inductive_cases); |
908 |
||
909 |
val inductive_casesP = |
|
9804 | 910 |
OuterSyntax.command "inductive_cases" |
9598 | 911 |
"create simplified instances of elimination rules (improper)" K.thy_script ind_cases; |
7107 | 912 |
|
9643 | 913 |
val _ = OuterSyntax.add_keywords ["intros", "monos", "con_defs"]; |
7107 | 914 |
val _ = OuterSyntax.add_parsers [inductiveP, coinductiveP, inductive_casesP]; |
6424 | 915 |
|
5094 | 916 |
end; |
6424 | 917 |
|
918 |
||
919 |
end; |