wenzelm@5363
|
1 |
Isabelle NEWS -- history user-relevant changes
|
wenzelm@5363
|
2 |
==============================================
|
wenzelm@2553
|
3 |
|
wenzelm@45109
|
4 |
New in this Isabelle version
|
wenzelm@45109
|
5 |
----------------------------
|
wenzelm@45109
|
6 |
|
wenzelm@45134
|
7 |
*** Pure ***
|
wenzelm@45134
|
8 |
|
wenzelm@45134
|
9 |
* Obsolete command 'types' has been discontinued. Use 'type_synonym'
|
wenzelm@45134
|
10 |
instead. INCOMPATIBILITY.
|
wenzelm@45134
|
11 |
|
bulwahn@45191
|
12 |
* Ancient code generator for SML and its commands 'code_module',
|
bulwahn@45191
|
13 |
'code_library', 'consts_code', 'types_code' have been discontinued.
|
bulwahn@45191
|
14 |
Use commands of the generic code generator instead. INCOMPATIBILITY.
|
wenzelm@45134
|
15 |
|
bulwahn@45233
|
16 |
* Redundant attribute 'code_inline' has been discontinued. Use 'code_unfold'
|
bulwahn@45233
|
17 |
instead. INCOMPATIBILITY.
|
bulwahn@45233
|
18 |
|
huffman@45122
|
19 |
*** HOL ***
|
huffman@45122
|
20 |
|
haftmann@45143
|
21 |
* 'Transitive_Closure.ntrancl': bounded transitive closure on relations.
|
haftmann@45143
|
22 |
|
haftmann@45210
|
23 |
* 'Set.not_member' now qualifed. INCOMPATIBILITY.
|
haftmann@45210
|
24 |
|
haftmann@45210
|
25 |
* 'sublists' moved to More_List.thy. INCOMPATIBILITY.
|
haftmann@45143
|
26 |
|
huffman@45122
|
27 |
* Theory Int: Discontinued many legacy theorems specific to type int.
|
huffman@45122
|
28 |
INCOMPATIBILITY, use the corresponding generic theorems instead.
|
huffman@45122
|
29 |
|
huffman@45122
|
30 |
zminus_zminus ~> minus_minus
|
huffman@45122
|
31 |
zminus_0 ~> minus_zero
|
huffman@45122
|
32 |
zminus_zadd_distrib ~> minus_add_distrib
|
huffman@45122
|
33 |
zadd_commute ~> add_commute
|
huffman@45122
|
34 |
zadd_assoc ~> add_assoc
|
huffman@45122
|
35 |
zadd_left_commute ~> add_left_commute
|
wenzelm@45196
|
36 |
zadd_ac ~> add_ac
|
huffman@45122
|
37 |
zmult_ac ~> mult_ac
|
huffman@45122
|
38 |
zadd_0 ~> add_0_left
|
huffman@45122
|
39 |
zadd_0_right ~> add_0_right
|
huffman@45122
|
40 |
zadd_zminus_inverse2 ~> left_minus
|
huffman@45122
|
41 |
zmult_zminus ~> mult_minus_left
|
huffman@45122
|
42 |
zmult_commute ~> mult_commute
|
huffman@45122
|
43 |
zmult_assoc ~> mult_assoc
|
huffman@45122
|
44 |
zadd_zmult_distrib ~> left_distrib
|
huffman@45122
|
45 |
zadd_zmult_distrib2 ~> right_distrib
|
huffman@45122
|
46 |
zdiff_zmult_distrib ~> left_diff_distrib
|
huffman@45122
|
47 |
zdiff_zmult_distrib2 ~> right_diff_distrib
|
huffman@45122
|
48 |
zmult_1 ~> mult_1_left
|
huffman@45122
|
49 |
zmult_1_right ~> mult_1_right
|
huffman@45122
|
50 |
zle_refl ~> order_refl
|
huffman@45122
|
51 |
zle_trans ~> order_trans
|
huffman@45122
|
52 |
zle_antisym ~> order_antisym
|
huffman@45122
|
53 |
zle_linear ~> linorder_linear
|
huffman@45122
|
54 |
zless_linear ~> linorder_less_linear
|
huffman@45122
|
55 |
zadd_left_mono ~> add_left_mono
|
huffman@45122
|
56 |
zadd_strict_right_mono ~> add_strict_right_mono
|
huffman@45122
|
57 |
zadd_zless_mono ~> add_less_le_mono
|
huffman@45122
|
58 |
int_0_less_1 ~> zero_less_one
|
huffman@45122
|
59 |
int_0_neq_1 ~> zero_neq_one
|
huffman@45122
|
60 |
zless_le ~> less_le
|
huffman@45122
|
61 |
zpower_zadd_distrib ~> power_add
|
huffman@45122
|
62 |
zero_less_zpower_abs_iff ~> zero_less_power_abs_iff
|
huffman@45122
|
63 |
zero_le_zpower_abs ~> zero_le_power_abs
|
huffman@45122
|
64 |
|
noschinl@45160
|
65 |
* New case_product attribute to generate a case rule doing multiple case
|
noschinl@45160
|
66 |
distinctions at the same time: E.g.
|
noschinl@45160
|
67 |
|
noschinl@45160
|
68 |
list.exhaust[case_product nat.exhaust]
|
noschinl@45160
|
69 |
|
noschinl@45160
|
70 |
produces a rule which can be used to perform case distinction on both
|
noschinl@45160
|
71 |
a list and a nat.
|
noschinl@45160
|
72 |
|
noschinl@45160
|
73 |
*** FOL ***
|
noschinl@45160
|
74 |
|
noschinl@45160
|
75 |
* New case_product attribute (see HOL).
|
noschinl@45160
|
76 |
|
wenzelm@45109
|
77 |
|
wenzelm@45128
|
78 |
*** ML ***
|
wenzelm@45128
|
79 |
|
wenzelm@45128
|
80 |
* Structure Proof_Context follows standard naming scheme. Old
|
wenzelm@45128
|
81 |
ProofContext has been discontinued. INCOMPATIBILITY.
|
wenzelm@45128
|
82 |
|
wenzelm@45128
|
83 |
|
wenzelm@45109
|
84 |
|
wenzelm@44801
|
85 |
New in Isabelle2011-1 (October 2011)
|
wenzelm@44801
|
86 |
------------------------------------
|
wenzelm@41651
|
87 |
|
wenzelm@41703
|
88 |
*** General ***
|
wenzelm@41703
|
89 |
|
wenzelm@44760
|
90 |
* Improved Isabelle/jEdit Prover IDE (PIDE), which can be invoked as
|
wenzelm@44968
|
91 |
"isabelle jedit" or "ISABELLE_HOME/Isabelle" on the command line.
|
wenzelm@44760
|
92 |
|
wenzelm@44777
|
93 |
- Management of multiple theory files directly from the editor
|
wenzelm@44760
|
94 |
buffer store -- bypassing the file-system (no requirement to save
|
wenzelm@44760
|
95 |
files for checking).
|
wenzelm@44760
|
96 |
|
wenzelm@44777
|
97 |
- Markup of formal entities within the text buffer, with semantic
|
wenzelm@44760
|
98 |
highlighting, tooltips and hyperlinks to jump to defining source
|
wenzelm@44760
|
99 |
positions.
|
wenzelm@44760
|
100 |
|
wenzelm@44777
|
101 |
- Improved text rendering, with sub/superscripts in the source
|
wenzelm@44777
|
102 |
buffer (including support for copy/paste wrt. output panel, HTML
|
wenzelm@44777
|
103 |
theory output and other non-Isabelle text boxes).
|
wenzelm@44777
|
104 |
|
wenzelm@44777
|
105 |
- Refined scheduling of proof checking and printing of results,
|
wenzelm@44760
|
106 |
based on interactive editor view. (Note: jEdit folding and
|
wenzelm@44760
|
107 |
narrowing allows to restrict buffer perspectives explicitly.)
|
wenzelm@44760
|
108 |
|
wenzelm@44777
|
109 |
- Reduced CPU performance requirements, usable on machines with few
|
wenzelm@44760
|
110 |
cores.
|
wenzelm@44760
|
111 |
|
wenzelm@44777
|
112 |
- Reduced memory requirements due to pruning of unused document
|
wenzelm@44760
|
113 |
versions (garbage collection).
|
wenzelm@44760
|
114 |
|
wenzelm@44760
|
115 |
See also ~~/src/Tools/jEdit/README.html for further information,
|
wenzelm@44760
|
116 |
including some remaining limitations.
|
wenzelm@44760
|
117 |
|
wenzelm@44800
|
118 |
* Theory loader: source files are exclusively located via the master
|
wenzelm@44800
|
119 |
directory of each theory node (where the .thy file itself resides).
|
wenzelm@44800
|
120 |
The global load path (such as src/HOL/Library) has been discontinued.
|
wenzelm@44800
|
121 |
Note that the path element ~~ may be used to reference theories in the
|
wenzelm@44800
|
122 |
Isabelle home folder -- for instance, "~~/src/HOL/Library/FuncSet".
|
wenzelm@44800
|
123 |
INCOMPATIBILITY.
|
wenzelm@44800
|
124 |
|
wenzelm@41955
|
125 |
* Theory loader: source files are identified by content via SHA1
|
wenzelm@41955
|
126 |
digests. Discontinued former path/modtime identification and optional
|
wenzelm@41955
|
127 |
ISABELLE_FILE_IDENT plugin scripts.
|
wenzelm@41955
|
128 |
|
wenzelm@41703
|
129 |
* Parallelization of nested Isar proofs is subject to
|
wenzelm@41703
|
130 |
Goal.parallel_proofs_threshold (default 100). See also isabelle
|
wenzelm@41703
|
131 |
usedir option -Q.
|
wenzelm@41703
|
132 |
|
wenzelm@42669
|
133 |
* Name space: former unsynchronized references are now proper
|
wenzelm@42669
|
134 |
configuration options, with more conventional names:
|
wenzelm@42669
|
135 |
|
wenzelm@42669
|
136 |
long_names ~> names_long
|
wenzelm@42669
|
137 |
short_names ~> names_short
|
wenzelm@42669
|
138 |
unique_names ~> names_unique
|
wenzelm@42669
|
139 |
|
wenzelm@42669
|
140 |
Minor INCOMPATIBILITY, need to declare options in context like this:
|
wenzelm@42669
|
141 |
|
wenzelm@42669
|
142 |
declare [[names_unique = false]]
|
wenzelm@42358
|
143 |
|
wenzelm@42502
|
144 |
* Literal facts `prop` may contain dummy patterns, e.g. `_ = _`. Note
|
wenzelm@42502
|
145 |
that the result needs to be unique, which means fact specifications
|
wenzelm@42502
|
146 |
may have to be refined after enriching a proof context.
|
wenzelm@42502
|
147 |
|
wenzelm@44800
|
148 |
* Attribute "case_names" has been refined: the assumptions in each case
|
wenzelm@44800
|
149 |
can be named now by following the case name with [name1 name2 ...].
|
wenzelm@44800
|
150 |
|
wenzelm@44968
|
151 |
* Isabelle/Isar reference manual has been updated and extended:
|
wenzelm@44968
|
152 |
- "Synopsis" provides a catalog of main Isar language concepts.
|
wenzelm@44968
|
153 |
- Formal references in syntax diagrams, via @{rail} antiquotation.
|
wenzelm@44968
|
154 |
- Updated material from classic "ref" manual, notably about
|
wenzelm@44968
|
155 |
"Classical Reasoner".
|
wenzelm@42633
|
156 |
|
wenzelm@41703
|
157 |
|
blanchet@41727
|
158 |
*** HOL ***
|
blanchet@41727
|
159 |
|
wenzelm@44968
|
160 |
* Class bot and top require underlying partial order rather than
|
wenzelm@44800
|
161 |
preorder: uniqueness of bot and top is guaranteed. INCOMPATIBILITY.
|
haftmann@43815
|
162 |
|
haftmann@43940
|
163 |
* Class complete_lattice: generalized a couple of lemmas from sets;
|
wenzelm@44800
|
164 |
generalized theorems INF_cong and SUP_cong. New type classes for
|
wenzelm@44800
|
165 |
complete boolean algebras and complete linear orders. Lemmas
|
wenzelm@44800
|
166 |
Inf_less_iff, less_Sup_iff, INF_less_iff, less_SUP_iff now reside in
|
wenzelm@44800
|
167 |
class complete_linorder.
|
wenzelm@44800
|
168 |
|
wenzelm@44800
|
169 |
Changed proposition of lemmas Inf_bool_def, Sup_bool_def, Inf_fun_def,
|
wenzelm@44800
|
170 |
Sup_fun_def, Inf_apply, Sup_apply.
|
wenzelm@44800
|
171 |
|
wenzelm@45088
|
172 |
Removed redundant lemmas (the right hand side gives hints how to
|
wenzelm@45088
|
173 |
replace them for (metis ...), or (simp only: ...) proofs):
|
hoelzl@45041
|
174 |
|
hoelzl@45041
|
175 |
Inf_singleton ~> Inf_insert [where A="{}", unfolded Inf_empty inf_top_right]
|
hoelzl@45041
|
176 |
Sup_singleton ~> Sup_insert [where A="{}", unfolded Sup_empty sup_bot_right]
|
hoelzl@45041
|
177 |
Inf_binary ~> Inf_insert, Inf_empty, and inf_top_right
|
hoelzl@45041
|
178 |
Sup_binary ~> Sup_insert, Sup_empty, and sup_bot_right
|
hoelzl@45041
|
179 |
Int_eq_Inter ~> Inf_insert, Inf_empty, and inf_top_right
|
hoelzl@45041
|
180 |
Un_eq_Union ~> Sup_insert, Sup_empty, and sup_bot_right
|
hoelzl@45041
|
181 |
Inter_def ~> INF_def, image_def
|
hoelzl@45041
|
182 |
Union_def ~> SUP_def, image_def
|
hoelzl@45041
|
183 |
INT_eq ~> INF_def, and image_def
|
hoelzl@45041
|
184 |
UN_eq ~> SUP_def, and image_def
|
hoelzl@45041
|
185 |
INF_subset ~> INF_superset_mono [OF _ order_refl]
|
wenzelm@44800
|
186 |
|
wenzelm@44800
|
187 |
More consistent and comprehensive names:
|
wenzelm@44800
|
188 |
|
hoelzl@45041
|
189 |
INTER_eq_Inter_image ~> INF_def
|
hoelzl@45041
|
190 |
UNION_eq_Union_image ~> SUP_def
|
haftmann@43872
|
191 |
INFI_def ~> INF_def
|
haftmann@43872
|
192 |
SUPR_def ~> SUP_def
|
haftmann@44103
|
193 |
INF_leI ~> INF_lower
|
haftmann@44103
|
194 |
INF_leI2 ~> INF_lower2
|
haftmann@44103
|
195 |
le_INFI ~> INF_greatest
|
haftmann@44103
|
196 |
le_SUPI ~> SUP_upper
|
haftmann@44103
|
197 |
le_SUPI2 ~> SUP_upper2
|
haftmann@44103
|
198 |
SUP_leI ~> SUP_least
|
haftmann@43873
|
199 |
INFI_bool_eq ~> INF_bool_eq
|
haftmann@43873
|
200 |
SUPR_bool_eq ~> SUP_bool_eq
|
haftmann@43873
|
201 |
INFI_apply ~> INF_apply
|
haftmann@43873
|
202 |
SUPR_apply ~> SUP_apply
|
haftmann@44103
|
203 |
INTER_def ~> INTER_eq
|
haftmann@44103
|
204 |
UNION_def ~> UNION_eq
|
haftmann@44103
|
205 |
|
haftmann@43865
|
206 |
INCOMPATIBILITY.
|
haftmann@43865
|
207 |
|
wenzelm@44973
|
208 |
* Renamed theory Complete_Lattice to Complete_Lattices.
|
wenzelm@44973
|
209 |
INCOMPATIBILITY.
|
wenzelm@44973
|
210 |
|
wenzelm@44973
|
211 |
* Theory Complete_Lattices: lemmas Inf_eq_top_iff, INF_eq_top_iff,
|
wenzelm@44973
|
212 |
INF_image, Inf_insert, INF_top, Inf_top_conv, INF_top_conv, SUP_bot,
|
wenzelm@44973
|
213 |
Sup_bot_conv, SUP_bot_conv, Sup_eq_top_iff, SUP_eq_top_iff, SUP_image,
|
wenzelm@44973
|
214 |
Sup_insert are now declared as [simp]. INCOMPATIBILITY.
|
wenzelm@44973
|
215 |
|
wenzelm@44973
|
216 |
* Theory Lattice: lemmas compl_inf_bot, compl_le_comp_iff,
|
wenzelm@44973
|
217 |
compl_sup_top, inf_idem, inf_left_idem, inf_sup_absorb, sup_idem,
|
wenzelm@44973
|
218 |
sup_inf_absob, sup_left_idem are now declared as [simp]. Minor
|
wenzelm@44973
|
219 |
INCOMPATIBILITY.
|
wenzelm@44973
|
220 |
|
krauss@44845
|
221 |
* Added syntactic classes "inf" and "sup" for the respective
|
krauss@44845
|
222 |
constants. INCOMPATIBILITY: Changes in the argument order of the
|
krauss@44845
|
223 |
(mostly internal) locale predicates for some derived classes.
|
krauss@44845
|
224 |
|
wenzelm@44800
|
225 |
* Theorem collections ball_simps and bex_simps do not contain theorems
|
wenzelm@44800
|
226 |
referring to UNION any longer; these have been moved to collection
|
wenzelm@44800
|
227 |
UN_ball_bex_simps. INCOMPATIBILITY.
|
wenzelm@44800
|
228 |
|
wenzelm@44800
|
229 |
* Theory Archimedean_Field: floor now is defined as parameter of a
|
wenzelm@44800
|
230 |
separate type class floor_ceiling.
|
wenzelm@44800
|
231 |
|
wenzelm@44800
|
232 |
* Theory Finite_Set: more coherent development of fold_set locales:
|
haftmann@42874
|
233 |
|
haftmann@42874
|
234 |
locale fun_left_comm ~> locale comp_fun_commute
|
haftmann@42874
|
235 |
locale fun_left_comm_idem ~> locale comp_fun_idem
|
wenzelm@44800
|
236 |
|
wenzelm@44800
|
237 |
Both use point-free characterization; interpretation proofs may need
|
wenzelm@44800
|
238 |
adjustment. INCOMPATIBILITY.
|
haftmann@42874
|
239 |
|
wenzelm@44800
|
240 |
* Theory Limits: Type "'a net" has been renamed to "'a filter", in
|
huffman@44081
|
241 |
accordance with standard mathematical terminology. INCOMPATIBILITY.
|
huffman@44081
|
242 |
|
wenzelm@44800
|
243 |
* Theory Complex_Main: The locale interpretations for the
|
wenzelm@44800
|
244 |
bounded_linear and bounded_bilinear locales have been removed, in
|
wenzelm@44800
|
245 |
order to reduce the number of duplicate lemmas. Users must use the
|
wenzelm@44800
|
246 |
original names for distributivity theorems, potential INCOMPATIBILITY.
|
huffman@44282
|
247 |
|
huffman@44282
|
248 |
divide.add ~> add_divide_distrib
|
huffman@44282
|
249 |
divide.diff ~> diff_divide_distrib
|
huffman@44282
|
250 |
divide.setsum ~> setsum_divide_distrib
|
huffman@44282
|
251 |
mult.add_right ~> right_distrib
|
huffman@44282
|
252 |
mult.diff_right ~> right_diff_distrib
|
huffman@44282
|
253 |
mult_right.setsum ~> setsum_right_distrib
|
huffman@44282
|
254 |
mult_left.diff ~> left_diff_distrib
|
huffman@44282
|
255 |
|
wenzelm@44800
|
256 |
* Theory Complex_Main: Several redundant theorems have been removed or
|
huffman@44568
|
257 |
replaced by more general versions. INCOMPATIBILITY.
|
huffman@44522
|
258 |
|
huffman@45051
|
259 |
real_diff_def ~> minus_real_def
|
huffman@45051
|
260 |
real_divide_def ~> divide_real_def
|
huffman@45051
|
261 |
real_less_def ~> less_le
|
huffman@45051
|
262 |
real_abs_def ~> abs_real_def
|
huffman@45051
|
263 |
real_sgn_def ~> sgn_real_def
|
huffman@45051
|
264 |
real_mult_commute ~> mult_commute
|
huffman@45051
|
265 |
real_mult_assoc ~> mult_assoc
|
huffman@45051
|
266 |
real_mult_1 ~> mult_1_left
|
huffman@45051
|
267 |
real_add_mult_distrib ~> left_distrib
|
huffman@45051
|
268 |
real_zero_not_eq_one ~> zero_neq_one
|
huffman@45051
|
269 |
real_mult_inverse_left ~> left_inverse
|
huffman@45051
|
270 |
INVERSE_ZERO ~> inverse_zero
|
huffman@45051
|
271 |
real_le_refl ~> order_refl
|
huffman@45051
|
272 |
real_le_antisym ~> order_antisym
|
huffman@45051
|
273 |
real_le_trans ~> order_trans
|
huffman@45051
|
274 |
real_le_linear ~> linear
|
huffman@45051
|
275 |
real_le_eq_diff ~> le_iff_diff_le_0
|
huffman@45051
|
276 |
real_add_left_mono ~> add_left_mono
|
huffman@45051
|
277 |
real_mult_order ~> mult_pos_pos
|
huffman@45051
|
278 |
real_mult_less_mono2 ~> mult_strict_left_mono
|
huffman@44822
|
279 |
real_of_int_real_of_nat ~> real_of_int_of_nat_eq
|
huffman@44522
|
280 |
real_0_le_divide_iff ~> zero_le_divide_iff
|
huffman@44522
|
281 |
realpow_two_disj ~> power2_eq_iff
|
huffman@44522
|
282 |
real_squared_diff_one_factored ~> square_diff_one_factored
|
huffman@44522
|
283 |
realpow_two_diff ~> square_diff_square_factored
|
huffman@44669
|
284 |
reals_complete2 ~> complete_real
|
huffman@44749
|
285 |
real_sum_squared_expand ~> power2_sum
|
huffman@44522
|
286 |
exp_ln_eq ~> ln_unique
|
huffman@44711
|
287 |
expi_add ~> exp_add
|
huffman@44711
|
288 |
expi_zero ~> exp_zero
|
huffman@44522
|
289 |
lemma_DERIV_subst ~> DERIV_cong
|
huffman@44568
|
290 |
LIMSEQ_Zfun_iff ~> tendsto_Zfun_iff
|
huffman@44568
|
291 |
LIMSEQ_const ~> tendsto_const
|
huffman@44568
|
292 |
LIMSEQ_norm ~> tendsto_norm
|
huffman@44568
|
293 |
LIMSEQ_add ~> tendsto_add
|
huffman@44568
|
294 |
LIMSEQ_minus ~> tendsto_minus
|
huffman@44568
|
295 |
LIMSEQ_minus_cancel ~> tendsto_minus_cancel
|
huffman@44568
|
296 |
LIMSEQ_diff ~> tendsto_diff
|
huffman@44568
|
297 |
bounded_linear.LIMSEQ ~> bounded_linear.tendsto
|
huffman@44568
|
298 |
bounded_bilinear.LIMSEQ ~> bounded_bilinear.tendsto
|
huffman@44568
|
299 |
LIMSEQ_mult ~> tendsto_mult
|
huffman@44568
|
300 |
LIMSEQ_inverse ~> tendsto_inverse
|
huffman@44568
|
301 |
LIMSEQ_divide ~> tendsto_divide
|
huffman@44568
|
302 |
LIMSEQ_pow ~> tendsto_power
|
huffman@44568
|
303 |
LIMSEQ_setsum ~> tendsto_setsum
|
huffman@44568
|
304 |
LIMSEQ_setprod ~> tendsto_setprod
|
huffman@44568
|
305 |
LIMSEQ_norm_zero ~> tendsto_norm_zero_iff
|
huffman@44568
|
306 |
LIMSEQ_rabs_zero ~> tendsto_rabs_zero_iff
|
huffman@44568
|
307 |
LIMSEQ_imp_rabs ~> tendsto_rabs
|
huffman@44710
|
308 |
LIMSEQ_add_minus ~> tendsto_add [OF _ tendsto_minus]
|
huffman@44710
|
309 |
LIMSEQ_add_const ~> tendsto_add [OF _ tendsto_const]
|
huffman@44710
|
310 |
LIMSEQ_diff_const ~> tendsto_diff [OF _ tendsto_const]
|
huffman@44748
|
311 |
LIMSEQ_Complex ~> tendsto_Complex
|
huffman@44568
|
312 |
LIM_ident ~> tendsto_ident_at
|
huffman@44568
|
313 |
LIM_const ~> tendsto_const
|
huffman@44568
|
314 |
LIM_add ~> tendsto_add
|
huffman@44568
|
315 |
LIM_add_zero ~> tendsto_add_zero
|
huffman@44568
|
316 |
LIM_minus ~> tendsto_minus
|
huffman@44568
|
317 |
LIM_diff ~> tendsto_diff
|
huffman@44568
|
318 |
LIM_norm ~> tendsto_norm
|
huffman@44568
|
319 |
LIM_norm_zero ~> tendsto_norm_zero
|
huffman@44568
|
320 |
LIM_norm_zero_cancel ~> tendsto_norm_zero_cancel
|
huffman@44568
|
321 |
LIM_norm_zero_iff ~> tendsto_norm_zero_iff
|
huffman@44568
|
322 |
LIM_rabs ~> tendsto_rabs
|
huffman@44568
|
323 |
LIM_rabs_zero ~> tendsto_rabs_zero
|
huffman@44568
|
324 |
LIM_rabs_zero_cancel ~> tendsto_rabs_zero_cancel
|
huffman@44568
|
325 |
LIM_rabs_zero_iff ~> tendsto_rabs_zero_iff
|
huffman@44568
|
326 |
LIM_compose ~> tendsto_compose
|
huffman@44568
|
327 |
LIM_mult ~> tendsto_mult
|
huffman@44568
|
328 |
LIM_scaleR ~> tendsto_scaleR
|
huffman@44568
|
329 |
LIM_of_real ~> tendsto_of_real
|
huffman@44568
|
330 |
LIM_power ~> tendsto_power
|
huffman@44568
|
331 |
LIM_inverse ~> tendsto_inverse
|
huffman@44568
|
332 |
LIM_sgn ~> tendsto_sgn
|
huffman@44568
|
333 |
isCont_LIM_compose ~> isCont_tendsto_compose
|
huffman@44568
|
334 |
bounded_linear.LIM ~> bounded_linear.tendsto
|
huffman@44568
|
335 |
bounded_linear.LIM_zero ~> bounded_linear.tendsto_zero
|
huffman@44568
|
336 |
bounded_bilinear.LIM ~> bounded_bilinear.tendsto
|
huffman@44568
|
337 |
bounded_bilinear.LIM_prod_zero ~> bounded_bilinear.tendsto_zero
|
huffman@44568
|
338 |
bounded_bilinear.LIM_left_zero ~> bounded_bilinear.tendsto_left_zero
|
huffman@44568
|
339 |
bounded_bilinear.LIM_right_zero ~> bounded_bilinear.tendsto_right_zero
|
huffman@44568
|
340 |
LIM_inverse_fun ~> tendsto_inverse [OF tendsto_ident_at]
|
huffman@44522
|
341 |
|
wenzelm@44967
|
342 |
* Theory Complex_Main: The definition of infinite series was
|
wenzelm@44967
|
343 |
generalized. Now it is defined on the type class {topological_space,
|
wenzelm@44967
|
344 |
comm_monoid_add}. Hence it is useable also for extended real numbers.
|
wenzelm@42484
|
345 |
|
huffman@44908
|
346 |
* Theory Complex_Main: The complex exponential function "expi" is now
|
huffman@44908
|
347 |
a type-constrained abbreviation for "exp :: complex => complex"; thus
|
huffman@44908
|
348 |
several polymorphic lemmas about "exp" are now applicable to "expi".
|
huffman@44908
|
349 |
|
wenzelm@44968
|
350 |
* Code generation:
|
wenzelm@44968
|
351 |
|
wenzelm@44968
|
352 |
- Theory Library/Code_Char_ord provides native ordering of
|
wenzelm@44968
|
353 |
characters in the target language.
|
wenzelm@44968
|
354 |
|
wenzelm@44968
|
355 |
- Commands code_module and code_library are legacy, use export_code
|
wenzelm@44968
|
356 |
instead.
|
wenzelm@44968
|
357 |
|
wenzelm@44968
|
358 |
- Method "evaluation" is legacy, use method "eval" instead.
|
wenzelm@44968
|
359 |
|
wenzelm@44968
|
360 |
- Legacy evaluator "SML" is deactivated by default. May be
|
wenzelm@44968
|
361 |
reactivated by the following theory command:
|
wenzelm@44968
|
362 |
|
wenzelm@44968
|
363 |
setup {* Value.add_evaluator ("SML", Codegen.eval_term) *}
|
wenzelm@44968
|
364 |
|
wenzelm@44968
|
365 |
* Declare ext [intro] by default. Rare INCOMPATIBILITY.
|
wenzelm@44968
|
366 |
|
wenzelm@45088
|
367 |
* New proof method "induction" that gives induction hypotheses the
|
wenzelm@45088
|
368 |
name "IH", thus distinguishing them from further hypotheses that come
|
wenzelm@45088
|
369 |
from rule induction. The latter are still called "hyps". Method
|
wenzelm@45088
|
370 |
"induction" is a thin wrapper around "induct" and follows the same
|
wenzelm@45088
|
371 |
syntax.
|
wenzelm@45088
|
372 |
|
wenzelm@44968
|
373 |
* Method "fastsimp" has been renamed to "fastforce", but "fastsimp" is
|
wenzelm@44968
|
374 |
still available as a legacy feature for some time.
|
wenzelm@44968
|
375 |
|
wenzelm@44968
|
376 |
* Nitpick:
|
wenzelm@44968
|
377 |
- Added "need" and "total_consts" options.
|
wenzelm@44968
|
378 |
- Reintroduced "show_skolems" option by popular demand.
|
wenzelm@44968
|
379 |
- Renamed attribute: nitpick_def ~> nitpick_unfold.
|
wenzelm@44968
|
380 |
INCOMPATIBILITY.
|
wenzelm@44968
|
381 |
|
wenzelm@44968
|
382 |
* Sledgehammer:
|
wenzelm@44968
|
383 |
- Use quasi-sound (and efficient) translations by default.
|
wenzelm@44968
|
384 |
- Added support for the following provers: E-ToFoF, LEO-II,
|
wenzelm@44968
|
385 |
Satallax, SNARK, Waldmeister, and Z3 with TPTP syntax.
|
wenzelm@44968
|
386 |
- Automatically preplay and minimize proofs before showing them if
|
wenzelm@44968
|
387 |
this can be done within reasonable time.
|
wenzelm@44968
|
388 |
- sledgehammer available_provers ~> sledgehammer supported_provers.
|
wenzelm@44968
|
389 |
INCOMPATIBILITY.
|
wenzelm@44968
|
390 |
- Added "preplay_timeout", "slicing", "type_enc", "sound",
|
wenzelm@44968
|
391 |
"max_mono_iters", and "max_new_mono_instances" options.
|
wenzelm@44968
|
392 |
- Removed "explicit_apply" and "full_types" options as well as "Full
|
wenzelm@44968
|
393 |
Types" Proof General menu item. INCOMPATIBILITY.
|
wenzelm@44968
|
394 |
|
wenzelm@44968
|
395 |
* Metis:
|
wenzelm@44968
|
396 |
- Removed "metisF" -- use "metis" instead. INCOMPATIBILITY.
|
wenzelm@44968
|
397 |
- Obsoleted "metisFT" -- use "metis (full_types)" instead.
|
wenzelm@44968
|
398 |
INCOMPATIBILITY.
|
wenzelm@44968
|
399 |
|
wenzelm@44968
|
400 |
* Command 'try':
|
wenzelm@44968
|
401 |
- Renamed 'try_methods' and added "simp:", "intro:", "dest:", and
|
wenzelm@44968
|
402 |
"elim:" options. INCOMPATIBILITY.
|
wenzelm@44968
|
403 |
- Introduced 'try' that not only runs 'try_methods' but also
|
wenzelm@44968
|
404 |
'solve_direct', 'sledgehammer', 'quickcheck', and 'nitpick'.
|
wenzelm@44968
|
405 |
|
wenzelm@44968
|
406 |
* Quickcheck:
|
wenzelm@44968
|
407 |
- Added "eval" option to evaluate terms for the found counterexample
|
wenzelm@44968
|
408 |
(currently only supported by the default (exhaustive) tester).
|
wenzelm@44968
|
409 |
- Added post-processing of terms to obtain readable counterexamples
|
wenzelm@44968
|
410 |
(currently only supported by the default (exhaustive) tester).
|
wenzelm@44968
|
411 |
- New counterexample generator quickcheck[narrowing] enables
|
wenzelm@44968
|
412 |
narrowing-based testing. Requires the Glasgow Haskell compiler
|
wenzelm@44968
|
413 |
with its installation location defined in the Isabelle settings
|
wenzelm@44968
|
414 |
environment as ISABELLE_GHC.
|
wenzelm@44968
|
415 |
- Removed quickcheck tester "SML" based on the SML code generator
|
wenzelm@44968
|
416 |
(formly in HOL/Library).
|
wenzelm@44968
|
417 |
|
wenzelm@44968
|
418 |
* Function package: discontinued option "tailrec". INCOMPATIBILITY,
|
wenzelm@44968
|
419 |
use 'partial_function' instead.
|
wenzelm@44968
|
420 |
|
wenzelm@44968
|
421 |
* Theory Library/Extended_Reals replaces now the positive extended
|
wenzelm@44968
|
422 |
reals found in probability theory. This file is extended by
|
wenzelm@44968
|
423 |
Multivariate_Analysis/Extended_Real_Limits.
|
wenzelm@44968
|
424 |
|
wenzelm@44974
|
425 |
* Theory Library/Old_Recdef: old 'recdef' package has been moved here,
|
wenzelm@44974
|
426 |
from where it must be imported explicitly if it is really required.
|
wenzelm@44974
|
427 |
INCOMPATIBILITY.
|
wenzelm@44968
|
428 |
|
wenzelm@44968
|
429 |
* Theory Library/Wfrec: well-founded recursion combinator "wfrec" has
|
wenzelm@44968
|
430 |
been moved here. INCOMPATIBILITY.
|
wenzelm@44968
|
431 |
|
wenzelm@44968
|
432 |
* Theory Library/Saturated provides type of numbers with saturated
|
wenzelm@44968
|
433 |
arithmetic.
|
wenzelm@44968
|
434 |
|
wenzelm@44968
|
435 |
* Theory Library/Product_Lattice defines a pointwise ordering for the
|
wenzelm@44968
|
436 |
product type 'a * 'b, and provides instance proofs for various order
|
wenzelm@44968
|
437 |
and lattice type classes.
|
wenzelm@44968
|
438 |
|
wenzelm@44968
|
439 |
* Theory Library/Countable now provides the "countable_datatype" proof
|
wenzelm@44968
|
440 |
method for proving "countable" class instances for datatypes.
|
wenzelm@44968
|
441 |
|
wenzelm@44968
|
442 |
* Theory Library/Cset_Monad allows do notation for computable sets
|
wenzelm@44968
|
443 |
(cset) via the generic monad ad-hoc overloading facility.
|
wenzelm@44968
|
444 |
|
wenzelm@44968
|
445 |
* Library: Theories of common data structures are split into theories
|
wenzelm@44968
|
446 |
for implementation, an invariant-ensuring type, and connection to an
|
wenzelm@44968
|
447 |
abstract type. INCOMPATIBILITY.
|
wenzelm@44968
|
448 |
|
wenzelm@44968
|
449 |
- RBT is split into RBT and RBT_Mapping.
|
wenzelm@44968
|
450 |
- AssocList is split and renamed into AList and AList_Mapping.
|
wenzelm@44968
|
451 |
- DList is split into DList_Impl, DList, and DList_Cset.
|
wenzelm@44968
|
452 |
- Cset is split into Cset and List_Cset.
|
wenzelm@44968
|
453 |
|
wenzelm@44968
|
454 |
* Theory Library/Nat_Infinity has been renamed to
|
wenzelm@44968
|
455 |
Library/Extended_Nat, with name changes of the following types and
|
wenzelm@44968
|
456 |
constants:
|
wenzelm@44968
|
457 |
|
wenzelm@44968
|
458 |
type inat ~> type enat
|
wenzelm@44968
|
459 |
Fin ~> enat
|
wenzelm@44968
|
460 |
Infty ~> infinity (overloaded)
|
wenzelm@44968
|
461 |
iSuc ~> eSuc
|
wenzelm@44968
|
462 |
the_Fin ~> the_enat
|
wenzelm@44968
|
463 |
|
wenzelm@44968
|
464 |
Every theorem name containing "inat", "Fin", "Infty", or "iSuc" has
|
wenzelm@44968
|
465 |
been renamed accordingly. INCOMPATIBILITY.
|
wenzelm@44968
|
466 |
|
wenzelm@44968
|
467 |
* Session Multivariate_Analysis: The euclidean_space type class now
|
wenzelm@44968
|
468 |
fixes a constant "Basis :: 'a set" consisting of the standard
|
wenzelm@44968
|
469 |
orthonormal basis for the type. Users now have the option of
|
wenzelm@44968
|
470 |
quantifying over this set instead of using the "basis" function, e.g.
|
wenzelm@44968
|
471 |
"ALL x:Basis. P x" vs "ALL i<DIM('a). P (basis i)".
|
wenzelm@44968
|
472 |
|
wenzelm@44968
|
473 |
* Session Multivariate_Analysis: Type "('a, 'b) cart" has been renamed
|
wenzelm@44968
|
474 |
to "('a, 'b) vec" (the syntax "'a ^ 'b" remains unaffected). Constants
|
wenzelm@44968
|
475 |
"Cart_nth" and "Cart_lambda" have been respectively renamed to
|
wenzelm@44968
|
476 |
"vec_nth" and "vec_lambda"; theorems mentioning those names have
|
wenzelm@44968
|
477 |
changed to match. Definition theorems for overloaded constants now use
|
wenzelm@44968
|
478 |
the standard "foo_vec_def" naming scheme. A few other theorems have
|
wenzelm@44968
|
479 |
been renamed as follows (INCOMPATIBILITY):
|
wenzelm@44968
|
480 |
|
wenzelm@44968
|
481 |
Cart_eq ~> vec_eq_iff
|
wenzelm@44968
|
482 |
dist_nth_le_cart ~> dist_vec_nth_le
|
wenzelm@44968
|
483 |
tendsto_vector ~> vec_tendstoI
|
wenzelm@44968
|
484 |
Cauchy_vector ~> vec_CauchyI
|
wenzelm@44968
|
485 |
|
wenzelm@44968
|
486 |
* Session Multivariate_Analysis: Several duplicate theorems have been
|
wenzelm@44968
|
487 |
removed, and other theorems have been renamed or replaced with more
|
wenzelm@44968
|
488 |
general versions. INCOMPATIBILITY.
|
wenzelm@44968
|
489 |
|
wenzelm@44968
|
490 |
finite_choice ~> finite_set_choice
|
wenzelm@44968
|
491 |
eventually_conjI ~> eventually_conj
|
wenzelm@44968
|
492 |
eventually_and ~> eventually_conj_iff
|
wenzelm@44968
|
493 |
eventually_false ~> eventually_False
|
wenzelm@44968
|
494 |
setsum_norm ~> norm_setsum
|
wenzelm@44968
|
495 |
Lim_sequentially ~> LIMSEQ_def
|
wenzelm@44968
|
496 |
Lim_ident_at ~> LIM_ident
|
wenzelm@44968
|
497 |
Lim_const ~> tendsto_const
|
wenzelm@44968
|
498 |
Lim_cmul ~> tendsto_scaleR [OF tendsto_const]
|
wenzelm@44968
|
499 |
Lim_neg ~> tendsto_minus
|
wenzelm@44968
|
500 |
Lim_add ~> tendsto_add
|
wenzelm@44968
|
501 |
Lim_sub ~> tendsto_diff
|
wenzelm@44968
|
502 |
Lim_mul ~> tendsto_scaleR
|
wenzelm@44968
|
503 |
Lim_vmul ~> tendsto_scaleR [OF _ tendsto_const]
|
wenzelm@44968
|
504 |
Lim_null_norm ~> tendsto_norm_zero_iff [symmetric]
|
wenzelm@44968
|
505 |
Lim_linear ~> bounded_linear.tendsto
|
wenzelm@44968
|
506 |
Lim_component ~> tendsto_euclidean_component
|
wenzelm@44968
|
507 |
Lim_component_cart ~> tendsto_vec_nth
|
wenzelm@44968
|
508 |
Lim_inner ~> tendsto_inner [OF tendsto_const]
|
wenzelm@44968
|
509 |
dot_lsum ~> inner_setsum_left
|
wenzelm@44968
|
510 |
dot_rsum ~> inner_setsum_right
|
wenzelm@44968
|
511 |
continuous_cmul ~> continuous_scaleR [OF continuous_const]
|
wenzelm@44968
|
512 |
continuous_neg ~> continuous_minus
|
wenzelm@44968
|
513 |
continuous_sub ~> continuous_diff
|
wenzelm@44968
|
514 |
continuous_vmul ~> continuous_scaleR [OF _ continuous_const]
|
wenzelm@44968
|
515 |
continuous_mul ~> continuous_scaleR
|
wenzelm@44968
|
516 |
continuous_inv ~> continuous_inverse
|
wenzelm@44968
|
517 |
continuous_at_within_inv ~> continuous_at_within_inverse
|
wenzelm@44968
|
518 |
continuous_at_inv ~> continuous_at_inverse
|
wenzelm@44968
|
519 |
continuous_at_norm ~> continuous_norm [OF continuous_at_id]
|
wenzelm@44968
|
520 |
continuous_at_infnorm ~> continuous_infnorm [OF continuous_at_id]
|
wenzelm@44968
|
521 |
continuous_at_component ~> continuous_component [OF continuous_at_id]
|
wenzelm@44968
|
522 |
continuous_on_neg ~> continuous_on_minus
|
wenzelm@44968
|
523 |
continuous_on_sub ~> continuous_on_diff
|
wenzelm@44968
|
524 |
continuous_on_cmul ~> continuous_on_scaleR [OF continuous_on_const]
|
wenzelm@44968
|
525 |
continuous_on_vmul ~> continuous_on_scaleR [OF _ continuous_on_const]
|
wenzelm@44968
|
526 |
continuous_on_mul ~> continuous_on_scaleR
|
wenzelm@44968
|
527 |
continuous_on_mul_real ~> continuous_on_mult
|
wenzelm@44968
|
528 |
continuous_on_inner ~> continuous_on_inner [OF continuous_on_const]
|
wenzelm@44968
|
529 |
continuous_on_norm ~> continuous_on_norm [OF continuous_on_id]
|
wenzelm@44968
|
530 |
continuous_on_inverse ~> continuous_on_inv
|
wenzelm@44968
|
531 |
uniformly_continuous_on_neg ~> uniformly_continuous_on_minus
|
wenzelm@44968
|
532 |
uniformly_continuous_on_sub ~> uniformly_continuous_on_diff
|
wenzelm@44968
|
533 |
subset_interior ~> interior_mono
|
wenzelm@44968
|
534 |
subset_closure ~> closure_mono
|
wenzelm@44968
|
535 |
closure_univ ~> closure_UNIV
|
wenzelm@44968
|
536 |
real_arch_lt ~> reals_Archimedean2
|
wenzelm@44968
|
537 |
real_arch ~> reals_Archimedean3
|
wenzelm@44968
|
538 |
real_abs_norm ~> abs_norm_cancel
|
wenzelm@44968
|
539 |
real_abs_sub_norm ~> norm_triangle_ineq3
|
wenzelm@44968
|
540 |
norm_cauchy_schwarz_abs ~> Cauchy_Schwarz_ineq2
|
wenzelm@44968
|
541 |
|
wenzelm@44968
|
542 |
* Session HOL-Probability:
|
wenzelm@44968
|
543 |
- Caratheodory's extension lemma is now proved for ring_of_sets.
|
wenzelm@44968
|
544 |
- Infinite products of probability measures are now available.
|
wenzelm@44968
|
545 |
- Sigma closure is independent, if the generator is independent
|
wenzelm@44968
|
546 |
- Use extended reals instead of positive extended
|
wenzelm@44968
|
547 |
reals. INCOMPATIBILITY.
|
wenzelm@44968
|
548 |
|
huffman@45049
|
549 |
* Session HOLCF: Discontinued legacy theorem names, INCOMPATIBILITY.
|
huffman@45049
|
550 |
|
huffman@45049
|
551 |
expand_fun_below ~> fun_below_iff
|
huffman@45049
|
552 |
below_fun_ext ~> fun_belowI
|
huffman@45049
|
553 |
expand_cfun_eq ~> cfun_eq_iff
|
huffman@45049
|
554 |
ext_cfun ~> cfun_eqI
|
huffman@45049
|
555 |
expand_cfun_below ~> cfun_below_iff
|
huffman@45049
|
556 |
below_cfun_ext ~> cfun_belowI
|
huffman@45049
|
557 |
monofun_fun_fun ~> fun_belowD
|
huffman@45049
|
558 |
monofun_fun_arg ~> monofunE
|
huffman@45049
|
559 |
monofun_lub_fun ~> adm_monofun [THEN admD]
|
huffman@45049
|
560 |
cont_lub_fun ~> adm_cont [THEN admD]
|
huffman@45049
|
561 |
cont2cont_Rep_CFun ~> cont2cont_APP
|
huffman@45049
|
562 |
cont_Rep_CFun_app ~> cont_APP_app
|
huffman@45049
|
563 |
cont_Rep_CFun_app_app ~> cont_APP_app_app
|
huffman@45049
|
564 |
cont_cfun_fun ~> cont_Rep_cfun1 [THEN contE]
|
huffman@45049
|
565 |
cont_cfun_arg ~> cont_Rep_cfun2 [THEN contE]
|
huffman@45049
|
566 |
contlub_cfun ~> lub_APP [symmetric]
|
huffman@45049
|
567 |
contlub_LAM ~> lub_LAM [symmetric]
|
huffman@45049
|
568 |
thelubI ~> lub_eqI
|
huffman@45049
|
569 |
UU_I ~> bottomI
|
huffman@45049
|
570 |
lift_distinct1 ~> lift.distinct(1)
|
huffman@45049
|
571 |
lift_distinct2 ~> lift.distinct(2)
|
huffman@45049
|
572 |
Def_not_UU ~> lift.distinct(2)
|
huffman@45049
|
573 |
Def_inject ~> lift.inject
|
huffman@45049
|
574 |
below_UU_iff ~> below_bottom_iff
|
huffman@45049
|
575 |
eq_UU_iff ~> eq_bottom_iff
|
huffman@45049
|
576 |
|
huffman@44903
|
577 |
|
krauss@41685
|
578 |
*** Document preparation ***
|
krauss@41685
|
579 |
|
wenzelm@44800
|
580 |
* Antiquotation @{rail} layouts railroad syntax diagrams, see also
|
wenzelm@44800
|
581 |
isar-ref manual, both for description and actual application of the
|
wenzelm@44800
|
582 |
same.
|
wenzelm@44800
|
583 |
|
wenzelm@44800
|
584 |
* Antiquotation @{value} evaluates the given term and presents its
|
wenzelm@44800
|
585 |
result.
|
wenzelm@44800
|
586 |
|
wenzelm@44800
|
587 |
* Antiquotations: term style "isub" provides ad-hoc conversion of
|
wenzelm@44800
|
588 |
variables x1, y23 into subscripted form x\<^isub>1,
|
wenzelm@44800
|
589 |
y\<^isub>2\<^isub>3.
|
wenzelm@41651
|
590 |
|
wenzelm@42484
|
591 |
* Predefined LaTeX macros for Isabelle symbols \<bind> and \<then>
|
wenzelm@42484
|
592 |
(e.g. see ~~/src/HOL/Library/Monad_Syntax.thy).
|
wenzelm@42484
|
593 |
|
wenzelm@44967
|
594 |
* Localized \isabellestyle switch can be used within blocks or groups
|
wenzelm@44967
|
595 |
like this:
|
wenzelm@44967
|
596 |
|
wenzelm@44967
|
597 |
\isabellestyle{it} %preferred default
|
wenzelm@44967
|
598 |
{\isabellestylett @{text "typewriter stuff"}}
|
wenzelm@44967
|
599 |
|
wenzelm@44967
|
600 |
* Discontinued special treatment of hard tabulators. Implicit
|
wenzelm@44967
|
601 |
tab-width is now defined as 1. Potential INCOMPATIBILITY for visual
|
wenzelm@44967
|
602 |
layouts.
|
wenzelm@44800
|
603 |
|
wenzelm@41651
|
604 |
|
wenzelm@41944
|
605 |
*** ML ***
|
wenzelm@41944
|
606 |
|
wenzelm@43731
|
607 |
* The inner syntax of sort/type/term/prop supports inlined YXML
|
wenzelm@43731
|
608 |
representations within quoted string tokens. By encoding logical
|
wenzelm@43731
|
609 |
entities via Term_XML (in ML or Scala) concrete syntax can be
|
wenzelm@43731
|
610 |
bypassed, which is particularly useful for producing bits of text
|
wenzelm@43731
|
611 |
under external program control.
|
wenzelm@43731
|
612 |
|
wenzelm@43565
|
613 |
* Antiquotations for ML and document preparation are managed as theory
|
wenzelm@43565
|
614 |
data, which requires explicit setup.
|
wenzelm@43565
|
615 |
|
wenzelm@42897
|
616 |
* Isabelle_Process.is_active allows tools to check if the official
|
wenzelm@42897
|
617 |
process wrapper is running (Isabelle/Scala/jEdit) or the old TTY loop
|
wenzelm@42897
|
618 |
(better known as Proof General).
|
wenzelm@42897
|
619 |
|
wenzelm@42360
|
620 |
* Structure Proof_Context follows standard naming scheme. Old
|
wenzelm@42360
|
621 |
ProofContext is still available for some time as legacy alias.
|
wenzelm@42360
|
622 |
|
wenzelm@42015
|
623 |
* Structure Timing provides various operations for timing; supersedes
|
wenzelm@42015
|
624 |
former start_timing/end_timing etc.
|
wenzelm@42015
|
625 |
|
wenzelm@41944
|
626 |
* Path.print is the official way to show file-system paths to users
|
wenzelm@41944
|
627 |
(including quotes etc.).
|
wenzelm@41944
|
628 |
|
wenzelm@42056
|
629 |
* Inner syntax: identifiers in parse trees of generic categories
|
wenzelm@42056
|
630 |
"logic", "aprop", "idt" etc. carry position information (disguised as
|
wenzelm@42056
|
631 |
type constraints). Occasional INCOMPATIBILITY with non-compliant
|
wenzelm@42057
|
632 |
translations that choke on unexpected type constraints. Positions can
|
wenzelm@42057
|
633 |
be stripped in ML translations via Syntax.strip_positions /
|
wenzelm@42057
|
634 |
Syntax.strip_positions_ast, or via the syntax constant
|
wenzelm@42057
|
635 |
"_strip_positions" within parse trees. As last resort, positions can
|
wenzelm@42057
|
636 |
be disabled via the configuration option Syntax.positions, which is
|
wenzelm@42057
|
637 |
called "syntax_positions" in Isar attribute syntax.
|
wenzelm@42056
|
638 |
|
wenzelm@42290
|
639 |
* Discontinued special status of various ML structures that contribute
|
wenzelm@42290
|
640 |
to structure Syntax (Ast, Lexicon, Mixfix, Parser, Printer etc.): less
|
wenzelm@42290
|
641 |
pervasive content, no inclusion in structure Syntax. INCOMPATIBILITY,
|
wenzelm@42290
|
642 |
refer directly to Ast.Constant, Lexicon.is_identifier,
|
wenzelm@42290
|
643 |
Syntax_Trans.mk_binder_tr etc.
|
wenzelm@42224
|
644 |
|
wenzelm@42247
|
645 |
* Typed print translation: discontinued show_sorts argument, which is
|
wenzelm@42247
|
646 |
already available via context of "advanced" translation.
|
wenzelm@42247
|
647 |
|
wenzelm@42370
|
648 |
* Refined PARALLEL_GOALS tactical: degrades gracefully for schematic
|
wenzelm@42370
|
649 |
goal states; body tactic needs to address all subgoals uniformly.
|
wenzelm@42370
|
650 |
|
wenzelm@42403
|
651 |
* Slightly more special eq_list/eq_set, with shortcut involving
|
wenzelm@42403
|
652 |
pointer equality (assumes that eq relation is reflexive).
|
wenzelm@42403
|
653 |
|
wenzelm@42793
|
654 |
* Classical tactics use proper Proof.context instead of historic types
|
wenzelm@42793
|
655 |
claset/clasimpset. Old-style declarations like addIs, addEs, addDs
|
wenzelm@42793
|
656 |
operate directly on Proof.context. Raw type claset retains its use as
|
wenzelm@42793
|
657 |
snapshot of the classical context, which can be recovered via
|
wenzelm@42793
|
658 |
(put_claset HOL_cs) etc. Type clasimpset has been discontinued.
|
wenzelm@42793
|
659 |
INCOMPATIBILITY, classical tactics and derived proof methods require
|
wenzelm@42793
|
660 |
proper Proof.context.
|
wenzelm@42793
|
661 |
|
wenzelm@44803
|
662 |
|
wenzelm@44803
|
663 |
*** System ***
|
wenzelm@44803
|
664 |
|
wenzelm@44968
|
665 |
* Discontinued support for Poly/ML 5.2, which was the last version
|
wenzelm@44968
|
666 |
without proper multithreading and TimeLimit implementation.
|
wenzelm@44968
|
667 |
|
wenzelm@44968
|
668 |
* Discontinued old lib/scripts/polyml-platform, which has been
|
wenzelm@44968
|
669 |
obsolete since Isabelle2009-2.
|
wenzelm@44968
|
670 |
|
wenzelm@44967
|
671 |
* Various optional external tools are referenced more robustly and
|
wenzelm@44967
|
672 |
uniformly by explicit Isabelle settings as follows:
|
wenzelm@44967
|
673 |
|
wenzelm@44967
|
674 |
ISABELLE_CSDP (formerly CSDP_EXE)
|
wenzelm@44967
|
675 |
ISABELLE_GHC (formerly EXEC_GHC or GHC_PATH)
|
wenzelm@44967
|
676 |
ISABELLE_OCAML (formerly EXEC_OCAML)
|
wenzelm@44967
|
677 |
ISABELLE_SWIPL (formerly EXEC_SWIPL)
|
wenzelm@44967
|
678 |
ISABELLE_YAP (formerly EXEC_YAP)
|
wenzelm@44967
|
679 |
|
wenzelm@44967
|
680 |
Note that automated detection from the file-system or search path has
|
wenzelm@44967
|
681 |
been discontinued. INCOMPATIBILITY.
|
wenzelm@44967
|
682 |
|
wenzelm@43752
|
683 |
* Scala layer provides JVM method invocation service for static
|
wenzelm@44800
|
684 |
methods of type (String)String, see Invoke_Scala.method in ML. For
|
wenzelm@44800
|
685 |
example:
|
wenzelm@43752
|
686 |
|
wenzelm@43752
|
687 |
Invoke_Scala.method "java.lang.System.getProperty" "java.home"
|
wenzelm@43752
|
688 |
|
wenzelm@44967
|
689 |
Together with YXML.string_of_body/parse_body and XML.Encode/Decode
|
wenzelm@44967
|
690 |
this allows to pass structured values between ML and Scala.
|
wenzelm@44800
|
691 |
|
wenzelm@44803
|
692 |
* The IsabelleText fonts includes some further glyphs to support the
|
wenzelm@44803
|
693 |
Prover IDE. Potential INCOMPATIBILITY: users who happen to have
|
wenzelm@44803
|
694 |
installed a local copy (which is normally *not* required) need to
|
wenzelm@44803
|
695 |
delete or update it from ~~/lib/fonts/.
|
wenzelm@41944
|
696 |
|
wenzelm@41703
|
697 |
|
wenzelm@45089
|
698 |
|
wenzelm@41512
|
699 |
New in Isabelle2011 (January 2011)
|
wenzelm@41512
|
700 |
----------------------------------
|
wenzelm@37383
|
701 |
|
wenzelm@37536
|
702 |
*** General ***
|
wenzelm@37536
|
703 |
|
wenzelm@41573
|
704 |
* Experimental Prover IDE based on Isabelle/Scala and jEdit (see
|
wenzelm@41612
|
705 |
src/Tools/jEdit). This also serves as IDE for Isabelle/ML, with
|
wenzelm@41612
|
706 |
useful tooltips and hyperlinks produced from its static analysis. The
|
wenzelm@41612
|
707 |
bundled component provides an executable Isabelle tool that can be run
|
wenzelm@41612
|
708 |
like this:
|
wenzelm@41612
|
709 |
|
wenzelm@41612
|
710 |
Isabelle2011/bin/isabelle jedit
|
wenzelm@41573
|
711 |
|
wenzelm@40948
|
712 |
* Significantly improved Isabelle/Isar implementation manual.
|
wenzelm@40948
|
713 |
|
wenzelm@41594
|
714 |
* System settings: ISABELLE_HOME_USER now includes ISABELLE_IDENTIFIER
|
wenzelm@41595
|
715 |
(and thus refers to something like $HOME/.isabelle/Isabelle2011),
|
wenzelm@41594
|
716 |
while the default heap location within that directory lacks that extra
|
wenzelm@41594
|
717 |
suffix. This isolates multiple Isabelle installations from each
|
wenzelm@41594
|
718 |
other, avoiding problems with old settings in new versions.
|
wenzelm@41594
|
719 |
INCOMPATIBILITY, need to copy/upgrade old user settings manually.
|
wenzelm@41594
|
720 |
|
wenzelm@40947
|
721 |
* Source files are always encoded as UTF-8, instead of old-fashioned
|
wenzelm@40947
|
722 |
ISO-Latin-1. INCOMPATIBILITY. Isabelle LaTeX documents might require
|
wenzelm@40948
|
723 |
the following package declarations:
|
wenzelm@40947
|
724 |
|
wenzelm@40947
|
725 |
\usepackage[utf8]{inputenc}
|
wenzelm@40947
|
726 |
\usepackage{textcomp}
|
wenzelm@40947
|
727 |
|
krauss@41440
|
728 |
* Explicit treatment of UTF-8 sequences as Isabelle symbols, such that
|
wenzelm@37536
|
729 |
a Unicode character is treated as a single symbol, not a sequence of
|
wenzelm@37536
|
730 |
non-ASCII bytes as before. Since Isabelle/ML string literals may
|
wenzelm@37536
|
731 |
contain symbols without further backslash escapes, Unicode can now be
|
wenzelm@37536
|
732 |
used here as well. Recall that Symbol.explode in ML provides a
|
wenzelm@37536
|
733 |
consistent view on symbols, while raw explode (or String.explode)
|
wenzelm@37536
|
734 |
merely give a byte-oriented representation.
|
wenzelm@37536
|
735 |
|
wenzelm@41594
|
736 |
* Theory loader: source files are primarily located via the master
|
wenzelm@41594
|
737 |
directory of each theory node (where the .thy file itself resides).
|
wenzelm@41594
|
738 |
The global load path is still partially available as legacy feature.
|
wenzelm@41594
|
739 |
Minor INCOMPATIBILITY due to subtle change in file lookup: use
|
wenzelm@41594
|
740 |
explicit paths, relatively to the theory.
|
wenzelm@38135
|
741 |
|
wenzelm@37939
|
742 |
* Special treatment of ML file names has been discontinued.
|
wenzelm@37939
|
743 |
Historically, optional extensions .ML or .sml were added on demand --
|
wenzelm@37939
|
744 |
at the cost of clarity of file dependencies. Recall that Isabelle/ML
|
wenzelm@37939
|
745 |
files exclusively use the .ML extension. Minor INCOMPATIBILTY.
|
wenzelm@37939
|
746 |
|
wenzelm@38980
|
747 |
* Various options that affect pretty printing etc. are now properly
|
wenzelm@38767
|
748 |
handled within the context via configuration options, instead of
|
wenzelm@40879
|
749 |
unsynchronized references or print modes. There are both ML Config.T
|
wenzelm@40879
|
750 |
entities and Isar declaration attributes to access these.
|
wenzelm@38767
|
751 |
|
wenzelm@39125
|
752 |
ML (Config.T) Isar (attribute)
|
wenzelm@39125
|
753 |
|
wenzelm@39128
|
754 |
eta_contract eta_contract
|
wenzelm@39137
|
755 |
show_brackets show_brackets
|
wenzelm@39134
|
756 |
show_sorts show_sorts
|
wenzelm@39134
|
757 |
show_types show_types
|
wenzelm@39126
|
758 |
show_question_marks show_question_marks
|
wenzelm@39126
|
759 |
show_consts show_consts
|
wenzelm@40879
|
760 |
show_abbrevs show_abbrevs
|
wenzelm@39126
|
761 |
|
wenzelm@41379
|
762 |
Syntax.ast_trace syntax_ast_trace
|
wenzelm@41379
|
763 |
Syntax.ast_stat syntax_ast_stat
|
wenzelm@39126
|
764 |
Syntax.ambiguity_level syntax_ambiguity_level
|
wenzelm@39126
|
765 |
|
wenzelm@39126
|
766 |
Goal_Display.goals_limit goals_limit
|
wenzelm@39126
|
767 |
Goal_Display.show_main_goal show_main_goal
|
wenzelm@39126
|
768 |
|
wenzelm@41379
|
769 |
Method.rule_trace rule_trace
|
wenzelm@41379
|
770 |
|
wenzelm@39125
|
771 |
Thy_Output.display thy_output_display
|
wenzelm@39125
|
772 |
Thy_Output.quotes thy_output_quotes
|
wenzelm@39125
|
773 |
Thy_Output.indent thy_output_indent
|
wenzelm@39125
|
774 |
Thy_Output.source thy_output_source
|
wenzelm@39125
|
775 |
Thy_Output.break thy_output_break
|
wenzelm@39125
|
776 |
|
krauss@41440
|
777 |
Note that corresponding "..._default" references in ML may only be
|
wenzelm@38767
|
778 |
changed globally at the ROOT session setup, but *not* within a theory.
|
wenzelm@40879
|
779 |
The option "show_abbrevs" supersedes the former print mode
|
wenzelm@40879
|
780 |
"no_abbrevs" with inverted meaning.
|
wenzelm@38767
|
781 |
|
wenzelm@40878
|
782 |
* More systematic naming of some configuration options.
|
huffman@41294
|
783 |
INCOMPATIBILITY.
|
wenzelm@40878
|
784 |
|
wenzelm@40878
|
785 |
trace_simp ~> simp_trace
|
wenzelm@40878
|
786 |
debug_simp ~> simp_debug
|
wenzelm@40878
|
787 |
|
wenzelm@40291
|
788 |
* Support for real valued configuration options, using simplistic
|
wenzelm@40291
|
789 |
floating-point notation that coincides with the inner syntax for
|
wenzelm@40291
|
790 |
float_token.
|
wenzelm@40291
|
791 |
|
wenzelm@41594
|
792 |
* Support for real valued preferences (with approximative PGIP type):
|
wenzelm@41594
|
793 |
front-ends need to accept "pgint" values in float notation.
|
wenzelm@41594
|
794 |
INCOMPATIBILITY.
|
wenzelm@41573
|
795 |
|
wenzelm@41573
|
796 |
* The IsabelleText font now includes Cyrillic, Hebrew, Arabic from
|
wenzelm@41573
|
797 |
DejaVu Sans.
|
wenzelm@41573
|
798 |
|
wenzelm@41594
|
799 |
* Discontinued support for Poly/ML 5.0 and 5.1 versions.
|
wenzelm@41594
|
800 |
|
wenzelm@40948
|
801 |
|
wenzelm@40948
|
802 |
*** Pure ***
|
wenzelm@40948
|
803 |
|
wenzelm@41249
|
804 |
* Command 'type_synonym' (with single argument) replaces somewhat
|
wenzelm@41249
|
805 |
outdated 'types', which is still available as legacy feature for some
|
wenzelm@41249
|
806 |
time.
|
wenzelm@41249
|
807 |
|
wenzelm@41249
|
808 |
* Command 'nonterminal' (with 'and' separated list of arguments)
|
wenzelm@41249
|
809 |
replaces somewhat outdated 'nonterminals'. INCOMPATIBILITY.
|
wenzelm@41229
|
810 |
|
wenzelm@40965
|
811 |
* Command 'notepad' replaces former 'example_proof' for
|
wenzelm@41020
|
812 |
experimentation in Isar without any result. INCOMPATIBILITY.
|
wenzelm@40965
|
813 |
|
ballarin@41435
|
814 |
* Locale interpretation commands 'interpret' and 'sublocale' accept
|
ballarin@41435
|
815 |
lists of equations to map definitions in a locale to appropriate
|
ballarin@41435
|
816 |
entities in the context of the interpretation. The 'interpretation'
|
ballarin@41435
|
817 |
command already provided this functionality.
|
ballarin@41435
|
818 |
|
wenzelm@41594
|
819 |
* Diagnostic command 'print_dependencies' prints the locale instances
|
wenzelm@41594
|
820 |
that would be activated if the specified expression was interpreted in
|
wenzelm@41594
|
821 |
the current context. Variant "print_dependencies!" assumes a context
|
wenzelm@41594
|
822 |
without interpretations.
|
ballarin@38110
|
823 |
|
ballarin@38110
|
824 |
* Diagnostic command 'print_interps' prints interpretations in proofs
|
ballarin@38110
|
825 |
in addition to interpretations in theories.
|
ballarin@38110
|
826 |
|
wenzelm@38708
|
827 |
* Discontinued obsolete 'global' and 'local' commands to manipulate
|
wenzelm@38708
|
828 |
the theory name space. Rare INCOMPATIBILITY. The ML functions
|
wenzelm@38708
|
829 |
Sign.root_path and Sign.local_path may be applied directly where this
|
wenzelm@38708
|
830 |
feature is still required for historical reasons.
|
wenzelm@38708
|
831 |
|
wenzelm@40948
|
832 |
* Discontinued obsolete 'constdefs' command. INCOMPATIBILITY, use
|
haftmann@39215
|
833 |
'definition' instead.
|
haftmann@39215
|
834 |
|
wenzelm@41574
|
835 |
* The "prems" fact, which refers to the accidental collection of
|
wenzelm@41574
|
836 |
foundational premises in the context, is now explicitly marked as
|
wenzelm@41594
|
837 |
legacy feature and will be discontinued soon. Consider using "assms"
|
wenzelm@41594
|
838 |
of the head statement or reference facts by explicit names.
|
wenzelm@41574
|
839 |
|
wenzelm@40801
|
840 |
* Document antiquotations @{class} and @{type} print classes and type
|
wenzelm@40801
|
841 |
constructors.
|
wenzelm@40801
|
842 |
|
wenzelm@40801
|
843 |
* Document antiquotation @{file} checks file/directory entries within
|
wenzelm@40801
|
844 |
the local file system.
|
haftmann@39305
|
845 |
|
ballarin@38110
|
846 |
|
haftmann@37387
|
847 |
*** HOL ***
|
haftmann@37387
|
848 |
|
wenzelm@41594
|
849 |
* Coercive subtyping: functions can be declared as coercions and type
|
wenzelm@41594
|
850 |
inference will add them as necessary upon input of a term. Theory
|
wenzelm@41594
|
851 |
Complex_Main declares real :: nat => real and real :: int => real as
|
wenzelm@41594
|
852 |
coercions. A coercion function f is declared like this:
|
wenzelm@40939
|
853 |
|
wenzelm@40939
|
854 |
declare [[coercion f]]
|
nipkow@40866
|
855 |
|
wenzelm@41571
|
856 |
To lift coercions through type constructors (e.g. from nat => real to
|
nipkow@40866
|
857 |
nat list => real list), map functions can be declared, e.g.
|
nipkow@40866
|
858 |
|
wenzelm@40939
|
859 |
declare [[coercion_map map]]
|
wenzelm@40939
|
860 |
|
wenzelm@40939
|
861 |
Currently coercion inference is activated only in theories including
|
wenzelm@40939
|
862 |
real numbers, i.e. descendants of Complex_Main. This is controlled by
|
wenzelm@41020
|
863 |
the configuration option "coercion_enabled", e.g. it can be enabled in
|
wenzelm@40939
|
864 |
other theories like this:
|
wenzelm@40939
|
865 |
|
wenzelm@40939
|
866 |
declare [[coercion_enabled]]
|
nipkow@40866
|
867 |
|
wenzelm@41571
|
868 |
* Command 'partial_function' provides basic support for recursive
|
wenzelm@41571
|
869 |
function definitions over complete partial orders. Concrete instances
|
krauss@40183
|
870 |
are provided for i) the option type, ii) tail recursion on arbitrary
|
wenzelm@41571
|
871 |
types, and iii) the heap monad of Imperative_HOL. See
|
wenzelm@41571
|
872 |
src/HOL/ex/Fundefs.thy and src/HOL/Imperative_HOL/ex/Linked_Lists.thy
|
wenzelm@41571
|
873 |
for examples.
|
krauss@40183
|
874 |
|
wenzelm@41571
|
875 |
* Function package: f.psimps rules are no longer implicitly declared
|
wenzelm@41571
|
876 |
as [simp]. INCOMPATIBILITY.
|
haftmann@41398
|
877 |
|
haftmann@41398
|
878 |
* Datatype package: theorems generated for executable equality (class
|
wenzelm@41571
|
879 |
"eq") carry proper names and are treated as default code equations.
|
wenzelm@41571
|
880 |
|
wenzelm@41594
|
881 |
* Inductive package: now offers command 'inductive_simps' to
|
wenzelm@41594
|
882 |
automatically derive instantiated and simplified equations for
|
wenzelm@41594
|
883 |
inductive predicates, similar to 'inductive_cases'.
|
wenzelm@41594
|
884 |
|
wenzelm@41571
|
885 |
* Command 'enriched_type' allows to register properties of the
|
wenzelm@41571
|
886 |
functorial structure of types.
|
haftmann@39771
|
887 |
|
haftmann@39644
|
888 |
* Improved infrastructure for term evaluation using code generator
|
haftmann@39644
|
889 |
techniques, in particular static evaluation conversions.
|
haftmann@39644
|
890 |
|
wenzelm@41594
|
891 |
* Code generator: Scala (2.8 or higher) has been added to the target
|
wenzelm@41594
|
892 |
languages.
|
wenzelm@41594
|
893 |
|
haftmann@41398
|
894 |
* Code generator: globbing constant expressions "*" and "Theory.*"
|
haftmann@41398
|
895 |
have been replaced by the more idiomatic "_" and "Theory._".
|
haftmann@41398
|
896 |
INCOMPATIBILITY.
|
haftmann@41398
|
897 |
|
haftmann@41398
|
898 |
* Code generator: export_code without explicit file declaration prints
|
haftmann@41398
|
899 |
to standard output. INCOMPATIBILITY.
|
haftmann@41398
|
900 |
|
haftmann@41398
|
901 |
* Code generator: do not print function definitions for case
|
haftmann@41398
|
902 |
combinators any longer.
|
haftmann@41398
|
903 |
|
wenzelm@41594
|
904 |
* Code generator: simplification with rules determined with
|
wenzelm@41571
|
905 |
src/Tools/Code/code_simp.ML and method "code_simp".
|
wenzelm@41571
|
906 |
|
wenzelm@41594
|
907 |
* Code generator for records: more idiomatic representation of record
|
wenzelm@40948
|
908 |
types. Warning: records are not covered by ancient SML code
|
wenzelm@40948
|
909 |
generation any longer. INCOMPATIBILITY. In cases of need, a suitable
|
wenzelm@40948
|
910 |
rep_datatype declaration helps to succeed then:
|
haftmann@38537
|
911 |
|
haftmann@38537
|
912 |
record 'a foo = ...
|
haftmann@38537
|
913 |
...
|
haftmann@38537
|
914 |
rep_datatype foo_ext ...
|
haftmann@38535
|
915 |
|
wenzelm@41594
|
916 |
* Records: logical foundation type for records does not carry a
|
wenzelm@41594
|
917 |
'_type' suffix any longer (obsolete due to authentic syntax).
|
wenzelm@41594
|
918 |
INCOMPATIBILITY.
|
wenzelm@41594
|
919 |
|
haftmann@41398
|
920 |
* Quickcheck now by default uses exhaustive testing instead of random
|
wenzelm@41571
|
921 |
testing. Random testing can be invoked by "quickcheck [random]",
|
wenzelm@41571
|
922 |
exhaustive testing by "quickcheck [exhaustive]".
|
haftmann@41398
|
923 |
|
haftmann@41398
|
924 |
* Quickcheck instantiates polymorphic types with small finite
|
haftmann@41398
|
925 |
datatypes by default. This enables a simple execution mechanism to
|
haftmann@41398
|
926 |
handle quantifiers and function equality over the finite datatypes.
|
haftmann@41398
|
927 |
|
wenzelm@41571
|
928 |
* Quickcheck random generator has been renamed from "code" to
|
wenzelm@41571
|
929 |
"random". INCOMPATIBILITY.
|
haftmann@41398
|
930 |
|
haftmann@41398
|
931 |
* Quickcheck now has a configurable time limit which is set to 30
|
haftmann@41398
|
932 |
seconds by default. This can be changed by adding [timeout = n] to the
|
haftmann@41398
|
933 |
quickcheck command. The time limit for Auto Quickcheck is still set
|
haftmann@41398
|
934 |
independently.
|
haftmann@38461
|
935 |
|
haftmann@38461
|
936 |
* Quickcheck in locales considers interpretations of that locale for
|
haftmann@38461
|
937 |
counter example search.
|
haftmann@38461
|
938 |
|
blanchet@40059
|
939 |
* Sledgehammer:
|
wenzelm@41571
|
940 |
- Added "smt" and "remote_smt" provers based on the "smt" proof
|
wenzelm@41571
|
941 |
method. See the Sledgehammer manual for details ("isabelle doc
|
wenzelm@41571
|
942 |
sledgehammer").
|
blanchet@40059
|
943 |
- Renamed commands:
|
blanchet@40059
|
944 |
sledgehammer atp_info ~> sledgehammer running_provers
|
blanchet@40059
|
945 |
sledgehammer atp_kill ~> sledgehammer kill_provers
|
blanchet@40059
|
946 |
sledgehammer available_atps ~> sledgehammer available_provers
|
blanchet@40059
|
947 |
INCOMPATIBILITY.
|
blanchet@40059
|
948 |
- Renamed options:
|
blanchet@40059
|
949 |
sledgehammer [atps = ...] ~> sledgehammer [provers = ...]
|
blanchet@40062
|
950 |
sledgehammer [atp = ...] ~> sledgehammer [prover = ...]
|
blanchet@40341
|
951 |
sledgehammer [timeout = 77 s] ~> sledgehammer [timeout = 77]
|
blanchet@40341
|
952 |
(and "ms" and "min" are no longer supported)
|
blanchet@40341
|
953 |
INCOMPATIBILITY.
|
blanchet@40341
|
954 |
|
blanchet@40341
|
955 |
* Nitpick:
|
blanchet@40341
|
956 |
- Renamed options:
|
blanchet@40341
|
957 |
nitpick [timeout = 77 s] ~> nitpick [timeout = 77]
|
blanchet@40341
|
958 |
nitpick [tac_timeout = 777 ms] ~> nitpick [tac_timeout = 0.777]
|
blanchet@40059
|
959 |
INCOMPATIBILITY.
|
blanchet@40725
|
960 |
- Added support for partial quotient types.
|
blanchet@40725
|
961 |
- Added local versions of the "Nitpick.register_xxx" functions.
|
blanchet@40725
|
962 |
- Added "whack" option.
|
blanchet@40725
|
963 |
- Allow registration of quotient types as codatatypes.
|
blanchet@40725
|
964 |
- Improved "merge_type_vars" option to merge more types.
|
blanchet@40725
|
965 |
- Removed unsound "fast_descrs" option.
|
blanchet@40725
|
966 |
- Added custom symmetry breaking for datatypes, making it possible to reach
|
blanchet@40725
|
967 |
higher cardinalities.
|
blanchet@40725
|
968 |
- Prevent the expansion of too large definitions.
|
blanchet@39957
|
969 |
|
wenzelm@41571
|
970 |
* Proof methods "metis" and "meson" now have configuration options
|
wenzelm@41571
|
971 |
"meson_trace", "metis_trace", and "metis_verbose" that can be enabled
|
wenzelm@41571
|
972 |
to diagnose these tools. E.g.
|
wenzelm@41571
|
973 |
|
wenzelm@41571
|
974 |
using [[metis_trace = true]]
|
wenzelm@41571
|
975 |
|
haftmann@41398
|
976 |
* Auto Solve: Renamed "Auto Solve Direct". The tool is now available
|
haftmann@41398
|
977 |
manually as command 'solve_direct'.
|
haftmann@41398
|
978 |
|
boehmes@41601
|
979 |
* The default SMT solver Z3 must be enabled explicitly (due to
|
boehmes@41601
|
980 |
licensing issues) by setting the environment variable
|
wenzelm@41603
|
981 |
Z3_NON_COMMERCIAL in etc/settings of the component, for example. For
|
wenzelm@41603
|
982 |
commercial applications, the SMT solver CVC3 is provided as fall-back;
|
wenzelm@41603
|
983 |
changing the SMT solver is done via the configuration option
|
wenzelm@41603
|
984 |
"smt_solver".
|
boehmes@41432
|
985 |
|
boehmes@41432
|
986 |
* Remote SMT solvers need to be referred to by the "remote_" prefix,
|
wenzelm@41571
|
987 |
i.e. "remote_cvc3" and "remote_z3".
|
wenzelm@41571
|
988 |
|
wenzelm@41571
|
989 |
* Added basic SMT support for datatypes, records, and typedefs using
|
wenzelm@41571
|
990 |
the oracle mode (no proofs). Direct support of pairs has been dropped
|
wenzelm@41571
|
991 |
in exchange (pass theorems fst_conv snd_conv pair_collapse to the SMT
|
wenzelm@41571
|
992 |
support for a similar behavior). Minor INCOMPATIBILITY.
|
boehmes@41432
|
993 |
|
boehmes@40162
|
994 |
* Changed SMT configuration options:
|
boehmes@40162
|
995 |
- Renamed:
|
boehmes@41432
|
996 |
z3_proofs ~> smt_oracle (with inverted meaning)
|
boehmes@40162
|
997 |
z3_trace_assms ~> smt_trace_used_facts
|
boehmes@40162
|
998 |
INCOMPATIBILITY.
|
boehmes@40162
|
999 |
- Added:
|
boehmes@40424
|
1000 |
smt_verbose
|
boehmes@41432
|
1001 |
smt_random_seed
|
boehmes@40424
|
1002 |
smt_datatypes
|
boehmes@41432
|
1003 |
smt_infer_triggers
|
boehmes@41432
|
1004 |
smt_monomorph_limit
|
boehmes@40162
|
1005 |
cvc3_options
|
boehmes@41432
|
1006 |
remote_cvc3_options
|
boehmes@41432
|
1007 |
remote_z3_options
|
boehmes@40162
|
1008 |
yices_options
|
blanchet@39957
|
1009 |
|
wenzelm@40948
|
1010 |
* Boogie output files (.b2i files) need to be declared in the theory
|
wenzelm@40948
|
1011 |
header.
|
boehmes@40580
|
1012 |
|
wenzelm@41594
|
1013 |
* Simplification procedure "list_to_set_comprehension" rewrites list
|
wenzelm@41594
|
1014 |
comprehensions applied to List.set to set comprehensions. Occasional
|
wenzelm@41594
|
1015 |
INCOMPATIBILITY, may be deactivated like this:
|
wenzelm@41594
|
1016 |
|
wenzelm@41594
|
1017 |
declare [[simproc del: list_to_set_comprehension]]
|
wenzelm@41594
|
1018 |
|
wenzelm@41573
|
1019 |
* Removed old version of primrec package. INCOMPATIBILITY.
|
haftmann@41398
|
1020 |
|
haftmann@41398
|
1021 |
* Removed simplifier congruence rule of "prod_case", as has for long
|
haftmann@41398
|
1022 |
been the case with "split". INCOMPATIBILITY.
|
haftmann@41398
|
1023 |
|
haftmann@41398
|
1024 |
* String.literal is a type, but not a datatype. INCOMPATIBILITY.
|
haftmann@41398
|
1025 |
|
krauss@40388
|
1026 |
* Removed [split_format ... and ... and ...] version of
|
krauss@40388
|
1027 |
[split_format]. Potential INCOMPATIBILITY.
|
krauss@40388
|
1028 |
|
wenzelm@41571
|
1029 |
* Predicate "sorted" now defined inductively, with nice induction
|
wenzelm@41571
|
1030 |
rules. INCOMPATIBILITY: former sorted.simps now named sorted_simps.
|
haftmann@41398
|
1031 |
|
haftmann@41398
|
1032 |
* Constant "contents" renamed to "the_elem", to free the generic name
|
haftmann@41398
|
1033 |
contents for other uses. INCOMPATIBILITY.
|
haftmann@41398
|
1034 |
|
haftmann@41398
|
1035 |
* Renamed class eq and constant eq (for code generation) to class
|
haftmann@41398
|
1036 |
equal and constant equal, plus renaming of related facts and various
|
haftmann@41398
|
1037 |
tuning. INCOMPATIBILITY.
|
haftmann@41398
|
1038 |
|
haftmann@41398
|
1039 |
* Dropped type classes mult_mono and mult_mono1. INCOMPATIBILITY.
|
haftmann@41398
|
1040 |
|
wenzelm@41571
|
1041 |
* Removed output syntax "'a ~=> 'b" for "'a => 'b option".
|
wenzelm@41571
|
1042 |
INCOMPATIBILITY.
|
haftmann@41398
|
1043 |
|
haftmann@41398
|
1044 |
* Renamed theory Fset to Cset, type Fset.fset to Cset.set, in order to
|
haftmann@41398
|
1045 |
avoid confusion with finite sets. INCOMPATIBILITY.
|
haftmann@41398
|
1046 |
|
haftmann@41398
|
1047 |
* Abandoned locales equiv, congruent and congruent2 for equivalence
|
haftmann@41398
|
1048 |
relations. INCOMPATIBILITY: use equivI rather than equiv_intro (same
|
haftmann@41398
|
1049 |
for congruent(2)).
|
haftmann@41398
|
1050 |
|
haftmann@41398
|
1051 |
* Some previously unqualified names have been qualified:
|
haftmann@41398
|
1052 |
|
haftmann@41398
|
1053 |
types
|
haftmann@41398
|
1054 |
bool ~> HOL.bool
|
haftmann@41398
|
1055 |
nat ~> Nat.nat
|
haftmann@41398
|
1056 |
|
haftmann@41398
|
1057 |
constants
|
haftmann@41398
|
1058 |
Trueprop ~> HOL.Trueprop
|
haftmann@41398
|
1059 |
True ~> HOL.True
|
haftmann@41398
|
1060 |
False ~> HOL.False
|
haftmann@41398
|
1061 |
op & ~> HOL.conj
|
haftmann@41398
|
1062 |
op | ~> HOL.disj
|
haftmann@41398
|
1063 |
op --> ~> HOL.implies
|
haftmann@41398
|
1064 |
op = ~> HOL.eq
|
haftmann@41398
|
1065 |
Not ~> HOL.Not
|
haftmann@41398
|
1066 |
The ~> HOL.The
|
haftmann@41398
|
1067 |
All ~> HOL.All
|
haftmann@41398
|
1068 |
Ex ~> HOL.Ex
|
haftmann@41398
|
1069 |
Ex1 ~> HOL.Ex1
|
haftmann@41398
|
1070 |
Let ~> HOL.Let
|
haftmann@41398
|
1071 |
If ~> HOL.If
|
haftmann@41398
|
1072 |
Ball ~> Set.Ball
|
haftmann@41398
|
1073 |
Bex ~> Set.Bex
|
haftmann@41398
|
1074 |
Suc ~> Nat.Suc
|
haftmann@41398
|
1075 |
Pair ~> Product_Type.Pair
|
haftmann@41398
|
1076 |
fst ~> Product_Type.fst
|
haftmann@41398
|
1077 |
snd ~> Product_Type.snd
|
haftmann@41398
|
1078 |
curry ~> Product_Type.curry
|
haftmann@41398
|
1079 |
op : ~> Set.member
|
haftmann@41398
|
1080 |
Collect ~> Set.Collect
|
haftmann@41398
|
1081 |
|
haftmann@41398
|
1082 |
INCOMPATIBILITY.
|
haftmann@41398
|
1083 |
|
haftmann@41398
|
1084 |
* More canonical naming convention for some fundamental definitions:
|
haftmann@41398
|
1085 |
|
haftmann@41398
|
1086 |
bot_bool_eq ~> bot_bool_def
|
haftmann@41398
|
1087 |
top_bool_eq ~> top_bool_def
|
haftmann@41398
|
1088 |
inf_bool_eq ~> inf_bool_def
|
haftmann@41398
|
1089 |
sup_bool_eq ~> sup_bool_def
|
haftmann@41398
|
1090 |
bot_fun_eq ~> bot_fun_def
|
haftmann@41398
|
1091 |
top_fun_eq ~> top_fun_def
|
haftmann@41398
|
1092 |
inf_fun_eq ~> inf_fun_def
|
haftmann@41398
|
1093 |
sup_fun_eq ~> sup_fun_def
|
haftmann@41398
|
1094 |
|
haftmann@41398
|
1095 |
INCOMPATIBILITY.
|
haftmann@41398
|
1096 |
|
haftmann@41398
|
1097 |
* More stylized fact names:
|
haftmann@41398
|
1098 |
|
haftmann@41398
|
1099 |
expand_fun_eq ~> fun_eq_iff
|
haftmann@41398
|
1100 |
expand_set_eq ~> set_eq_iff
|
haftmann@41398
|
1101 |
set_ext ~> set_eqI
|
haftmann@41398
|
1102 |
nat_number ~> eval_nat_numeral
|
haftmann@41398
|
1103 |
|
haftmann@41398
|
1104 |
INCOMPATIBILITY.
|
haftmann@41398
|
1105 |
|
wenzelm@41571
|
1106 |
* Refactoring of code-generation specific operations in theory List:
|
haftmann@41398
|
1107 |
|
haftmann@41398
|
1108 |
constants
|
haftmann@41398
|
1109 |
null ~> List.null
|
haftmann@41398
|
1110 |
|
haftmann@41398
|
1111 |
facts
|
haftmann@41398
|
1112 |
mem_iff ~> member_def
|
haftmann@41398
|
1113 |
null_empty ~> null_def
|
haftmann@41398
|
1114 |
|
haftmann@41398
|
1115 |
INCOMPATIBILITY. Note that these were not supposed to be used
|
haftmann@41398
|
1116 |
regularly unless for striking reasons; their main purpose was code
|
haftmann@41398
|
1117 |
generation.
|
haftmann@41398
|
1118 |
|
haftmann@41398
|
1119 |
Various operations from the Haskell prelude are used for generating
|
haftmann@41398
|
1120 |
Haskell code.
|
haftmann@41398
|
1121 |
|
wenzelm@41571
|
1122 |
* Term "bij f" is now an abbreviation of "bij_betw f UNIV UNIV". Term
|
wenzelm@41571
|
1123 |
"surj f" is now an abbreviation of "range f = UNIV". The theorems
|
wenzelm@41571
|
1124 |
bij_def and surj_def are unchanged. INCOMPATIBILITY.
|
haftmann@41398
|
1125 |
|
haftmann@41398
|
1126 |
* Abolished some non-alphabetic type names: "prod" and "sum" replace
|
haftmann@41398
|
1127 |
"*" and "+" respectively. INCOMPATIBILITY.
|
haftmann@41398
|
1128 |
|
haftmann@41398
|
1129 |
* Name "Plus" of disjoint sum operator "<+>" is now hidden. Write
|
wenzelm@41571
|
1130 |
"Sum_Type.Plus" instead.
|
haftmann@41398
|
1131 |
|
haftmann@41398
|
1132 |
* Constant "split" has been merged with constant "prod_case"; names of
|
haftmann@41398
|
1133 |
ML functions, facts etc. involving split have been retained so far,
|
haftmann@41398
|
1134 |
though. INCOMPATIBILITY.
|
haftmann@41398
|
1135 |
|
haftmann@41398
|
1136 |
* Dropped old infix syntax "_ mem _" for List.member; use "_ : set _"
|
haftmann@41398
|
1137 |
instead. INCOMPATIBILITY.
|
haftmann@41398
|
1138 |
|
wenzelm@41571
|
1139 |
* Removed lemma "Option.is_none_none" which duplicates "is_none_def".
|
haftmann@41398
|
1140 |
INCOMPATIBILITY.
|
haftmann@41398
|
1141 |
|
wenzelm@41594
|
1142 |
* Former theory Library/Enum is now part of the HOL-Main image.
|
wenzelm@41594
|
1143 |
INCOMPATIBILITY: all constants of the Enum theory now have to be
|
wenzelm@41594
|
1144 |
referred to by its qualified name.
|
wenzelm@41594
|
1145 |
|
wenzelm@41594
|
1146 |
enum ~> Enum.enum
|
wenzelm@41594
|
1147 |
nlists ~> Enum.nlists
|
wenzelm@41594
|
1148 |
product ~> Enum.product
|
wenzelm@41594
|
1149 |
|
wenzelm@41594
|
1150 |
* Theory Library/Monad_Syntax provides do-syntax for monad types.
|
wenzelm@41594
|
1151 |
Syntax in Library/State_Monad has been changed to avoid ambiguities.
|
wenzelm@41594
|
1152 |
INCOMPATIBILITY.
|
wenzelm@41594
|
1153 |
|
wenzelm@41594
|
1154 |
* Theory Library/SetsAndFunctions has been split into
|
wenzelm@41594
|
1155 |
Library/Function_Algebras and Library/Set_Algebras; canonical names
|
wenzelm@41594
|
1156 |
for instance definitions for functions; various improvements.
|
wenzelm@41594
|
1157 |
INCOMPATIBILITY.
|
wenzelm@41594
|
1158 |
|
wenzelm@41594
|
1159 |
* Theory Library/Multiset provides stable quicksort implementation of
|
wenzelm@41594
|
1160 |
sort_key.
|
wenzelm@41594
|
1161 |
|
wenzelm@41594
|
1162 |
* Theory Library/Multiset: renamed empty_idemp ~> empty_neutral.
|
wenzelm@41594
|
1163 |
INCOMPATIBILITY.
|
wenzelm@41594
|
1164 |
|
wenzelm@41594
|
1165 |
* Session Multivariate_Analysis: introduced a type class for euclidean
|
wenzelm@41594
|
1166 |
space. Most theorems are now stated in terms of euclidean spaces
|
wenzelm@41594
|
1167 |
instead of finite cartesian products.
|
wenzelm@41594
|
1168 |
|
wenzelm@41594
|
1169 |
types
|
wenzelm@41594
|
1170 |
real ^ 'n ~> 'a::real_vector
|
wenzelm@41594
|
1171 |
~> 'a::euclidean_space
|
wenzelm@41594
|
1172 |
~> 'a::ordered_euclidean_space
|
wenzelm@41594
|
1173 |
(depends on your needs)
|
wenzelm@41594
|
1174 |
|
wenzelm@41594
|
1175 |
constants
|
wenzelm@41594
|
1176 |
_ $ _ ~> _ $$ _
|
wenzelm@41594
|
1177 |
\<chi> x. _ ~> \<chi>\<chi> x. _
|
wenzelm@41594
|
1178 |
CARD('n) ~> DIM('a)
|
wenzelm@41594
|
1179 |
|
wenzelm@41594
|
1180 |
Also note that the indices are now natural numbers and not from some
|
wenzelm@41594
|
1181 |
finite type. Finite cartesian products of euclidean spaces, products
|
wenzelm@41594
|
1182 |
of euclidean spaces the real and complex numbers are instantiated to
|
wenzelm@41594
|
1183 |
be euclidean_spaces. INCOMPATIBILITY.
|
wenzelm@41594
|
1184 |
|
wenzelm@41594
|
1185 |
* Session Probability: introduced pextreal as positive extended real
|
wenzelm@41594
|
1186 |
numbers. Use pextreal as value for measures. Introduce the
|
wenzelm@41594
|
1187 |
Radon-Nikodym derivative, product spaces and Fubini's theorem for
|
wenzelm@41594
|
1188 |
arbitrary sigma finite measures. Introduces Lebesgue measure based on
|
wenzelm@41594
|
1189 |
the integral in Multivariate Analysis. INCOMPATIBILITY.
|
wenzelm@41594
|
1190 |
|
wenzelm@41594
|
1191 |
* Session Imperative_HOL: revamped, corrected dozens of inadequacies.
|
wenzelm@41594
|
1192 |
INCOMPATIBILITY.
|
wenzelm@41594
|
1193 |
|
wenzelm@41594
|
1194 |
* Session SPARK (with image HOL-SPARK) provides commands to load and
|
wenzelm@41594
|
1195 |
prove verification conditions generated by the SPARK Ada program
|
wenzelm@41594
|
1196 |
verifier. See also src/HOL/SPARK and src/HOL/SPARK/Examples.
|
berghofe@41567
|
1197 |
|
huffman@40621
|
1198 |
|
ballarin@41433
|
1199 |
*** HOL-Algebra ***
|
ballarin@41433
|
1200 |
|
ballarin@41433
|
1201 |
* Theorems for additive ring operations (locale abelian_monoid and
|
ballarin@41433
|
1202 |
descendants) are generated by interpretation from their multiplicative
|
ballarin@41434
|
1203 |
counterparts. Names (in particular theorem names) have the mandatory
|
ballarin@41434
|
1204 |
qualifier 'add'. Previous theorem names are redeclared for
|
ballarin@41434
|
1205 |
compatibility.
|
ballarin@41434
|
1206 |
|
wenzelm@41571
|
1207 |
* Structure "int_ring" is now an abbreviation (previously a
|
ballarin@41434
|
1208 |
definition). This fits more natural with advanced interpretations.
|
ballarin@41433
|
1209 |
|
ballarin@41433
|
1210 |
|
huffman@40621
|
1211 |
*** HOLCF ***
|
huffman@40621
|
1212 |
|
huffman@40621
|
1213 |
* The domain package now runs in definitional mode by default: The
|
wenzelm@41571
|
1214 |
former command 'new_domain' is now called 'domain'. To use the domain
|
huffman@40621
|
1215 |
package in its original axiomatic mode, use 'domain (unsafe)'.
|
huffman@40621
|
1216 |
INCOMPATIBILITY.
|
huffman@40621
|
1217 |
|
wenzelm@41571
|
1218 |
* The new class "domain" is now the default sort. Class "predomain"
|
wenzelm@41571
|
1219 |
is an unpointed version of "domain". Theories can be updated by
|
wenzelm@41571
|
1220 |
replacing sort annotations as shown below. INCOMPATIBILITY.
|
huffman@40621
|
1221 |
|
huffman@40621
|
1222 |
'a::type ~> 'a::countable
|
huffman@40621
|
1223 |
'a::cpo ~> 'a::predomain
|
huffman@40621
|
1224 |
'a::pcpo ~> 'a::domain
|
huffman@40621
|
1225 |
|
wenzelm@41571
|
1226 |
* The old type class "rep" has been superseded by class "domain".
|
huffman@40621
|
1227 |
Accordingly, users of the definitional package must remove any
|
wenzelm@41571
|
1228 |
"default_sort rep" declarations. INCOMPATIBILITY.
|
huffman@40621
|
1229 |
|
huffman@41401
|
1230 |
* The domain package (definitional mode) now supports unpointed
|
huffman@41401
|
1231 |
predomain argument types, as long as they are marked 'lazy'. (Strict
|
wenzelm@41571
|
1232 |
arguments must be in class "domain".) For example, the following
|
huffman@41401
|
1233 |
domain definition now works:
|
huffman@41401
|
1234 |
|
huffman@41401
|
1235 |
domain natlist = nil | cons (lazy "nat discr") (lazy "natlist")
|
huffman@41401
|
1236 |
|
huffman@41401
|
1237 |
* Theory HOLCF/Library/HOL_Cpo provides cpo and predomain class
|
wenzelm@41571
|
1238 |
instances for types from main HOL: bool, nat, int, char, 'a + 'b,
|
wenzelm@41571
|
1239 |
'a option, and 'a list. Additionally, it configures fixrec and the
|
wenzelm@41571
|
1240 |
domain package to work with these types. For example:
|
huffman@41401
|
1241 |
|
huffman@41401
|
1242 |
fixrec isInl :: "('a + 'b) u -> tr"
|
huffman@41401
|
1243 |
where "isInl$(up$(Inl x)) = TT" | "isInl$(up$(Inr y)) = FF"
|
huffman@41401
|
1244 |
|
huffman@41401
|
1245 |
domain V = VFun (lazy "V -> V") | VCon (lazy "nat") (lazy "V list")
|
huffman@41401
|
1246 |
|
wenzelm@41571
|
1247 |
* The "(permissive)" option of fixrec has been replaced with a
|
wenzelm@41571
|
1248 |
per-equation "(unchecked)" option. See
|
wenzelm@41571
|
1249 |
src/HOL/HOLCF/Tutorial/Fixrec_ex.thy for examples. INCOMPATIBILITY.
|
wenzelm@41571
|
1250 |
|
wenzelm@41571
|
1251 |
* The "bifinite" class no longer fixes a constant "approx"; the class
|
wenzelm@41571
|
1252 |
now just asserts that such a function exists. INCOMPATIBILITY.
|
wenzelm@41571
|
1253 |
|
wenzelm@41571
|
1254 |
* Former type "alg_defl" has been renamed to "defl". HOLCF no longer
|
huffman@41287
|
1255 |
defines an embedding of type 'a defl into udom by default; instances
|
wenzelm@41571
|
1256 |
of "bifinite" and "domain" classes are available in
|
wenzelm@41571
|
1257 |
src/HOL/HOLCF/Library/Defl_Bifinite.thy.
|
wenzelm@41571
|
1258 |
|
wenzelm@41571
|
1259 |
* The syntax "REP('a)" has been replaced with "DEFL('a)".
|
wenzelm@41571
|
1260 |
|
wenzelm@41571
|
1261 |
* The predicate "directed" has been removed. INCOMPATIBILITY.
|
wenzelm@41571
|
1262 |
|
wenzelm@41571
|
1263 |
* The type class "finite_po" has been removed. INCOMPATIBILITY.
|
wenzelm@41571
|
1264 |
|
wenzelm@41571
|
1265 |
* The function "cprod_map" has been renamed to "prod_map".
|
huffman@41401
|
1266 |
INCOMPATIBILITY.
|
huffman@41401
|
1267 |
|
huffman@41401
|
1268 |
* The monadic bind operator on each powerdomain has new binder syntax
|
wenzelm@41571
|
1269 |
similar to sets, e.g. "\<Union>\<sharp>x\<in>xs. t" represents
|
wenzelm@41571
|
1270 |
"upper_bind\<cdot>xs\<cdot>(\<Lambda> x. t)".
|
huffman@41401
|
1271 |
|
huffman@41401
|
1272 |
* The infix syntax for binary union on each powerdomain has changed
|
wenzelm@41571
|
1273 |
from e.g. "+\<sharp>" to "\<union>\<sharp>", for consistency with set
|
wenzelm@41571
|
1274 |
syntax. INCOMPATIBILITY.
|
wenzelm@41571
|
1275 |
|
wenzelm@41571
|
1276 |
* The constant "UU" has been renamed to "bottom". The syntax "UU" is
|
huffman@41429
|
1277 |
still supported as an input translation.
|
huffman@41429
|
1278 |
|
huffman@40621
|
1279 |
* Renamed some theorems (the original names are also still available).
|
wenzelm@41571
|
1280 |
|
huffman@40621
|
1281 |
expand_fun_below ~> fun_below_iff
|
huffman@40621
|
1282 |
below_fun_ext ~> fun_belowI
|
huffman@40621
|
1283 |
expand_cfun_eq ~> cfun_eq_iff
|
huffman@40621
|
1284 |
ext_cfun ~> cfun_eqI
|
huffman@40621
|
1285 |
expand_cfun_below ~> cfun_below_iff
|
huffman@40621
|
1286 |
below_cfun_ext ~> cfun_belowI
|
huffman@40621
|
1287 |
cont2cont_Rep_CFun ~> cont2cont_APP
|
huffman@40621
|
1288 |
|
huffman@40621
|
1289 |
* The Abs and Rep functions for various types have changed names.
|
wenzelm@40948
|
1290 |
Related theorem names have also changed to match. INCOMPATIBILITY.
|
wenzelm@41571
|
1291 |
|
huffman@40621
|
1292 |
Rep_CFun ~> Rep_cfun
|
huffman@40621
|
1293 |
Abs_CFun ~> Abs_cfun
|
huffman@40621
|
1294 |
Rep_Sprod ~> Rep_sprod
|
huffman@40621
|
1295 |
Abs_Sprod ~> Abs_sprod
|
huffman@40621
|
1296 |
Rep_Ssum ~> Rep_ssum
|
huffman@40621
|
1297 |
Abs_Ssum ~> Abs_ssum
|
huffman@40621
|
1298 |
|
huffman@40621
|
1299 |
* Lemmas with names of the form *_defined_iff or *_strict_iff have
|
wenzelm@41571
|
1300 |
been renamed to *_bottom_iff. INCOMPATIBILITY.
|
huffman@40621
|
1301 |
|
huffman@40621
|
1302 |
* Various changes to bisimulation/coinduction with domain package:
|
wenzelm@41571
|
1303 |
|
wenzelm@41571
|
1304 |
- Definitions of "bisim" constants no longer mention definedness.
|
wenzelm@41571
|
1305 |
- With mutual recursion, "bisim" predicate is now curried.
|
huffman@40621
|
1306 |
- With mutual recursion, each type gets a separate coind theorem.
|
huffman@40621
|
1307 |
- Variable names in bisim_def and coinduct rules have changed.
|
wenzelm@41571
|
1308 |
|
huffman@40621
|
1309 |
INCOMPATIBILITY.
|
huffman@40621
|
1310 |
|
wenzelm@41571
|
1311 |
* Case combinators generated by the domain package for type "foo" are
|
wenzelm@41571
|
1312 |
now named "foo_case" instead of "foo_when". INCOMPATIBILITY.
|
huffman@40621
|
1313 |
|
huffman@40771
|
1314 |
* Several theorems have been renamed to more accurately reflect the
|
wenzelm@41571
|
1315 |
names of constants and types involved. INCOMPATIBILITY.
|
wenzelm@41571
|
1316 |
|
huffman@40771
|
1317 |
thelub_const ~> lub_const
|
huffman@40771
|
1318 |
lub_const ~> is_lub_const
|
huffman@40771
|
1319 |
thelubI ~> lub_eqI
|
huffman@40771
|
1320 |
is_lub_lub ~> is_lubD2
|
huffman@40771
|
1321 |
lubI ~> is_lub_lub
|
huffman@40771
|
1322 |
unique_lub ~> is_lub_unique
|
huffman@40771
|
1323 |
is_ub_lub ~> is_lub_rangeD1
|
huffman@40771
|
1324 |
lub_bin_chain ~> is_lub_bin_chain
|
huffman@41030
|
1325 |
lub_fun ~> is_lub_fun
|
huffman@41030
|
1326 |
thelub_fun ~> lub_fun
|
huffman@41031
|
1327 |
thelub_cfun ~> lub_cfun
|
huffman@40771
|
1328 |
thelub_Pair ~> lub_Pair
|
huffman@40771
|
1329 |
lub_cprod ~> is_lub_prod
|
huffman@40771
|
1330 |
thelub_cprod ~> lub_prod
|
huffman@40771
|
1331 |
minimal_cprod ~> minimal_prod
|
huffman@40771
|
1332 |
inst_cprod_pcpo ~> inst_prod_pcpo
|
huffman@41430
|
1333 |
UU_I ~> bottomI
|
huffman@41430
|
1334 |
compact_UU ~> compact_bottom
|
huffman@41430
|
1335 |
deflation_UU ~> deflation_bottom
|
huffman@41430
|
1336 |
finite_deflation_UU ~> finite_deflation_bottom
|
huffman@40771
|
1337 |
|
wenzelm@41571
|
1338 |
* Many legacy theorem names have been discontinued. INCOMPATIBILITY.
|
wenzelm@41571
|
1339 |
|
huffman@40621
|
1340 |
sq_ord_less_eq_trans ~> below_eq_trans
|
huffman@40621
|
1341 |
sq_ord_eq_less_trans ~> eq_below_trans
|
huffman@40621
|
1342 |
refl_less ~> below_refl
|
huffman@40621
|
1343 |
trans_less ~> below_trans
|
huffman@40621
|
1344 |
antisym_less ~> below_antisym
|
huffman@40621
|
1345 |
antisym_less_inverse ~> po_eq_conv [THEN iffD1]
|
huffman@40621
|
1346 |
box_less ~> box_below
|
huffman@40621
|
1347 |
rev_trans_less ~> rev_below_trans
|
huffman@40621
|
1348 |
not_less2not_eq ~> not_below2not_eq
|
huffman@40621
|
1349 |
less_UU_iff ~> below_UU_iff
|
huffman@40621
|
1350 |
flat_less_iff ~> flat_below_iff
|
huffman@40621
|
1351 |
adm_less ~> adm_below
|
huffman@40621
|
1352 |
adm_not_less ~> adm_not_below
|
huffman@40621
|
1353 |
adm_compact_not_less ~> adm_compact_not_below
|
huffman@40621
|
1354 |
less_fun_def ~> below_fun_def
|
huffman@40621
|
1355 |
expand_fun_less ~> fun_below_iff
|
huffman@40621
|
1356 |
less_fun_ext ~> fun_belowI
|
huffman@40621
|
1357 |
less_discr_def ~> below_discr_def
|
huffman@40621
|
1358 |
discr_less_eq ~> discr_below_eq
|
huffman@40621
|
1359 |
less_unit_def ~> below_unit_def
|
huffman@40621
|
1360 |
less_cprod_def ~> below_prod_def
|
huffman@40621
|
1361 |
prod_lessI ~> prod_belowI
|
huffman@40621
|
1362 |
Pair_less_iff ~> Pair_below_iff
|
huffman@40621
|
1363 |
fst_less_iff ~> fst_below_iff
|
huffman@40621
|
1364 |
snd_less_iff ~> snd_below_iff
|
huffman@40621
|
1365 |
expand_cfun_less ~> cfun_below_iff
|
huffman@40621
|
1366 |
less_cfun_ext ~> cfun_belowI
|
huffman@40621
|
1367 |
injection_less ~> injection_below
|
huffman@40621
|
1368 |
less_up_def ~> below_up_def
|
huffman@40621
|
1369 |
not_Iup_less ~> not_Iup_below
|
huffman@40621
|
1370 |
Iup_less ~> Iup_below
|
huffman@40621
|
1371 |
up_less ~> up_below
|
huffman@40621
|
1372 |
Def_inject_less_eq ~> Def_below_Def
|
huffman@40621
|
1373 |
Def_less_is_eq ~> Def_below_iff
|
huffman@40621
|
1374 |
spair_less_iff ~> spair_below_iff
|
huffman@40621
|
1375 |
less_sprod ~> below_sprod
|
huffman@40621
|
1376 |
spair_less ~> spair_below
|
huffman@40621
|
1377 |
sfst_less_iff ~> sfst_below_iff
|
huffman@40621
|
1378 |
ssnd_less_iff ~> ssnd_below_iff
|
huffman@40621
|
1379 |
fix_least_less ~> fix_least_below
|
huffman@40621
|
1380 |
dist_less_one ~> dist_below_one
|
huffman@40621
|
1381 |
less_ONE ~> below_ONE
|
huffman@40621
|
1382 |
ONE_less_iff ~> ONE_below_iff
|
huffman@40621
|
1383 |
less_sinlD ~> below_sinlD
|
huffman@40621
|
1384 |
less_sinrD ~> below_sinrD
|
huffman@40621
|
1385 |
|
huffman@40621
|
1386 |
|
wenzelm@40948
|
1387 |
*** FOL and ZF ***
|
haftmann@38522
|
1388 |
|
wenzelm@41310
|
1389 |
* All constant names are now qualified internally and use proper
|
wenzelm@41310
|
1390 |
identifiers, e.g. "IFOL.eq" instead of "op =". INCOMPATIBILITY.
|
wenzelm@41310
|
1391 |
|
haftmann@38522
|
1392 |
|
wenzelm@37868
|
1393 |
*** ML ***
|
wenzelm@37868
|
1394 |
|
wenzelm@41594
|
1395 |
* Antiquotation @{assert} inlines a function bool -> unit that raises
|
wenzelm@41594
|
1396 |
Fail if the argument is false. Due to inlining the source position of
|
wenzelm@41594
|
1397 |
failed assertions is included in the error output.
|
wenzelm@41594
|
1398 |
|
wenzelm@41594
|
1399 |
* Discontinued antiquotation @{theory_ref}, which is obsolete since ML
|
wenzelm@41594
|
1400 |
text is in practice always evaluated with a stable theory checkpoint.
|
wenzelm@41594
|
1401 |
Minor INCOMPATIBILITY, use (Theory.check_thy @{theory}) instead.
|
wenzelm@41594
|
1402 |
|
wenzelm@41594
|
1403 |
* Antiquotation @{theory A} refers to theory A from the ancestry of
|
wenzelm@41594
|
1404 |
the current context, not any accidental theory loader state as before.
|
wenzelm@41594
|
1405 |
Potential INCOMPATIBILITY, subtle change in semantics.
|
wenzelm@41228
|
1406 |
|
wenzelm@40956
|
1407 |
* Syntax.pretty_priority (default 0) configures the required priority
|
wenzelm@40956
|
1408 |
of pretty-printed output and thus affects insertion of parentheses.
|
wenzelm@40956
|
1409 |
|
wenzelm@40959
|
1410 |
* Syntax.default_root (default "any") configures the inner syntax
|
wenzelm@40959
|
1411 |
category (nonterminal symbol) for parsing of terms.
|
wenzelm@40959
|
1412 |
|
wenzelm@40722
|
1413 |
* Former exception Library.UnequalLengths now coincides with
|
wenzelm@40722
|
1414 |
ListPair.UnequalLengths.
|
wenzelm@40722
|
1415 |
|
wenzelm@41594
|
1416 |
* Renamed structure MetaSimplifier to Raw_Simplifier. Note that the
|
wenzelm@41594
|
1417 |
main functionality is provided by structure Simplifier.
|
wenzelm@41594
|
1418 |
|
wenzelm@40627
|
1419 |
* Renamed raw "explode" function to "raw_explode" to emphasize its
|
wenzelm@40627
|
1420 |
meaning. Note that internally to Isabelle, Symbol.explode is used in
|
wenzelm@40627
|
1421 |
almost all situations.
|
wenzelm@40627
|
1422 |
|
wenzelm@40318
|
1423 |
* Discontinued obsolete function sys_error and exception SYS_ERROR.
|
wenzelm@40318
|
1424 |
See implementation manual for further details on exceptions in
|
wenzelm@40318
|
1425 |
Isabelle/ML.
|
wenzelm@40318
|
1426 |
|
wenzelm@39616
|
1427 |
* Renamed setmp_noncritical to Unsynchronized.setmp to emphasize its
|
wenzelm@39616
|
1428 |
meaning.
|
wenzelm@39616
|
1429 |
|
wenzelm@39557
|
1430 |
* Renamed structure PureThy to Pure_Thy and moved most of its
|
wenzelm@39557
|
1431 |
operations to structure Global_Theory, to emphasize that this is
|
wenzelm@39557
|
1432 |
rarely-used global-only stuff.
|
wenzelm@39557
|
1433 |
|
wenzelm@39513
|
1434 |
* Discontinued Output.debug. Minor INCOMPATIBILITY, use plain writeln
|
wenzelm@39513
|
1435 |
instead (or tracing for high-volume output).
|
wenzelm@39513
|
1436 |
|
wenzelm@38980
|
1437 |
* Configuration option show_question_marks only affects regular pretty
|
wenzelm@38980
|
1438 |
printing of types and terms, not raw Term.string_of_vname.
|
wenzelm@38980
|
1439 |
|
wenzelm@39164
|
1440 |
* ML_Context.thm and ML_Context.thms are no longer pervasive. Rare
|
wenzelm@39164
|
1441 |
INCOMPATIBILITY, superseded by static antiquotations @{thm} and
|
wenzelm@39164
|
1442 |
@{thms} for most purposes.
|
wenzelm@39164
|
1443 |
|
wenzelm@41594
|
1444 |
* ML structure Unsynchronized is never opened, not even in Isar
|
wenzelm@38980
|
1445 |
interaction mode as before. Old Unsynchronized.set etc. have been
|
wenzelm@38980
|
1446 |
discontinued -- use plain := instead. This should be *rare* anyway,
|
wenzelm@38980
|
1447 |
since modern tools always work via official context data, notably
|
wenzelm@38980
|
1448 |
configuration options.
|
wenzelm@38980
|
1449 |
|
wenzelm@39239
|
1450 |
* Parallel and asynchronous execution requires special care concerning
|
wenzelm@39239
|
1451 |
interrupts. Structure Exn provides some convenience functions that
|
wenzelm@39239
|
1452 |
avoid working directly with raw Interrupt. User code must not absorb
|
wenzelm@39239
|
1453 |
interrupts -- intermediate handling (for cleanup etc.) needs to be
|
wenzelm@39239
|
1454 |
followed by re-raising of the original exception. Another common
|
wenzelm@39239
|
1455 |
source of mistakes are "handle _" patterns, which make the meaning of
|
wenzelm@39239
|
1456 |
the program subject to physical effects of the environment.
|
wenzelm@39239
|
1457 |
|
wenzelm@37868
|
1458 |
|
wenzelm@37868
|
1459 |
|
wenzelm@37144
|
1460 |
New in Isabelle2009-2 (June 2010)
|
wenzelm@37144
|
1461 |
---------------------------------
|
haftmann@33993
|
1462 |
|
wenzelm@35260
|
1463 |
*** General ***
|
wenzelm@35260
|
1464 |
|
wenzelm@35436
|
1465 |
* Authentic syntax for *all* logical entities (type classes, type
|
wenzelm@35436
|
1466 |
constructors, term constants): provides simple and robust
|
wenzelm@35436
|
1467 |
correspondence between formal entities and concrete syntax. Within
|
wenzelm@35436
|
1468 |
the parse tree / AST representations, "constants" are decorated by
|
wenzelm@35436
|
1469 |
their category (class, type, const) and spelled out explicitly with
|
wenzelm@35436
|
1470 |
their full internal name.
|
wenzelm@35436
|
1471 |
|
wenzelm@35436
|
1472 |
Substantial INCOMPATIBILITY concerning low-level syntax declarations
|
wenzelm@35436
|
1473 |
and translations (translation rules and translation functions in ML).
|
wenzelm@35436
|
1474 |
Some hints on upgrading:
|
wenzelm@35260
|
1475 |
|
wenzelm@35260
|
1476 |
- Many existing uses of 'syntax' and 'translations' can be replaced
|
wenzelm@35436
|
1477 |
by more modern 'type_notation', 'notation' and 'abbreviation',
|
wenzelm@35436
|
1478 |
which are independent of this issue.
|
wenzelm@35260
|
1479 |
|
wenzelm@35260
|
1480 |
- 'translations' require markup within the AST; the term syntax
|
wenzelm@35260
|
1481 |
provides the following special forms:
|
wenzelm@35260
|
1482 |
|
wenzelm@35260
|
1483 |
CONST c -- produces syntax version of constant c from context
|
wenzelm@35261
|
1484 |
XCONST c -- literally c, checked as constant from context
|
wenzelm@35261
|
1485 |
c -- literally c, if declared by 'syntax'
|
wenzelm@35261
|
1486 |
|
wenzelm@35261
|
1487 |
Plain identifiers are treated as AST variables -- occasionally the
|
wenzelm@35261
|
1488 |
system indicates accidental variables via the error "rhs contains
|
wenzelm@35261
|
1489 |
extra variables".
|
wenzelm@35260
|
1490 |
|
wenzelm@35436
|
1491 |
Type classes and type constructors are marked according to their
|
wenzelm@35436
|
1492 |
concrete syntax. Some old translations rules need to be written
|
wenzelm@35436
|
1493 |
for the "type" category, using type constructor application
|
wenzelm@35436
|
1494 |
instead of pseudo-term application of the default category
|
wenzelm@35436
|
1495 |
"logic".
|
wenzelm@35436
|
1496 |
|
wenzelm@35260
|
1497 |
- 'parse_translation' etc. in ML may use the following
|
wenzelm@35260
|
1498 |
antiquotations:
|
wenzelm@35260
|
1499 |
|
wenzelm@35436
|
1500 |
@{class_syntax c} -- type class c within parse tree / AST
|
wenzelm@35436
|
1501 |
@{term_syntax c} -- type constructor c within parse tree / AST
|
wenzelm@35260
|
1502 |
@{const_syntax c} -- ML version of "CONST c" above
|
wenzelm@35260
|
1503 |
@{syntax_const c} -- literally c (checked wrt. 'syntax' declarations)
|
wenzelm@35260
|
1504 |
|
wenzelm@35436
|
1505 |
- Literal types within 'typed_print_translations', i.e. those *not*
|
wenzelm@35436
|
1506 |
represented as pseudo-terms are represented verbatim. Use @{class
|
wenzelm@35436
|
1507 |
c} or @{type_name c} here instead of the above syntax
|
wenzelm@35436
|
1508 |
antiquotations.
|
wenzelm@35436
|
1509 |
|
wenzelm@35260
|
1510 |
Note that old non-authentic syntax was based on unqualified base
|
wenzelm@35436
|
1511 |
names, so all of the above "constant" names would coincide. Recall
|
wenzelm@35436
|
1512 |
that 'print_syntax' and ML_command "set Syntax.trace_ast" help to
|
wenzelm@35436
|
1513 |
diagnose syntax problems.
|
wenzelm@35260
|
1514 |
|
wenzelm@35351
|
1515 |
* Type constructors admit general mixfix syntax, not just infix.
|
wenzelm@35351
|
1516 |
|
wenzelm@36508
|
1517 |
* Concrete syntax may be attached to local entities without a proof
|
wenzelm@36508
|
1518 |
body, too. This works via regular mixfix annotations for 'fix',
|
wenzelm@36508
|
1519 |
'def', 'obtain' etc. or via the explicit 'write' command, which is
|
wenzelm@36508
|
1520 |
similar to the 'notation' command in theory specifications.
|
wenzelm@36508
|
1521 |
|
wenzelm@37351
|
1522 |
* Discontinued unnamed infix syntax (legacy feature for many years) --
|
wenzelm@37351
|
1523 |
need to specify constant name and syntax separately. Internal ML
|
wenzelm@37351
|
1524 |
datatype constructors have been renamed from InfixName to Infix etc.
|
wenzelm@37351
|
1525 |
Minor INCOMPATIBILITY.
|
wenzelm@37351
|
1526 |
|
wenzelm@37351
|
1527 |
* Schematic theorem statements need to be explicitly markup as such,
|
wenzelm@37351
|
1528 |
via commands 'schematic_lemma', 'schematic_theorem',
|
wenzelm@37351
|
1529 |
'schematic_corollary'. Thus the relevance of the proof is made
|
wenzelm@37351
|
1530 |
syntactically clear, which impacts performance in a parallel or
|
wenzelm@37351
|
1531 |
asynchronous interactive environment. Minor INCOMPATIBILITY.
|
wenzelm@37351
|
1532 |
|
wenzelm@35613
|
1533 |
* Use of cumulative prems via "!" in some proof methods has been
|
wenzelm@37351
|
1534 |
discontinued (old legacy feature).
|
wenzelm@35613
|
1535 |
|
boehmes@35979
|
1536 |
* References 'trace_simp' and 'debug_simp' have been replaced by
|
wenzelm@36857
|
1537 |
configuration options stored in the context. Enabling tracing (the
|
wenzelm@36857
|
1538 |
case of debugging is similar) in proofs works via
|
wenzelm@36857
|
1539 |
|
wenzelm@36857
|
1540 |
using [[trace_simp = true]]
|
wenzelm@36857
|
1541 |
|
wenzelm@36857
|
1542 |
Tracing is then active for all invocations of the simplifier in
|
wenzelm@36857
|
1543 |
subsequent goal refinement steps. Tracing may also still be enabled or
|
wenzelm@40780
|
1544 |
disabled via the ProofGeneral settings menu.
|
boehmes@35979
|
1545 |
|
wenzelm@36177
|
1546 |
* Separate commands 'hide_class', 'hide_type', 'hide_const',
|
wenzelm@36177
|
1547 |
'hide_fact' replace the former 'hide' KIND command. Minor
|
wenzelm@36177
|
1548 |
INCOMPATIBILITY.
|
wenzelm@36177
|
1549 |
|
wenzelm@37298
|
1550 |
* Improved parallelism of proof term normalization: usedir -p2 -q0 is
|
wenzelm@37298
|
1551 |
more efficient than combinations with -q1 or -q2.
|
wenzelm@37298
|
1552 |
|
wenzelm@35260
|
1553 |
|
haftmann@34170
|
1554 |
*** Pure ***
|
haftmann@34170
|
1555 |
|
wenzelm@37351
|
1556 |
* Proofterms record type-class reasoning explicitly, using the
|
wenzelm@37351
|
1557 |
"unconstrain" operation internally. This eliminates all sort
|
wenzelm@37351
|
1558 |
constraints from a theorem and proof, introducing explicit
|
wenzelm@37351
|
1559 |
OFCLASS-premises. On the proof term level, this operation is
|
wenzelm@37351
|
1560 |
automatically applied at theorem boundaries, such that closed proofs
|
wenzelm@37351
|
1561 |
are always free of sort constraints. INCOMPATIBILITY for tools that
|
wenzelm@37351
|
1562 |
inspect proof terms.
|
haftmann@36147
|
1563 |
|
wenzelm@35765
|
1564 |
* Local theory specifications may depend on extra type variables that
|
wenzelm@35765
|
1565 |
are not present in the result type -- arguments TYPE('a) :: 'a itself
|
wenzelm@35765
|
1566 |
are added internally. For example:
|
wenzelm@35765
|
1567 |
|
wenzelm@35765
|
1568 |
definition unitary :: bool where "unitary = (ALL (x::'a) y. x = y)"
|
wenzelm@35765
|
1569 |
|
wenzelm@37351
|
1570 |
* Predicates of locales introduced by classes carry a mandatory
|
wenzelm@37351
|
1571 |
"class" prefix. INCOMPATIBILITY.
|
wenzelm@37351
|
1572 |
|
wenzelm@37351
|
1573 |
* Vacuous class specifications observe default sort. INCOMPATIBILITY.
|
wenzelm@37351
|
1574 |
|
wenzelm@37351
|
1575 |
* Old 'axclass' command has been discontinued. INCOMPATIBILITY, use
|
wenzelm@37351
|
1576 |
'class' instead.
|
wenzelm@37351
|
1577 |
|
wenzelm@37351
|
1578 |
* Command 'code_reflect' allows to incorporate generated ML code into
|
wenzelm@37351
|
1579 |
runtime environment; replaces immature code_datatype antiquotation.
|
wenzelm@37351
|
1580 |
INCOMPATIBILITY.
|
wenzelm@37351
|
1581 |
|
wenzelm@37351
|
1582 |
* Code generator: simple concept for abstract datatypes obeying
|
wenzelm@37351
|
1583 |
invariants.
|
wenzelm@37351
|
1584 |
|
wenzelm@36857
|
1585 |
* Code generator: details of internal data cache have no impact on the
|
wenzelm@36857
|
1586 |
user space functionality any longer.
|
wenzelm@36857
|
1587 |
|
wenzelm@37351
|
1588 |
* Methods "unfold_locales" and "intro_locales" ignore non-locale
|
wenzelm@37351
|
1589 |
subgoals. This is more appropriate for interpretations with 'where'.
|
wenzelm@36857
|
1590 |
INCOMPATIBILITY.
|
haftmann@34170
|
1591 |
|
wenzelm@36356
|
1592 |
* Command 'example_proof' opens an empty proof body. This allows to
|
wenzelm@36356
|
1593 |
experiment with Isar, without producing any persistent result.
|
wenzelm@36356
|
1594 |
|
wenzelm@35413
|
1595 |
* Commands 'type_notation' and 'no_type_notation' declare type syntax
|
wenzelm@35413
|
1596 |
within a local theory context, with explicit checking of the
|
wenzelm@35413
|
1597 |
constructors involved (in contrast to the raw 'syntax' versions).
|
wenzelm@35413
|
1598 |
|
wenzelm@36178
|
1599 |
* Commands 'types' and 'typedecl' now work within a local theory
|
wenzelm@36178
|
1600 |
context -- without introducing dependencies on parameters or
|
wenzelm@36178
|
1601 |
assumptions, which is not possible in Isabelle/Pure.
|
wenzelm@35681
|
1602 |
|
wenzelm@36857
|
1603 |
* Command 'defaultsort' has been renamed to 'default_sort', it works
|
wenzelm@36857
|
1604 |
within a local theory context. Minor INCOMPATIBILITY.
|
wenzelm@36454
|
1605 |
|
haftmann@34170
|
1606 |
|
haftmann@33993
|
1607 |
*** HOL ***
|
haftmann@33993
|
1608 |
|
wenzelm@37351
|
1609 |
* Command 'typedef' now works within a local theory context -- without
|
wenzelm@37351
|
1610 |
introducing dependencies on parameters or assumptions, which is not
|
wenzelm@37351
|
1611 |
possible in Isabelle/Pure/HOL. Note that the logical environment may
|
wenzelm@37351
|
1612 |
contain multiple interpretations of local typedefs (with different
|
wenzelm@37351
|
1613 |
non-emptiness proofs), even in a global theory context.
|
wenzelm@37351
|
1614 |
|
wenzelm@37351
|
1615 |
* New package for quotient types. Commands 'quotient_type' and
|
wenzelm@37351
|
1616 |
'quotient_definition' may be used for defining types and constants by
|
wenzelm@37351
|
1617 |
quotient constructions. An example is the type of integers created by
|
wenzelm@37351
|
1618 |
quotienting pairs of natural numbers:
|
wenzelm@37380
|
1619 |
|
wenzelm@37351
|
1620 |
fun
|
wenzelm@37380
|
1621 |
intrel :: "(nat * nat) => (nat * nat) => bool"
|
wenzelm@37351
|
1622 |
where
|
wenzelm@37351
|
1623 |
"intrel (x, y) (u, v) = (x + v = u + y)"
|
wenzelm@37351
|
1624 |
|
wenzelm@37380
|
1625 |
quotient_type int = "nat * nat" / intrel
|
wenzelm@37351
|
1626 |
by (auto simp add: equivp_def expand_fun_eq)
|
wenzelm@37380
|
1627 |
|
wenzelm@37351
|
1628 |
quotient_definition
|
wenzelm@37351
|
1629 |
"0::int" is "(0::nat, 0::nat)"
|
wenzelm@37351
|
1630 |
|
wenzelm@37351
|
1631 |
The method "lifting" can be used to lift of theorems from the
|
wenzelm@37351
|
1632 |
underlying "raw" type to the quotient type. The example
|
wenzelm@37351
|
1633 |
src/HOL/Quotient_Examples/FSet.thy includes such a quotient
|
wenzelm@37351
|
1634 |
construction and provides a reasoning infrastructure for finite sets.
|
wenzelm@37351
|
1635 |
|
wenzelm@37351
|
1636 |
* Renamed Library/Quotient.thy to Library/Quotient_Type.thy to avoid
|
wenzelm@37351
|
1637 |
clash with new theory Quotient in Main HOL.
|
wenzelm@37351
|
1638 |
|
wenzelm@37351
|
1639 |
* Moved the SMT binding into the main HOL session, eliminating
|
wenzelm@37351
|
1640 |
separate HOL-SMT session.
|
wenzelm@37351
|
1641 |
|
haftmann@37020
|
1642 |
* List membership infix mem operation is only an input abbreviation.
|
haftmann@37020
|
1643 |
INCOMPATIBILITY.
|
haftmann@37020
|
1644 |
|
wenzelm@37144
|
1645 |
* Theory Library/Word.thy has been removed. Use library Word/Word.thy
|
wenzelm@37144
|
1646 |
for future developements; former Library/Word.thy is still present in
|
wenzelm@37144
|
1647 |
the AFP entry RSAPPS.
|
haftmann@36963
|
1648 |
|
wenzelm@36857
|
1649 |
* Theorem Int.int_induct renamed to Int.int_of_nat_induct and is no
|
wenzelm@36857
|
1650 |
longer shadowed. INCOMPATIBILITY.
|
haftmann@36808
|
1651 |
|
huffman@36836
|
1652 |
* Dropped theorem duplicate comp_arith; use semiring_norm instead.
|
huffman@36836
|
1653 |
INCOMPATIBILITY.
|
huffman@36836
|
1654 |
|
huffman@36836
|
1655 |
* Dropped theorem RealPow.real_sq_order; use power2_le_imp_le instead.
|
huffman@36836
|
1656 |
INCOMPATIBILITY.
|
haftmann@36714
|
1657 |
|
wenzelm@36857
|
1658 |
* Dropped normalizing_semiring etc; use the facts in semiring classes
|
wenzelm@36857
|
1659 |
instead. INCOMPATIBILITY.
|
wenzelm@36857
|
1660 |
|
huffman@36979
|
1661 |
* Dropped several real-specific versions of lemmas about floor and
|
wenzelm@37351
|
1662 |
ceiling; use the generic lemmas from theory "Archimedean_Field"
|
wenzelm@37351
|
1663 |
instead. INCOMPATIBILITY.
|
huffman@36979
|
1664 |
|
huffman@36979
|
1665 |
floor_number_of_eq ~> floor_number_of
|
huffman@36979
|
1666 |
le_floor_eq_number_of ~> number_of_le_floor
|
huffman@36979
|
1667 |
le_floor_eq_zero ~> zero_le_floor
|
huffman@36979
|
1668 |
le_floor_eq_one ~> one_le_floor
|
huffman@36979
|
1669 |
floor_less_eq_number_of ~> floor_less_number_of
|
huffman@36979
|
1670 |
floor_less_eq_zero ~> floor_less_zero
|
huffman@36979
|
1671 |
floor_less_eq_one ~> floor_less_one
|
huffman@36979
|
1672 |
less_floor_eq_number_of ~> number_of_less_floor
|
huffman@36979
|
1673 |
less_floor_eq_zero ~> zero_less_floor
|
huffman@36979
|
1674 |
less_floor_eq_one ~> one_less_floor
|
huffman@36979
|
1675 |
floor_le_eq_number_of ~> floor_le_number_of
|
huffman@36979
|
1676 |
floor_le_eq_zero ~> floor_le_zero
|
huffman@36979
|
1677 |
floor_le_eq_one ~> floor_le_one
|
huffman@36979
|
1678 |
floor_subtract_number_of ~> floor_diff_number_of
|
huffman@36979
|
1679 |
floor_subtract_one ~> floor_diff_one
|
huffman@36979
|
1680 |
ceiling_number_of_eq ~> ceiling_number_of
|
huffman@36979
|
1681 |
ceiling_le_eq_number_of ~> ceiling_le_number_of
|
huffman@36979
|
1682 |
ceiling_le_zero_eq ~> ceiling_le_zero
|
huffman@36979
|
1683 |
ceiling_le_eq_one ~> ceiling_le_one
|
huffman@36979
|
1684 |
less_ceiling_eq_number_of ~> number_of_less_ceiling
|
huffman@36979
|
1685 |
less_ceiling_eq_zero ~> zero_less_ceiling
|
huffman@36979
|
1686 |
less_ceiling_eq_one ~> one_less_ceiling
|
huffman@36979
|
1687 |
ceiling_less_eq_number_of ~> ceiling_less_number_of
|
huffman@36979
|
1688 |
ceiling_less_eq_zero ~> ceiling_less_zero
|
huffman@36979
|
1689 |
ceiling_less_eq_one ~> ceiling_less_one
|
huffman@36979
|
1690 |
le_ceiling_eq_number_of ~> number_of_le_ceiling
|
huffman@36979
|
1691 |
le_ceiling_eq_zero ~> zero_le_ceiling
|
huffman@36979
|
1692 |
le_ceiling_eq_one ~> one_le_ceiling
|
huffman@36979
|
1693 |
ceiling_subtract_number_of ~> ceiling_diff_number_of
|
huffman@36979
|
1694 |
ceiling_subtract_one ~> ceiling_diff_one
|
huffman@36979
|
1695 |
|
wenzelm@37144
|
1696 |
* Theory "Finite_Set": various folding_XXX locales facilitate the
|
wenzelm@36857
|
1697 |
application of the various fold combinators on finite sets.
|
wenzelm@36857
|
1698 |
|
wenzelm@36857
|
1699 |
* Library theory "RBT" renamed to "RBT_Impl"; new library theory "RBT"
|
wenzelm@36857
|
1700 |
provides abstract red-black tree type which is backed by "RBT_Impl" as
|
wenzelm@36857
|
1701 |
implementation. INCOMPATIBILTY.
|
haftmann@36147
|
1702 |
|
huffman@36830
|
1703 |
* Theory Library/Coinductive_List has been removed -- superseded by
|
wenzelm@35763
|
1704 |
AFP/thys/Coinductive.
|
wenzelm@35763
|
1705 |
|
huffman@36829
|
1706 |
* Theory PReal, including the type "preal" and related operations, has
|
huffman@36829
|
1707 |
been removed. INCOMPATIBILITY.
|
huffman@36829
|
1708 |
|
wenzelm@37380
|
1709 |
* Real: new development using Cauchy Sequences.
|
wenzelm@37380
|
1710 |
|
wenzelm@37351
|
1711 |
* Split off theory "Big_Operators" containing setsum, setprod,
|
wenzelm@37351
|
1712 |
Inf_fin, Sup_fin, Min, Max from theory Finite_Set. INCOMPATIBILITY.
|
wenzelm@36857
|
1713 |
|
wenzelm@36857
|
1714 |
* Theory "Rational" renamed to "Rat", for consistency with "Nat",
|
wenzelm@36857
|
1715 |
"Int" etc. INCOMPATIBILITY.
|
wenzelm@36857
|
1716 |
|
wenzelm@37351
|
1717 |
* Constant Rat.normalize needs to be qualified. INCOMPATIBILITY.
|
wenzelm@37143
|
1718 |
|
wenzelm@36857
|
1719 |
* New set of rules "ac_simps" provides combined assoc / commute
|
wenzelm@36857
|
1720 |
rewrites for all interpretations of the appropriate generic locales.
|
wenzelm@36857
|
1721 |
|
wenzelm@36857
|
1722 |
* Renamed theory "OrderedGroup" to "Groups" and split theory
|
wenzelm@36857
|
1723 |
"Ring_and_Field" into theories "Rings" and "Fields"; for more
|
wenzelm@36857
|
1724 |
appropriate and more consistent names suitable for name prefixes
|
wenzelm@36857
|
1725 |
within the HOL theories. INCOMPATIBILITY.
|
haftmann@35050
|
1726 |
|
haftmann@35084
|
1727 |
* Some generic constants have been put to appropriate theories:
|
wenzelm@36857
|
1728 |
- less_eq, less: Orderings
|
wenzelm@36857
|
1729 |
- zero, one, plus, minus, uminus, times, abs, sgn: Groups
|
wenzelm@36857
|
1730 |
- inverse, divide: Rings
|
haftmann@35084
|
1731 |
INCOMPATIBILITY.
|
haftmann@35084
|
1732 |
|
wenzelm@36857
|
1733 |
* More consistent naming of type classes involving orderings (and
|
wenzelm@36857
|
1734 |
lattices):
|
haftmann@35027
|
1735 |
|
haftmann@35027
|
1736 |
lower_semilattice ~> semilattice_inf
|
haftmann@35027
|
1737 |
upper_semilattice ~> semilattice_sup
|
haftmann@35027
|
1738 |
|
haftmann@35027
|
1739 |
dense_linear_order ~> dense_linorder
|
haftmann@35027
|
1740 |
|
haftmann@35027
|
1741 |
pordered_ab_group_add ~> ordered_ab_group_add
|
haftmann@35027
|
1742 |
pordered_ab_group_add_abs ~> ordered_ab_group_add_abs
|
haftmann@35027
|
1743 |
pordered_ab_semigroup_add ~> ordered_ab_semigroup_add
|
haftmann@35027
|
1744 |
pordered_ab_semigroup_add_imp_le ~> ordered_ab_semigroup_add_imp_le
|
haftmann@35027
|
1745 |
pordered_cancel_ab_semigroup_add ~> ordered_cancel_ab_semigroup_add
|
haftmann@35027
|
1746 |
pordered_cancel_comm_semiring ~> ordered_cancel_comm_semiring
|
haftmann@35027
|
1747 |
pordered_cancel_semiring ~> ordered_cancel_semiring
|
haftmann@35027
|
1748 |
pordered_comm_monoid_add ~> ordered_comm_monoid_add
|
haftmann@35027
|
1749 |
pordered_comm_ring ~> ordered_comm_ring
|
haftmann@35027
|
1750 |
pordered_comm_semiring ~> ordered_comm_semiring
|
haftmann@35027
|
1751 |
pordered_ring ~> ordered_ring
|
haftmann@35027
|
1752 |
pordered_ring_abs ~> ordered_ring_abs
|
haftmann@35027
|
1753 |
pordered_semiring ~> ordered_semiring
|
haftmann@35027
|
1754 |
|
haftmann@35027
|
1755 |
ordered_ab_group_add ~> linordered_ab_group_add
|
haftmann@35027
|
1756 |
ordered_ab_semigroup_add ~> linordered_ab_semigroup_add
|
haftmann@35027
|
1757 |
ordered_cancel_ab_semigroup_add ~> linordered_cancel_ab_semigroup_add
|
haftmann@35027
|
1758 |
ordered_comm_semiring_strict ~> linordered_comm_semiring_strict
|
haftmann@35027
|
1759 |
ordered_field ~> linordered_field
|
haftmann@35027
|
1760 |
ordered_field_no_lb ~> linordered_field_no_lb
|
haftmann@35027
|
1761 |
ordered_field_no_ub ~> linordered_field_no_ub
|
haftmann@35027
|
1762 |
ordered_field_dense_linear_order ~> dense_linordered_field
|
haftmann@35027
|
1763 |
ordered_idom ~> linordered_idom
|
haftmann@35027
|
1764 |
ordered_ring ~> linordered_ring
|
haftmann@35027
|
1765 |
ordered_ring_le_cancel_factor ~> linordered_ring_le_cancel_factor
|
haftmann@35027
|
1766 |
ordered_ring_less_cancel_factor ~> linordered_ring_less_cancel_factor
|
haftmann@35027
|
1767 |
ordered_ring_strict ~> linordered_ring_strict
|
haftmann@35027
|
1768 |
ordered_semidom ~> linordered_semidom
|
haftmann@35027
|
1769 |
ordered_semiring ~> linordered_semiring
|
haftmann@35027
|
1770 |
ordered_semiring_1 ~> linordered_semiring_1
|
haftmann@35027
|
1771 |
ordered_semiring_1_strict ~> linordered_semiring_1_strict
|
haftmann@35027
|
1772 |
ordered_semiring_strict ~> linordered_semiring_strict
|
haftmann@35027
|
1773 |
|
wenzelm@36857
|
1774 |
The following slightly odd type classes have been moved to a
|
wenzelm@37351
|
1775 |
separate theory Library/Lattice_Algebras:
|
haftmann@35032
|
1776 |
|
haftmann@35032
|
1777 |
lordered_ab_group_add ~> lattice_ab_group_add
|
haftmann@35032
|
1778 |
lordered_ab_group_add_abs ~> lattice_ab_group_add_abs
|
haftmann@35032
|
1779 |
lordered_ab_group_add_meet ~> semilattice_inf_ab_group_add
|
haftmann@35032
|
1780 |
lordered_ab_group_add_join ~> semilattice_sup_ab_group_add
|
haftmann@35032
|
1781 |
lordered_ring ~> lattice_ring
|
haftmann@35032
|
1782 |
|
haftmann@35027
|
1783 |
INCOMPATIBILITY.
|
haftmann@35027
|
1784 |
|
haftmann@36416
|
1785 |
* Refined field classes:
|
wenzelm@36857
|
1786 |
- classes division_ring_inverse_zero, field_inverse_zero,
|
wenzelm@36857
|
1787 |
linordered_field_inverse_zero include rule inverse 0 = 0 --
|
wenzelm@36857
|
1788 |
subsumes former division_by_zero class;
|
wenzelm@36857
|
1789 |
- numerous lemmas have been ported from field to division_ring.
|
wenzelm@36857
|
1790 |
INCOMPATIBILITY.
|
haftmann@36416
|
1791 |
|
haftmann@36416
|
1792 |
* Refined algebra theorem collections:
|
wenzelm@36857
|
1793 |
- dropped theorem group group_simps, use algebra_simps instead;
|
wenzelm@36857
|
1794 |
- dropped theorem group ring_simps, use field_simps instead;
|
wenzelm@36857
|
1795 |
- proper theorem collection field_simps subsumes former theorem
|
wenzelm@36857
|
1796 |
groups field_eq_simps and field_simps;
|
wenzelm@36857
|
1797 |
- dropped lemma eq_minus_self_iff which is a duplicate for
|
wenzelm@36857
|
1798 |
equal_neg_zero.
|
wenzelm@36857
|
1799 |
INCOMPATIBILITY.
|
wenzelm@35009
|
1800 |
|
wenzelm@35009
|
1801 |
* Theory Finite_Set and List: some lemmas have been generalized from
|
wenzelm@34076
|
1802 |
sets to lattices:
|
wenzelm@34076
|
1803 |
|
haftmann@34007
|
1804 |
fun_left_comm_idem_inter ~> fun_left_comm_idem_inf
|
haftmann@34007
|
1805 |
fun_left_comm_idem_union ~> fun_left_comm_idem_sup
|
haftmann@34007
|
1806 |
inter_Inter_fold_inter ~> inf_Inf_fold_inf
|
haftmann@34007
|
1807 |
union_Union_fold_union ~> sup_Sup_fold_sup
|
haftmann@34007
|
1808 |
Inter_fold_inter ~> Inf_fold_inf
|
haftmann@34007
|
1809 |
Union_fold_union ~> Sup_fold_sup
|
haftmann@34007
|
1810 |
inter_INTER_fold_inter ~> inf_INFI_fold_inf
|
haftmann@34007
|
1811 |
union_UNION_fold_union ~> sup_SUPR_fold_sup
|
haftmann@34007
|
1812 |
INTER_fold_inter ~> INFI_fold_inf
|
haftmann@34007
|
1813 |
UNION_fold_union ~> SUPR_fold_sup
|
haftmann@34007
|
1814 |
|
wenzelm@44973
|
1815 |
* Theory "Complete_Lattice": lemmas top_def and bot_def have been
|
wenzelm@44973
|
1816 |
replaced by the more convenient lemmas Inf_empty and Sup_empty.
|
wenzelm@44973
|
1817 |
Dropped lemmas Inf_insert_simp and Sup_insert_simp, which are subsumed
|
wenzelm@44973
|
1818 |
by Inf_insert and Sup_insert. Lemmas Inf_UNIV and Sup_UNIV replace
|
wenzelm@44973
|
1819 |
former Inf_Univ and Sup_Univ. Lemmas inf_top_right and sup_bot_right
|
wenzelm@44973
|
1820 |
subsume inf_top and sup_bot respectively. INCOMPATIBILITY.
|
haftmann@36416
|
1821 |
|
wenzelm@36857
|
1822 |
* Reorganized theory Multiset: swapped notation of pointwise and
|
wenzelm@36857
|
1823 |
multiset order:
|
wenzelm@37351
|
1824 |
|
wenzelm@36857
|
1825 |
- pointwise ordering is instance of class order with standard syntax
|
wenzelm@36857
|
1826 |
<= and <;
|
wenzelm@36857
|
1827 |
- multiset ordering has syntax <=# and <#; partial order properties
|
wenzelm@36857
|
1828 |
are provided by means of interpretation with prefix
|
wenzelm@36857
|
1829 |
multiset_order;
|
wenzelm@36857
|
1830 |
- less duplication, less historical organization of sections,
|
wenzelm@36857
|
1831 |
conversion from associations lists to multisets, rudimentary code
|
wenzelm@36857
|
1832 |
generation;
|
wenzelm@36857
|
1833 |
- use insert_DiffM2 [symmetric] instead of elem_imp_eq_diff_union,
|
wenzelm@36857
|
1834 |
if needed.
|
wenzelm@37351
|
1835 |
|
nipkow@36903
|
1836 |
Renamed:
|
wenzelm@37351
|
1837 |
|
wenzelm@37351
|
1838 |
multiset_eq_conv_count_eq ~> multiset_ext_iff
|
wenzelm@37351
|
1839 |
multi_count_ext ~> multiset_ext
|
wenzelm@37351
|
1840 |
diff_union_inverse2 ~> diff_union_cancelR
|
wenzelm@37351
|
1841 |
|
wenzelm@36857
|
1842 |
INCOMPATIBILITY.
|
haftmann@36416
|
1843 |
|
nipkow@36903
|
1844 |
* Theory Permutation: replaced local "remove" by List.remove1.
|
nipkow@36903
|
1845 |
|
haftmann@36416
|
1846 |
* Code generation: ML and OCaml code is decorated with signatures.
|
haftmann@36416
|
1847 |
|
wenzelm@35009
|
1848 |
* Theory List: added transpose.
|
wenzelm@35009
|
1849 |
|
huffman@35810
|
1850 |
* Library/Nat_Bijection.thy is a collection of bijective functions
|
huffman@35810
|
1851 |
between nat and other types, which supersedes the older libraries
|
huffman@35810
|
1852 |
Library/Nat_Int_Bij.thy and HOLCF/NatIso.thy. INCOMPATIBILITY.
|
huffman@35810
|
1853 |
|
huffman@35810
|
1854 |
Constants:
|
huffman@35810
|
1855 |
Nat_Int_Bij.nat2_to_nat ~> prod_encode
|
huffman@35810
|
1856 |
Nat_Int_Bij.nat_to_nat2 ~> prod_decode
|
huffman@35810
|
1857 |
Nat_Int_Bij.int_to_nat_bij ~> int_encode
|
huffman@35810
|
1858 |
Nat_Int_Bij.nat_to_int_bij ~> int_decode
|
huffman@35810
|
1859 |
Countable.pair_encode ~> prod_encode
|
huffman@35810
|
1860 |
NatIso.prod2nat ~> prod_encode
|
huffman@35810
|
1861 |
NatIso.nat2prod ~> prod_decode
|
huffman@35810
|
1862 |
NatIso.sum2nat ~> sum_encode
|
huffman@35810
|
1863 |
NatIso.nat2sum ~> sum_decode
|
huffman@35810
|
1864 |
NatIso.list2nat ~> list_encode
|
huffman@35810
|
1865 |
NatIso.nat2list ~> list_decode
|
huffman@35810
|
1866 |
NatIso.set2nat ~> set_encode
|
huffman@35810
|
1867 |
NatIso.nat2set ~> set_decode
|
huffman@35810
|
1868 |
|
huffman@35810
|
1869 |
Lemmas:
|
huffman@35810
|
1870 |
Nat_Int_Bij.bij_nat_to_int_bij ~> bij_int_decode
|
huffman@35810
|
1871 |
Nat_Int_Bij.nat2_to_nat_inj ~> inj_prod_encode
|
huffman@35810
|
1872 |
Nat_Int_Bij.nat2_to_nat_surj ~> surj_prod_encode
|
huffman@35810
|
1873 |
Nat_Int_Bij.nat_to_nat2_inj ~> inj_prod_decode
|
huffman@35810
|
1874 |
Nat_Int_Bij.nat_to_nat2_surj ~> surj_prod_decode
|
huffman@35810
|
1875 |
Nat_Int_Bij.i2n_n2i_id ~> int_encode_inverse
|
huffman@35810
|
1876 |
Nat_Int_Bij.n2i_i2n_id ~> int_decode_inverse
|
huffman@35810
|
1877 |
Nat_Int_Bij.surj_nat_to_int_bij ~> surj_int_encode
|
huffman@35810
|
1878 |
Nat_Int_Bij.surj_int_to_nat_bij ~> surj_int_decode
|
huffman@35810
|
1879 |
Nat_Int_Bij.inj_nat_to_int_bij ~> inj_int_encode
|
huffman@35810
|
1880 |
Nat_Int_Bij.inj_int_to_nat_bij ~> inj_int_decode
|
huffman@35810
|
1881 |
Nat_Int_Bij.bij_nat_to_int_bij ~> bij_int_encode
|
huffman@35810
|
1882 |
Nat_Int_Bij.bij_int_to_nat_bij ~> bij_int_decode
|
huffman@35810
|
1883 |
|
blanchet@36929
|
1884 |
* Sledgehammer:
|
blanchet@36929
|
1885 |
- Renamed ATP commands:
|
blanchet@36929
|
1886 |
atp_info ~> sledgehammer running_atps
|
blanchet@36929
|
1887 |
atp_kill ~> sledgehammer kill_atps
|
blanchet@36929
|
1888 |
atp_messages ~> sledgehammer messages
|
blanchet@36929
|
1889 |
atp_minimize ~> sledgehammer minimize
|
blanchet@36929
|
1890 |
print_atps ~> sledgehammer available_atps
|
blanchet@36929
|
1891 |
INCOMPATIBILITY.
|
blanchet@36929
|
1892 |
- Added user's manual ("isabelle doc sledgehammer").
|
blanchet@36929
|
1893 |
- Added option syntax and "sledgehammer_params" to customize
|
blanchet@36929
|
1894 |
Sledgehammer's behavior. See the manual for details.
|
blanchet@36929
|
1895 |
- Modified the Isar proof reconstruction code so that it produces
|
blanchet@36929
|
1896 |
direct proofs rather than proofs by contradiction. (This feature
|
blanchet@36929
|
1897 |
is still experimental.)
|
blanchet@36929
|
1898 |
- Made Isar proof reconstruction work for SPASS, remote ATPs, and in
|
blanchet@36929
|
1899 |
full-typed mode.
|
blanchet@36929
|
1900 |
- Added support for TPTP syntax for SPASS via the "spass_tptp" ATP.
|
blanchet@36929
|
1901 |
|
blanchet@36928
|
1902 |
* Nitpick:
|
blanchet@36928
|
1903 |
- Added and implemented "binary_ints" and "bits" options.
|
blanchet@36928
|
1904 |
- Added "std" option and implemented support for nonstandard models.
|
blanchet@36928
|
1905 |
- Added and implemented "finitize" option to improve the precision
|
blanchet@36928
|
1906 |
of infinite datatypes based on a monotonicity analysis.
|
blanchet@36928
|
1907 |
- Added support for quotient types.
|
blanchet@36928
|
1908 |
- Added support for "specification" and "ax_specification"
|
blanchet@36928
|
1909 |
constructs.
|
blanchet@36928
|
1910 |
- Added support for local definitions (for "function" and
|
blanchet@36928
|
1911 |
"termination" proofs).
|
blanchet@36928
|
1912 |
- Added support for term postprocessors.
|
blanchet@36928
|
1913 |
- Optimized "Multiset.multiset" and "FinFun.finfun".
|
blanchet@36928
|
1914 |
- Improved efficiency of "destroy_constrs" optimization.
|
blanchet@36928
|
1915 |
- Fixed soundness bugs related to "destroy_constrs" optimization and
|
blanchet@36928
|
1916 |
record getters.
|
blanchet@37272
|
1917 |
- Fixed soundness bug related to higher-order constructors.
|
blanchet@37272
|
1918 |
- Fixed soundness bug when "full_descrs" is enabled.
|
blanchet@36928
|
1919 |
- Improved precision of set constructs.
|
blanchet@37260
|
1920 |
- Added "atoms" option.
|
blanchet@36928
|
1921 |
- Added cache to speed up repeated Kodkod invocations on the same
|
blanchet@36928
|
1922 |
problems.
|
blanchet@36928
|
1923 |
- Renamed "MiniSatJNI", "zChaffJNI", "BerkMinAlloy", and
|
blanchet@36928
|
1924 |
"SAT4JLight" to "MiniSat_JNI", "zChaff_JNI", "BerkMin_Alloy", and
|
blanchet@36928
|
1925 |
"SAT4J_Light". INCOMPATIBILITY.
|
blanchet@36928
|
1926 |
- Removed "skolemize", "uncurry", "sym_break", "flatten_prop",
|
blanchet@36928
|
1927 |
"sharing_depth", and "show_skolems" options. INCOMPATIBILITY.
|
blanchet@37264
|
1928 |
- Removed "nitpick_intro" attribute. INCOMPATIBILITY.
|
blanchet@36928
|
1929 |
|
berghofe@37361
|
1930 |
* Method "induct" now takes instantiations of the form t, where t is not
|
berghofe@37361
|
1931 |
a variable, as a shorthand for "x == t", where x is a fresh variable.
|
berghofe@37361
|
1932 |
If this is not intended, t has to be enclosed in parentheses.
|
berghofe@37361
|
1933 |
By default, the equalities generated by definitional instantiations
|
berghofe@37361
|
1934 |
are pre-simplified, which may cause parameters of inductive cases
|
berghofe@37361
|
1935 |
to disappear, or may even delete some of the inductive cases.
|
berghofe@37361
|
1936 |
Use "induct (no_simp)" instead of "induct" to restore the old
|
berghofe@37361
|
1937 |
behaviour. The (no_simp) option is also understood by the "cases"
|
berghofe@37361
|
1938 |
and "nominal_induct" methods, which now perform pre-simplification, too.
|
berghofe@37361
|
1939 |
INCOMPATIBILITY.
|
berghofe@37361
|
1940 |
|
haftmann@33993
|
1941 |
|
huffman@36828
|
1942 |
*** HOLCF ***
|
huffman@36828
|
1943 |
|
huffman@36828
|
1944 |
* Variable names in lemmas generated by the domain package have
|
huffman@36828
|
1945 |
changed; the naming scheme is now consistent with the HOL datatype
|
huffman@36828
|
1946 |
package. Some proof scripts may be affected, INCOMPATIBILITY.
|
huffman@36828
|
1947 |
|
huffman@36828
|
1948 |
* The domain package no longer defines the function "foo_copy" for
|
huffman@36828
|
1949 |
recursive domain "foo". The reach lemma is now stated directly in
|
huffman@36828
|
1950 |
terms of "foo_take". Lemmas and proofs that mention "foo_copy" must
|
huffman@36828
|
1951 |
be reformulated in terms of "foo_take", INCOMPATIBILITY.
|
huffman@36828
|
1952 |
|
huffman@36828
|
1953 |
* Most definedness lemmas generated by the domain package (previously
|
huffman@36828
|
1954 |
of the form "x ~= UU ==> foo$x ~= UU") now have an if-and-only-if form
|
huffman@36828
|
1955 |
like "foo$x = UU <-> x = UU", which works better as a simp rule.
|
wenzelm@37351
|
1956 |
Proofs that used definedness lemmas as intro rules may break,
|
huffman@36828
|
1957 |
potential INCOMPATIBILITY.
|
huffman@36828
|
1958 |
|
huffman@36828
|
1959 |
* Induction and casedist rules generated by the domain package now
|
huffman@36828
|
1960 |
declare proper case_names (one called "bottom", and one named for each
|
huffman@36828
|
1961 |
constructor). INCOMPATIBILITY.
|
huffman@36828
|
1962 |
|
huffman@36828
|
1963 |
* For mutually-recursive domains, separate "reach" and "take_lemma"
|
huffman@36828
|
1964 |
rules are generated for each domain, INCOMPATIBILITY.
|
huffman@36828
|
1965 |
|
huffman@36828
|
1966 |
foo_bar.reach ~> foo.reach bar.reach
|
huffman@36828
|
1967 |
foo_bar.take_lemmas ~> foo.take_lemma bar.take_lemma
|
huffman@36828
|
1968 |
|
huffman@36828
|
1969 |
* Some lemmas generated by the domain package have been renamed for
|
huffman@36828
|
1970 |
consistency with the datatype package, INCOMPATIBILITY.
|
huffman@36828
|
1971 |
|
huffman@36828
|
1972 |
foo.ind ~> foo.induct
|
huffman@36828
|
1973 |
foo.finite_ind ~> foo.finite_induct
|
huffman@36828
|
1974 |
foo.coind ~> foo.coinduct
|
huffman@36828
|
1975 |
foo.casedist ~> foo.exhaust
|
huffman@36828
|
1976 |
foo.exhaust ~> foo.nchotomy
|
huffman@36828
|
1977 |
|
huffman@36828
|
1978 |
* For consistency with other definition packages, the fixrec package
|
huffman@36828
|
1979 |
now generates qualified theorem names, INCOMPATIBILITY.
|
huffman@36828
|
1980 |
|
huffman@36828
|
1981 |
foo_simps ~> foo.simps
|
huffman@36828
|
1982 |
foo_unfold ~> foo.unfold
|
huffman@36828
|
1983 |
foo_induct ~> foo.induct
|
huffman@36828
|
1984 |
|
huffman@37087
|
1985 |
* The "fixrec_simp" attribute has been removed. The "fixrec_simp"
|
huffman@37087
|
1986 |
method and internal fixrec proofs now use the default simpset instead.
|
huffman@37087
|
1987 |
INCOMPATIBILITY.
|
huffman@37087
|
1988 |
|
huffman@36828
|
1989 |
* The "contlub" predicate has been removed. Proof scripts should use
|
huffman@36828
|
1990 |
lemma contI2 in place of monocontlub2cont, INCOMPATIBILITY.
|
huffman@36828
|
1991 |
|
huffman@36828
|
1992 |
* The "admw" predicate has been removed, INCOMPATIBILITY.
|
huffman@36828
|
1993 |
|
huffman@36828
|
1994 |
* The constants cpair, cfst, and csnd have been removed in favor of
|
huffman@36828
|
1995 |
Pair, fst, and snd from Isabelle/HOL, INCOMPATIBILITY.
|
huffman@36828
|
1996 |
|
huffman@36828
|
1997 |
|
haftmann@33993
|
1998 |
*** ML ***
|
haftmann@33993
|
1999 |
|
wenzelm@37351
|
2000 |
* Antiquotations for basic formal entities:
|
wenzelm@37351
|
2001 |
|
wenzelm@37351
|
2002 |
@{class NAME} -- type class
|
wenzelm@37351
|
2003 |
@{class_syntax NAME} -- syntax representation of the above
|
wenzelm@37351
|
2004 |
|
wenzelm@37351
|
2005 |
@{type_name NAME} -- logical type
|
wenzelm@37351
|
2006 |
@{type_abbrev NAME} -- type abbreviation
|
wenzelm@37351
|
2007 |
@{nonterminal NAME} -- type of concrete syntactic category
|
wenzelm@37351
|
2008 |
@{type_syntax NAME} -- syntax representation of any of the above
|
wenzelm@37351
|
2009 |
|
wenzelm@37351
|
2010 |
@{const_name NAME} -- logical constant (INCOMPATIBILITY)
|
wenzelm@37351
|
2011 |
@{const_abbrev NAME} -- abbreviated constant
|
wenzelm@37351
|
2012 |
@{const_syntax NAME} -- syntax representation of any of the above
|
wenzelm@37351
|
2013 |
|
wenzelm@37351
|
2014 |
* Antiquotation @{syntax_const NAME} ensures that NAME refers to a raw
|
wenzelm@37351
|
2015 |
syntax constant (cf. 'syntax' command).
|
wenzelm@37351
|
2016 |
|
wenzelm@37351
|
2017 |
* Antiquotation @{make_string} inlines a function to print arbitrary
|
wenzelm@37351
|
2018 |
values similar to the ML toplevel. The result is compiler dependent
|
wenzelm@37351
|
2019 |
and may fall back on "?" in certain situations.
|
wenzelm@37351
|
2020 |
|
wenzelm@37351
|
2021 |
* Diagnostic commands 'ML_val' and 'ML_command' may refer to
|
wenzelm@37351
|
2022 |
antiquotations @{Isar.state} and @{Isar.goal}. This replaces impure
|
wenzelm@37351
|
2023 |
Isar.state() and Isar.goal(), which belong to the old TTY loop and do
|
wenzelm@37351
|
2024 |
not work with the asynchronous Isar document model.
|
wenzelm@37351
|
2025 |
|
wenzelm@37351
|
2026 |
* Configuration options now admit dynamic default values, depending on
|
wenzelm@37351
|
2027 |
the context or even global references.
|
wenzelm@37351
|
2028 |
|
wenzelm@37351
|
2029 |
* SHA1.digest digests strings according to SHA-1 (see RFC 3174). It
|
wenzelm@37351
|
2030 |
uses an efficient external library if available (for Poly/ML).
|
wenzelm@37351
|
2031 |
|
wenzelm@37144
|
2032 |
* Renamed some important ML structures, while keeping the old names
|
wenzelm@37144
|
2033 |
for some time as aliases within the structure Legacy:
|
wenzelm@37144
|
2034 |
|
wenzelm@37144
|
2035 |
OuterKeyword ~> Keyword
|
wenzelm@37144
|
2036 |
OuterLex ~> Token
|
wenzelm@37144
|
2037 |
OuterParse ~> Parse
|
wenzelm@37144
|
2038 |
OuterSyntax ~> Outer_Syntax
|
wenzelm@37216
|
2039 |
PrintMode ~> Print_Mode
|
wenzelm@37144
|
2040 |
SpecParse ~> Parse_Spec
|
wenzelm@37216
|
2041 |
ThyInfo ~> Thy_Info
|
wenzelm@37216
|
2042 |
ThyLoad ~> Thy_Load
|
wenzelm@37216
|
2043 |
ThyOutput ~> Thy_Output
|
wenzelm@37145
|
2044 |
TypeInfer ~> Type_Infer
|
wenzelm@37144
|
2045 |
|
wenzelm@37144
|
2046 |
Note that "open Legacy" simplifies porting of sources, but forgetting
|
wenzelm@37144
|
2047 |
to remove it again will complicate porting again in the future.
|
wenzelm@37144
|
2048 |
|
wenzelm@37144
|
2049 |
* Most operations that refer to a global context are named
|
wenzelm@37144
|
2050 |
accordingly, e.g. Simplifier.global_context or
|
wenzelm@37144
|
2051 |
ProofContext.init_global. There are some situations where a global
|
wenzelm@37144
|
2052 |
context actually works, but under normal circumstances one needs to
|
wenzelm@37144
|
2053 |
pass the proper local context through the code!
|
wenzelm@37144
|
2054 |
|
wenzelm@37144
|
2055 |
* Discontinued old TheoryDataFun with its copy/init operation -- data
|
wenzelm@37144
|
2056 |
needs to be pure. Functor Theory_Data_PP retains the traditional
|
wenzelm@37144
|
2057 |
Pretty.pp argument to merge, which is absent in the standard
|
wenzelm@37144
|
2058 |
Theory_Data version.
|
wenzelm@36429
|
2059 |
|
wenzelm@37144
|
2060 |
* Sorts.certify_sort and derived "cert" operations for types and terms
|
wenzelm@37144
|
2061 |
no longer minimize sorts. Thus certification at the boundary of the
|
wenzelm@37144
|
2062 |
inference kernel becomes invariant under addition of class relations,
|
wenzelm@37144
|
2063 |
which is an important monotonicity principle. Sorts are now minimized
|
wenzelm@37144
|
2064 |
in the syntax layer only, at the boundary between the end-user and the
|
wenzelm@37144
|
2065 |
system. Subtle INCOMPATIBILITY, may have to use Sign.minimize_sort
|
wenzelm@37144
|
2066 |
explicitly in rare situations.
|
wenzelm@37144
|
2067 |
|
wenzelm@35021
|
2068 |
* Renamed old-style Drule.standard to Drule.export_without_context, to
|
wenzelm@35021
|
2069 |
emphasize that this is in no way a standard operation.
|
wenzelm@35021
|
2070 |
INCOMPATIBILITY.
|
wenzelm@35021
|
2071 |
|
wenzelm@34076
|
2072 |
* Subgoal.FOCUS (and variants): resulting goal state is normalized as
|
wenzelm@34076
|
2073 |
usual for resolution. Rare INCOMPATIBILITY.
|
wenzelm@34076
|
2074 |
|
wenzelm@35845
|
2075 |
* Renamed varify/unvarify operations to varify_global/unvarify_global
|
wenzelm@35845
|
2076 |
to emphasize that these only work in a global situation (which is
|
wenzelm@35845
|
2077 |
quite rare).
|
wenzelm@35845
|
2078 |
|
wenzelm@37144
|
2079 |
* Curried take and drop in library.ML; negative length is interpreted
|
wenzelm@37144
|
2080 |
as infinity (as in chop). Subtle INCOMPATIBILITY.
|
wenzelm@36961
|
2081 |
|
wenzelm@37351
|
2082 |
* Proof terms: type substitutions on proof constants now use canonical
|
wenzelm@37351
|
2083 |
order of type variables. INCOMPATIBILITY for tools working with proof
|
wenzelm@37351
|
2084 |
terms.
|
wenzelm@37351
|
2085 |
|
wenzelm@37351
|
2086 |
* Raw axioms/defs may no longer carry sort constraints, and raw defs
|
wenzelm@37351
|
2087 |
may no longer carry premises. User-level specifications are
|
wenzelm@37351
|
2088 |
transformed accordingly by Thm.add_axiom/add_def.
|
wenzelm@37351
|
2089 |
|
haftmann@33993
|
2090 |
|
wenzelm@34238
|
2091 |
*** System ***
|
wenzelm@34238
|
2092 |
|
wenzelm@34238
|
2093 |
* Discontinued special HOL_USEDIR_OPTIONS for the main HOL image;
|
wenzelm@34238
|
2094 |
ISABELLE_USEDIR_OPTIONS applies uniformly to all sessions. Note that
|
wenzelm@34238
|
2095 |
proof terms are enabled unconditionally in the new HOL-Proofs image.
|
wenzelm@34238
|
2096 |
|
wenzelm@34255
|
2097 |
* Discontinued old ISABELLE and ISATOOL environment settings (legacy
|
wenzelm@34255
|
2098 |
feature since Isabelle2009). Use ISABELLE_PROCESS and ISABELLE_TOOL,
|
wenzelm@34255
|
2099 |
respectively.
|
wenzelm@34255
|
2100 |
|
wenzelm@36201
|
2101 |
* Old lib/scripts/polyml-platform is superseded by the
|
wenzelm@36201
|
2102 |
ISABELLE_PLATFORM setting variable, which defaults to the 32 bit
|
wenzelm@36201
|
2103 |
variant, even on a 64 bit machine. The following example setting
|
wenzelm@36201
|
2104 |
prefers 64 bit if available:
|
wenzelm@36201
|
2105 |
|
wenzelm@36201
|
2106 |
ML_PLATFORM="${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM}"
|
wenzelm@36201
|
2107 |
|
wenzelm@37218
|
2108 |
* The preliminary Isabelle/jEdit application demonstrates the emerging
|
wenzelm@37218
|
2109 |
Isabelle/Scala layer for advanced prover interaction and integration.
|
wenzelm@37218
|
2110 |
See src/Tools/jEdit or "isabelle jedit" provided by the properly built
|
wenzelm@37218
|
2111 |
component.
|
wenzelm@37218
|
2112 |
|
wenzelm@37375
|
2113 |
* "IsabelleText" is a Unicode font derived from Bitstream Vera Mono
|
wenzelm@37375
|
2114 |
and Bluesky TeX fonts. It provides the usual Isabelle symbols,
|
wenzelm@37375
|
2115 |
similar to the default assignment of the document preparation system
|
wenzelm@37375
|
2116 |
(cf. isabellesym.sty). The Isabelle/Scala class Isabelle_System
|
wenzelm@37375
|
2117 |
provides some operations for direct access to the font without asking
|
wenzelm@37375
|
2118 |
the user for manual installation.
|
wenzelm@37375
|
2119 |
|
wenzelm@34238
|
2120 |
|
haftmann@33993
|
2121 |
|
wenzelm@33842
|
2122 |
New in Isabelle2009-1 (December 2009)
|
wenzelm@33842
|
2123 |
-------------------------------------
|
wenzelm@30904
|
2124 |
|
wenzelm@31547
|
2125 |
*** General ***
|
wenzelm@31547
|
2126 |
|
wenzelm@31547
|
2127 |
* Discontinued old form of "escaped symbols" such as \\<forall>. Only
|
wenzelm@31547
|
2128 |
one backslash should be used, even in ML sources.
|
wenzelm@31547
|
2129 |
|
wenzelm@31547
|
2130 |
|
haftmann@30951
|
2131 |
*** Pure ***
|
haftmann@30951
|
2132 |
|
ballarin@32846
|
2133 |
* Locale interpretation propagates mixins along the locale hierarchy.
|
ballarin@32846
|
2134 |
The currently only available mixins are the equations used to map
|
ballarin@32846
|
2135 |
local definitions to terms of the target domain of an interpretation.
|
ballarin@32846
|
2136 |
|
wenzelm@33842
|
2137 |
* Reactivated diagnostic command 'print_interps'. Use "print_interps
|
wenzelm@33842
|
2138 |
loc" to print all interpretations of locale "loc" in the theory.
|
wenzelm@33842
|
2139 |
Interpretations in proofs are not shown.
|
ballarin@32846
|
2140 |
|
ballarin@32983
|
2141 |
* Thoroughly revised locales tutorial. New section on conditional
|
ballarin@32983
|
2142 |
interpretation.
|
ballarin@32983
|
2143 |
|
wenzelm@33843
|
2144 |
* On instantiation of classes, remaining undefined class parameters
|
wenzelm@33843
|
2145 |
are formally declared. INCOMPATIBILITY.
|
wenzelm@33843
|
2146 |
|
haftmann@30951
|
2147 |
|
wenzelm@33842
|
2148 |
*** Document preparation ***
|
wenzelm@33842
|
2149 |
|
wenzelm@33842
|
2150 |
* New generalized style concept for printing terms: @{foo (style) ...}
|
wenzelm@33842
|
2151 |
instead of @{foo_style style ...} (old form is still retained for
|
wenzelm@33842
|
2152 |
backward compatibility). Styles can be also applied for
|
wenzelm@33842
|
2153 |
antiquotations prop, term_type and typeof.
|
haftmann@32891
|
2154 |
|
haftmann@32891
|
2155 |
|
haftmann@30930
|
2156 |
*** HOL ***
|
haftmann@30930
|
2157 |
|
wenzelm@33842
|
2158 |
* New proof method "smt" for a combination of first-order logic with
|
wenzelm@33842
|
2159 |
equality, linear and nonlinear (natural/integer/real) arithmetic, and
|
wenzelm@33842
|
2160 |
fixed-size bitvectors; there is also basic support for higher-order
|
wenzelm@33842
|
2161 |
features (esp. lambda abstractions). It is an incomplete decision
|
wenzelm@33842
|
2162 |
procedure based on external SMT solvers using the oracle mechanism;
|
wenzelm@33842
|
2163 |
for the SMT solver Z3, this method is proof-producing. Certificates
|
wenzelm@33842
|
2164 |
are provided to avoid calling the external solvers solely for
|
wenzelm@33842
|
2165 |
re-checking proofs. Due to a remote SMT service there is no need for
|
wenzelm@33842
|
2166 |
installing SMT solvers locally. See src/HOL/SMT.
|
wenzelm@33842
|
2167 |
|
wenzelm@33842
|
2168 |
* New commands to load and prove verification conditions generated by
|
wenzelm@33842
|
2169 |
the Boogie program verifier or derived systems (e.g. the Verifying C
|
wenzelm@33842
|
2170 |
Compiler (VCC) or Spec#). See src/HOL/Boogie.
|
wenzelm@33842
|
2171 |
|
wenzelm@33842
|
2172 |
* New counterexample generator tool 'nitpick' based on the Kodkod
|
wenzelm@33842
|
2173 |
relational model finder. See src/HOL/Tools/Nitpick and
|
wenzelm@33842
|
2174 |
src/HOL/Nitpick_Examples.
|
wenzelm@33842
|
2175 |
|
haftmann@33860
|
2176 |
* New commands 'code_pred' and 'values' to invoke the predicate
|
haftmann@33860
|
2177 |
compiler and to enumerate values of inductive predicates.
|
haftmann@33860
|
2178 |
|
haftmann@33860
|
2179 |
* A tabled implementation of the reflexive transitive closure.
|
haftmann@33860
|
2180 |
|
haftmann@33860
|
2181 |
* New implementation of quickcheck uses generic code generator;
|
haftmann@33860
|
2182 |
default generators are provided for all suitable HOL types, records
|
haftmann@33860
|
2183 |
and datatypes. Old quickcheck can be re-activated importing theory
|
haftmann@33860
|
2184 |
Library/SML_Quickcheck.
|
haftmann@33860
|
2185 |
|
wenzelm@33843
|
2186 |
* New testing tool Mirabelle for automated proof tools. Applies
|
wenzelm@33843
|
2187 |
several tools and tactics like sledgehammer, metis, or quickcheck, to
|
wenzelm@33843
|
2188 |
every proof step in a theory. To be used in batch mode via the
|
wenzelm@33843
|
2189 |
"mirabelle" utility.
|
wenzelm@33843
|
2190 |
|
wenzelm@33843
|
2191 |
* New proof method "sos" (sum of squares) for nonlinear real
|
wenzelm@33843
|
2192 |
arithmetic (originally due to John Harison). It requires theory
|
wenzelm@33843
|
2193 |
Library/Sum_Of_Squares. It is not a complete decision procedure but
|
wenzelm@33843
|
2194 |
works well in practice on quantifier-free real arithmetic with +, -,
|
wenzelm@33843
|
2195 |
*, ^, =, <= and <, i.e. boolean combinations of equalities and
|
wenzelm@33843
|
2196 |
inequalities between polynomials. It makes use of external
|
wenzelm@33843
|
2197 |
semidefinite programming solvers. Method "sos" generates a
|
wenzelm@33843
|
2198 |
certificate that can be pasted into the proof thus avoiding the need
|
wenzelm@33843
|
2199 |
to call an external tool every time the proof is checked. See
|
wenzelm@33843
|
2200 |
src/HOL/Library/Sum_Of_Squares.
|
wenzelm@33843
|
2201 |
|
wenzelm@33843
|
2202 |
* New method "linarith" invokes existing linear arithmetic decision
|
wenzelm@33843
|
2203 |
procedure only.
|
wenzelm@33843
|
2204 |
|
wenzelm@33843
|
2205 |
* New command 'atp_minimal' reduces result produced by Sledgehammer.
|
wenzelm@33843
|
2206 |
|
wenzelm@33843
|
2207 |
* New Sledgehammer option "Full Types" in Proof General settings menu.
|
wenzelm@33843
|
2208 |
Causes full type information to be output to the ATPs. This slows
|
wenzelm@33843
|
2209 |
ATPs down considerably but eliminates a source of unsound "proofs"
|
wenzelm@33843
|
2210 |
that fail later.
|
wenzelm@33843
|
2211 |
|
wenzelm@33843
|
2212 |
* New method "metisFT": A version of metis that uses full type
|
wenzelm@33843
|
2213 |
information in order to avoid failures of proof reconstruction.
|
wenzelm@33843
|
2214 |
|
wenzelm@33843
|
2215 |
* New evaluator "approximate" approximates an real valued term using
|
wenzelm@33843
|
2216 |
the same method as the approximation method.
|
wenzelm@33843
|
2217 |
|
wenzelm@33843
|
2218 |
* Method "approximate" now supports arithmetic expressions as
|
wenzelm@33843
|
2219 |
boundaries of intervals and implements interval splitting and Taylor
|
wenzelm@33843
|
2220 |
series expansion.
|
wenzelm@33843
|
2221 |
|
wenzelm@33843
|
2222 |
* ML antiquotation @{code_datatype} inserts definition of a datatype
|
wenzelm@33843
|
2223 |
generated by the code generator; e.g. see src/HOL/Predicate.thy.
|
wenzelm@33843
|
2224 |
|
haftmann@33860
|
2225 |
* New theory SupInf of the supremum and infimum operators for sets of
|
haftmann@33860
|
2226 |
reals.
|
haftmann@33860
|
2227 |
|
haftmann@33860
|
2228 |
* New theory Probability, which contains a development of measure
|
haftmann@33860
|
2229 |
theory, eventually leading to Lebesgue integration and probability.
|
haftmann@33860
|
2230 |
|
haftmann@33860
|
2231 |
* Extended Multivariate Analysis to include derivation and Brouwer's
|
haftmann@33860
|
2232 |
fixpoint theorem.
|
wenzelm@33843
|
2233 |
|
wenzelm@33842
|
2234 |
* Reorganization of number theory, INCOMPATIBILITY:
|
wenzelm@33873
|
2235 |
- new number theory development for nat and int, in theories Divides
|
wenzelm@33873
|
2236 |
and GCD as well as in new session Number_Theory
|
wenzelm@33873
|
2237 |
- some constants and facts now suffixed with _nat and _int
|
wenzelm@33873
|
2238 |
accordingly
|
wenzelm@33873
|
2239 |
- former session NumberTheory now named Old_Number_Theory, including
|
wenzelm@33873
|
2240 |
theories Legacy_GCD and Primes (prefer Number_Theory if possible)
|
wenzelm@33842
|
2241 |
- moved theory Pocklington from src/HOL/Library to
|
wenzelm@33842
|
2242 |
src/HOL/Old_Number_Theory
|
haftmann@32479
|
2243 |
|
wenzelm@33873
|
2244 |
* Theory GCD includes functions Gcd/GCD and Lcm/LCM for the gcd and
|
wenzelm@33873
|
2245 |
lcm of finite and infinite sets. It is shown that they form a complete
|
haftmann@32600
|
2246 |
lattice.
|
haftmann@32600
|
2247 |
|
haftmann@32600
|
2248 |
* Class semiring_div requires superclass no_zero_divisors and proof of
|
haftmann@32600
|
2249 |
div_mult_mult1; theorems div_mult_mult1, div_mult_mult2,
|
haftmann@32600
|
2250 |
div_mult_mult1_if, div_mult_mult1 and div_mult_mult2 have been
|
haftmann@32600
|
2251 |
generalized to class semiring_div, subsuming former theorems
|
haftmann@32600
|
2252 |
zdiv_zmult_zmult1, zdiv_zmult_zmult1_if, zdiv_zmult_zmult1 and
|
haftmann@32600
|
2253 |
zdiv_zmult_zmult2. div_mult_mult1 is now [simp] by default.
|
haftmann@32600
|
2254 |
INCOMPATIBILITY.
|
haftmann@32600
|
2255 |
|
haftmann@32588
|
2256 |
* Refinements to lattice classes and sets:
|
haftmann@32064
|
2257 |
- less default intro/elim rules in locale variant, more default
|
haftmann@32064
|
2258 |
intro/elim rules in class variant: more uniformity
|
wenzelm@33842
|
2259 |
- lemma ge_sup_conv renamed to le_sup_iff, in accordance with
|
wenzelm@33842
|
2260 |
le_inf_iff
|
wenzelm@33842
|
2261 |
- dropped lemma alias inf_ACI for inf_aci (same for sup_ACI and
|
wenzelm@33842
|
2262 |
sup_aci)
|
haftmann@32064
|
2263 |
- renamed ACI to inf_sup_aci
|
haftmann@32600
|
2264 |
- new class "boolean_algebra"
|
wenzelm@33842
|
2265 |
- class "complete_lattice" moved to separate theory
|
haftmann@33860
|
2266 |
"Complete_Lattice"; corresponding constants (and abbreviations)
|
wenzelm@33842
|
2267 |
renamed and with authentic syntax:
|
haftmann@33860
|
2268 |
Set.Inf ~> Complete_Lattice.Inf
|
haftmann@33860
|
2269 |
Set.Sup ~> Complete_Lattice.Sup
|
haftmann@33860
|
2270 |
Set.INFI ~> Complete_Lattice.INFI
|
haftmann@33860
|
2271 |
Set.SUPR ~> Complete_Lattice.SUPR
|
haftmann@33860
|
2272 |
Set.Inter ~> Complete_Lattice.Inter
|
haftmann@33860
|
2273 |
Set.Union ~> Complete_Lattice.Union
|
haftmann@33860
|
2274 |
Set.INTER ~> Complete_Lattice.INTER
|
haftmann@33860
|
2275 |
Set.UNION ~> Complete_Lattice.UNION
|
haftmann@32600
|
2276 |
- authentic syntax for
|
haftmann@32600
|
2277 |
Set.Pow
|
haftmann@32600
|
2278 |
Set.image
|
haftmann@32588
|
2279 |
- mere abbreviations:
|
haftmann@32588
|
2280 |
Set.empty (for bot)
|
haftmann@32588
|
2281 |
Set.UNIV (for top)
|
haftmann@33860
|
2282 |
Set.inter (for inf, formerly Set.Int)
|
haftmann@33860
|
2283 |
Set.union (for sup, formerly Set.Un)
|
haftmann@32588
|
2284 |
Complete_Lattice.Inter (for Inf)
|
haftmann@32588
|
2285 |
Complete_Lattice.Union (for Sup)
|
haftmann@32606
|
2286 |
Complete_Lattice.INTER (for INFI)
|
haftmann@32606
|
2287 |
Complete_Lattice.UNION (for SUPR)
|
haftmann@32600
|
2288 |
- object-logic definitions as far as appropriate
|
haftmann@32217
|
2289 |
|
haftmann@32691
|
2290 |
INCOMPATIBILITY. Care is required when theorems Int_subset_iff or
|
wenzelm@33842
|
2291 |
Un_subset_iff are explicitly deleted as default simp rules; then also
|
wenzelm@33842
|
2292 |
their lattice counterparts le_inf_iff and le_sup_iff have to be
|
haftmann@32691
|
2293 |
deleted to achieve the desired effect.
|
haftmann@32064
|
2294 |
|
wenzelm@33842
|
2295 |
* Rules inf_absorb1, inf_absorb2, sup_absorb1, sup_absorb2 are no simp
|
wenzelm@33842
|
2296 |
rules by default any longer; the same applies to min_max.inf_absorb1
|
wenzelm@33842
|
2297 |
etc. INCOMPATIBILITY.
|
wenzelm@33842
|
2298 |
|
wenzelm@33842
|
2299 |
* Rules sup_Int_eq and sup_Un_eq are no longer declared as
|
wenzelm@33842
|
2300 |
pred_set_conv by default. INCOMPATIBILITY.
|
wenzelm@33842
|
2301 |
|
wenzelm@33842
|
2302 |
* Power operations on relations and functions are now one dedicated
|
haftmann@32706
|
2303 |
constant "compow" with infix syntax "^^". Power operation on
|
wenzelm@31547
|
2304 |
multiplicative monoids retains syntax "^" and is now defined generic
|
wenzelm@31547
|
2305 |
in class power. INCOMPATIBILITY.
|
wenzelm@31547
|
2306 |
|
wenzelm@33842
|
2307 |
* Relation composition "R O S" now has a more standard argument order:
|
wenzelm@33842
|
2308 |
"R O S = {(x, z). EX y. (x, y) : R & (y, z) : S}". INCOMPATIBILITY,
|
wenzelm@33842
|
2309 |
rewrite propositions with "S O R" --> "R O S". Proofs may occasionally
|
wenzelm@33842
|
2310 |
break, since the O_assoc rule was not rewritten like this. Fix using
|
wenzelm@33842
|
2311 |
O_assoc[symmetric]. The same applies to the curried version "R OO S".
|
wenzelm@32427
|
2312 |
|
nipkow@33057
|
2313 |
* Function "Inv" is renamed to "inv_into" and function "inv" is now an
|
wenzelm@33842
|
2314 |
abbreviation for "inv_into UNIV". Lemmas are renamed accordingly.
|
nipkow@32988
|
2315 |
INCOMPATIBILITY.
|
nipkow@32988
|
2316 |
|
haftmann@33860
|
2317 |
* Most rules produced by inductive and datatype package have mandatory
|
haftmann@33860
|
2318 |
prefixes. INCOMPATIBILITY.
|
nipkow@31790
|
2319 |
|
wenzelm@33842
|
2320 |
* Changed "DERIV_intros" to a dynamic fact, which can be augmented by
|
wenzelm@33842
|
2321 |
the attribute of the same name. Each of the theorems in the list
|
wenzelm@33842
|
2322 |
DERIV_intros assumes composition with an additional function and
|
wenzelm@33842
|
2323 |
matches a variable to the derivative, which has to be solved by the
|
wenzelm@33842
|
2324 |
Simplifier. Hence (auto intro!: DERIV_intros) computes the derivative
|
wenzelm@33873
|
2325 |
of most elementary terms. Former Maclauren.DERIV_tac and
|
wenzelm@33873
|
2326 |
Maclauren.deriv_tac should be replaced by (auto intro!: DERIV_intros).
|
wenzelm@33873
|
2327 |
INCOMPATIBILITY.
|
haftmann@33860
|
2328 |
|
haftmann@33860
|
2329 |
* Code generator attributes follow the usual underscore convention:
|
haftmann@33860
|
2330 |
code_unfold replaces code unfold
|
haftmann@33860
|
2331 |
code_post replaces code post
|
haftmann@33860
|
2332 |
etc.
|
haftmann@33860
|
2333 |
INCOMPATIBILITY.
|
wenzelm@31900
|
2334 |
|
krauss@33471
|
2335 |
* Renamed methods:
|
krauss@33471
|
2336 |
sizechange -> size_change
|
krauss@33471
|
2337 |
induct_scheme -> induction_schema
|
haftmann@33860
|
2338 |
INCOMPATIBILITY.
|
nipkow@33673
|
2339 |
|
wenzelm@33843
|
2340 |
* Discontinued abbreviation "arbitrary" of constant "undefined".
|
wenzelm@33843
|
2341 |
INCOMPATIBILITY, use "undefined" directly.
|
wenzelm@33843
|
2342 |
|
haftmann@33860
|
2343 |
* Renamed theorems:
|
haftmann@33860
|
2344 |
Suc_eq_add_numeral_1 -> Suc_eq_plus1
|
haftmann@33860
|
2345 |
Suc_eq_add_numeral_1_left -> Suc_eq_plus1_left
|
haftmann@33860
|
2346 |
Suc_plus1 -> Suc_eq_plus1
|
haftmann@33860
|
2347 |
*anti_sym -> *antisym*
|
haftmann@33860
|
2348 |
vector_less_eq_def -> vector_le_def
|
haftmann@33860
|
2349 |
INCOMPATIBILITY.
|
haftmann@33860
|
2350 |
|
haftmann@33860
|
2351 |
* Added theorem List.map_map as [simp]. Removed List.map_compose.
|
haftmann@33860
|
2352 |
INCOMPATIBILITY.
|
haftmann@33860
|
2353 |
|
haftmann@33860
|
2354 |
* Removed predicate "M hassize n" (<--> card M = n & finite M).
|
haftmann@33860
|
2355 |
INCOMPATIBILITY.
|
haftmann@33860
|
2356 |
|
hoelzl@31812
|
2357 |
|
huffman@33825
|
2358 |
*** HOLCF ***
|
huffman@33825
|
2359 |
|
wenzelm@33842
|
2360 |
* Theory Representable defines a class "rep" of domains that are
|
wenzelm@33842
|
2361 |
representable (via an ep-pair) in the universal domain type "udom".
|
huffman@33825
|
2362 |
Instances are provided for all type constructors defined in HOLCF.
|
huffman@33825
|
2363 |
|
huffman@33825
|
2364 |
* The 'new_domain' command is a purely definitional version of the
|
huffman@33825
|
2365 |
domain package, for representable domains. Syntax is identical to the
|
huffman@33825
|
2366 |
old domain package. The 'new_domain' package also supports indirect
|
huffman@33825
|
2367 |
recursion using previously-defined type constructors. See
|
wenzelm@33842
|
2368 |
src/HOLCF/ex/New_Domain.thy for examples.
|
wenzelm@33842
|
2369 |
|
wenzelm@33842
|
2370 |
* Method "fixrec_simp" unfolds one step of a fixrec-defined constant
|
huffman@33825
|
2371 |
on the left-hand side of an equation, and then performs
|
huffman@33825
|
2372 |
simplification. Rewriting is done using rules declared with the
|
wenzelm@33842
|
2373 |
"fixrec_simp" attribute. The "fixrec_simp" method is intended as a
|
wenzelm@33842
|
2374 |
replacement for "fixpat"; see src/HOLCF/ex/Fixrec_ex.thy for examples.
|
huffman@33825
|
2375 |
|
huffman@33825
|
2376 |
* The pattern-match compiler in 'fixrec' can now handle constructors
|
huffman@33825
|
2377 |
with HOL function types. Pattern-match combinators for the Pair
|
huffman@33825
|
2378 |
constructor are pre-configured.
|
huffman@33825
|
2379 |
|
huffman@33825
|
2380 |
* The 'fixrec' package now produces better fixed-point induction rules
|
huffman@33825
|
2381 |
for mutually-recursive definitions: Induction rules have conclusions
|
huffman@33825
|
2382 |
of the form "P foo bar" instead of "P <foo, bar>".
|
huffman@33825
|
2383 |
|
huffman@33825
|
2384 |
* The constant "sq_le" (with infix syntax "<<" or "\<sqsubseteq>") has
|
huffman@33825
|
2385 |
been renamed to "below". The name "below" now replaces "less" in many
|
wenzelm@33842
|
2386 |
theorem names. (Legacy theorem names using "less" are still supported
|
wenzelm@33842
|
2387 |
as well.)
|
huffman@33825
|
2388 |
|
huffman@33825
|
2389 |
* The 'fixrec' package now supports "bottom patterns". Bottom
|
huffman@33825
|
2390 |
patterns can be used to generate strictness rules, or to make
|
huffman@33825
|
2391 |
functions more strict (much like the bang-patterns supported by the
|
wenzelm@33873
|
2392 |
Glasgow Haskell Compiler). See src/HOLCF/ex/Fixrec_ex.thy for
|
wenzelm@33873
|
2393 |
examples.
|
huffman@33825
|
2394 |
|
huffman@33825
|
2395 |
|
wenzelm@31304
|
2396 |
*** ML ***
|
wenzelm@31304
|
2397 |
|
wenzelm@33843
|
2398 |
* Support for Poly/ML 5.3.0, with improved reporting of compiler
|
wenzelm@33843
|
2399 |
errors and run-time exceptions, including detailed source positions.
|
wenzelm@33843
|
2400 |
|
wenzelm@33843
|
2401 |
* Structure Name_Space (formerly NameSpace) now manages uniquely
|
wenzelm@33843
|
2402 |
identified entries, with some additional information such as source
|
wenzelm@33843
|
2403 |
position, logical grouping etc.
|
wenzelm@33843
|
2404 |
|
wenzelm@33524
|
2405 |
* Theory and context data is now introduced by the simplified and
|
wenzelm@33524
|
2406 |
modernized functors Theory_Data, Proof_Data, Generic_Data. Data needs
|
wenzelm@33524
|
2407 |
to be pure, but the old TheoryDataFun for mutable data (with explicit
|
wenzelm@33524
|
2408 |
copy operation) is still available for some time.
|
wenzelm@33524
|
2409 |
|
wenzelm@32742
|
2410 |
* Structure Synchronized (cf. src/Pure/Concurrent/synchronized.ML)
|
wenzelm@32742
|
2411 |
provides a high-level programming interface to synchronized state
|
wenzelm@32742
|
2412 |
variables with atomic update. This works via pure function
|
wenzelm@32742
|
2413 |
application within a critical section -- its runtime should be as
|
wenzelm@32742
|
2414 |
short as possible; beware of deadlocks if critical code is nested,
|
wenzelm@32742
|
2415 |
either directly or indirectly via other synchronized variables!
|
wenzelm@32742
|
2416 |
|
wenzelm@32742
|
2417 |
* Structure Unsynchronized (cf. src/Pure/ML-Systems/unsynchronized.ML)
|
wenzelm@32742
|
2418 |
wraps raw ML references, explicitly indicating their non-thread-safe
|
wenzelm@32742
|
2419 |
behaviour. The Isar toplevel keeps this structure open, to
|
wenzelm@32742
|
2420 |
accommodate Proof General as well as quick and dirty interactive
|
wenzelm@32742
|
2421 |
experiments with references.
|
wenzelm@32742
|
2422 |
|
wenzelm@32365
|
2423 |
* PARALLEL_CHOICE and PARALLEL_GOALS provide basic support for
|
wenzelm@32365
|
2424 |
parallel tactical reasoning.
|
wenzelm@32365
|
2425 |
|
wenzelm@32427
|
2426 |
* Tacticals Subgoal.FOCUS, Subgoal.FOCUS_PREMS, Subgoal.FOCUS_PARAMS
|
wenzelm@32427
|
2427 |
are similar to SUBPROOF, but are slightly more flexible: only the
|
wenzelm@32427
|
2428 |
specified parts of the subgoal are imported into the context, and the
|
wenzelm@32427
|
2429 |
body tactic may introduce new subgoals and schematic variables.
|
wenzelm@32427
|
2430 |
|
wenzelm@32427
|
2431 |
* Old tactical METAHYPS, which does not observe the proof context, has
|
wenzelm@32427
|
2432 |
been renamed to Old_Goals.METAHYPS and awaits deletion. Use SUBPROOF
|
wenzelm@32427
|
2433 |
or Subgoal.FOCUS etc.
|
wenzelm@32216
|
2434 |
|
wenzelm@31971
|
2435 |
* Renamed functor TableFun to Table, and GraphFun to Graph. (Since
|
wenzelm@31971
|
2436 |
functors have their own ML name space there is no point to mark them
|
wenzelm@31971
|
2437 |
separately.) Minor INCOMPATIBILITY.
|
wenzelm@31971
|
2438 |
|
wenzelm@31901
|
2439 |
* Renamed NamedThmsFun to Named_Thms. INCOMPATIBILITY.
|
wenzelm@31901
|
2440 |
|
wenzelm@33842
|
2441 |
* Renamed several structures FooBar to Foo_Bar. Occasional,
|
wenzelm@33842
|
2442 |
INCOMPATIBILITY.
|
wenzelm@33842
|
2443 |
|
wenzelm@33843
|
2444 |
* Operations of structure Skip_Proof no longer require quick_and_dirty
|
wenzelm@33843
|
2445 |
mode, which avoids critical setmp.
|
wenzelm@33843
|
2446 |
|
wenzelm@31306
|
2447 |
* Eliminated old Attrib.add_attributes, Method.add_methods and related
|
wenzelm@33842
|
2448 |
combinators for "args". INCOMPATIBILITY, need to use simplified
|
wenzelm@31306
|
2449 |
Attrib/Method.setup introduced in Isabelle2009.
|
wenzelm@31304
|
2450 |
|
wenzelm@32151
|
2451 |
* Proper context for simpset_of, claset_of, clasimpset_of. May fall
|
wenzelm@32151
|
2452 |
back on global_simpset_of, global_claset_of, global_clasimpset_of as
|
wenzelm@32151
|
2453 |
last resort. INCOMPATIBILITY.
|
wenzelm@32151
|
2454 |
|
wenzelm@32092
|
2455 |
* Display.pretty_thm now requires a proper context (cf. former
|
wenzelm@32092
|
2456 |
ProofContext.pretty_thm). May fall back on Display.pretty_thm_global
|
wenzelm@32092
|
2457 |
or even Display.pretty_thm_without_context as last resort.
|
wenzelm@32092
|
2458 |
INCOMPATIBILITY.
|
wenzelm@32092
|
2459 |
|
wenzelm@32433
|
2460 |
* Discontinued Display.pretty_ctyp/cterm etc. INCOMPATIBILITY, use
|
wenzelm@32433
|
2461 |
Syntax.pretty_typ/term directly, preferably with proper context
|
wenzelm@32433
|
2462 |
instead of global theory.
|
wenzelm@32433
|
2463 |
|
wenzelm@31304
|
2464 |
|
wenzelm@31308
|
2465 |
*** System ***
|
wenzelm@31308
|
2466 |
|
wenzelm@33842
|
2467 |
* Further fine tuning of parallel proof checking, scales up to 8 cores
|
wenzelm@33842
|
2468 |
(max. speedup factor 5.0). See also Goal.parallel_proofs in ML and
|
wenzelm@33842
|
2469 |
usedir option -q.
|
wenzelm@33842
|
2470 |
|
wenzelm@32326
|
2471 |
* Support for additional "Isabelle components" via etc/components, see
|
wenzelm@32326
|
2472 |
also the system manual.
|
wenzelm@32326
|
2473 |
|
wenzelm@32326
|
2474 |
* The isabelle makeall tool now operates on all components with
|
wenzelm@32326
|
2475 |
IsaMakefile, not just hardwired "logics".
|
wenzelm@32326
|
2476 |
|
wenzelm@33842
|
2477 |
* Removed "compress" option from isabelle-process and isabelle usedir;
|
wenzelm@33842
|
2478 |
this is always enabled.
|
kleing@33818
|
2479 |
|
wenzelm@31308
|
2480 |
* Discontinued support for Poly/ML 4.x versions.
|
wenzelm@31308
|
2481 |
|
wenzelm@33842
|
2482 |
* Isabelle tool "wwwfind" provides web interface for 'find_theorems'
|
wenzelm@33842
|
2483 |
on a given logic image. This requires the lighttpd webserver and is
|
wenzelm@33842
|
2484 |
currently supported on Linux only.
|
wenzelm@32061
|
2485 |
|
wenzelm@31308
|
2486 |
|
wenzelm@31304
|
2487 |
|
wenzelm@30845
|
2488 |
New in Isabelle2009 (April 2009)
|
wenzelm@30845
|
2489 |
--------------------------------
|
haftmann@27104
|
2490 |
|
wenzelm@27599
|
2491 |
*** General ***
|
wenzelm@27599
|
2492 |
|
wenzelm@28504
|
2493 |
* Simplified main Isabelle executables, with less surprises on
|
wenzelm@28504
|
2494 |
case-insensitive file-systems (such as Mac OS).
|
wenzelm@28504
|
2495 |
|
wenzelm@28504
|
2496 |
- The main Isabelle tool wrapper is now called "isabelle" instead of
|
wenzelm@28504
|
2497 |
"isatool."
|
wenzelm@28504
|
2498 |
|
wenzelm@28504
|
2499 |
- The former "isabelle" alias for "isabelle-process" has been
|
wenzelm@28504
|
2500 |
removed (should rarely occur to regular users).
|
wenzelm@28504
|
2501 |
|
wenzelm@28915
|
2502 |
- The former "isabelle-interface" and its alias "Isabelle" have been
|
wenzelm@28915
|
2503 |
removed (interfaces are now regular Isabelle tools).
|
wenzelm@28504
|
2504 |
|
wenzelm@28504
|
2505 |
Within scripts and make files, the Isabelle environment variables
|
wenzelm@28504
|
2506 |
ISABELLE_TOOL and ISABELLE_PROCESS replace old ISATOOL and ISABELLE,
|
wenzelm@28504
|
2507 |
respectively. (The latter are still available as legacy feature.)
|
wenzelm@28504
|
2508 |
|
wenzelm@28915
|
2509 |
The old isabelle-interface wrapper could react in confusing ways if
|
wenzelm@28915
|
2510 |
the interface was uninstalled or changed otherwise. Individual
|
wenzelm@28915
|
2511 |
interface tool configuration is now more explicit, see also the
|
wenzelm@28915
|
2512 |
Isabelle system manual. In particular, Proof General is now available
|
wenzelm@28915
|
2513 |
via "isabelle emacs".
|
wenzelm@28504
|
2514 |
|
wenzelm@28504
|
2515 |
INCOMPATIBILITY, need to adapt derivative scripts. Users may need to
|
wenzelm@28504
|
2516 |
purge installed copies of Isabelle executables and re-run "isabelle
|
wenzelm@28504
|
2517 |
install -p ...", or use symlinks.
|
wenzelm@28504
|
2518 |
|
wenzelm@28914
|
2519 |
* The default for ISABELLE_HOME_USER is now ~/.isabelle instead of the
|
wenzelm@30845
|
2520 |
old ~/isabelle, which was slightly non-standard and apt to cause
|
wenzelm@30845
|
2521 |
surprises on case-insensitive file-systems (such as Mac OS).
|
wenzelm@28914
|
2522 |
|
wenzelm@28914
|
2523 |
INCOMPATIBILITY, need to move existing ~/isabelle/etc,
|
wenzelm@28914
|
2524 |
~/isabelle/heaps, ~/isabelle/browser_info to the new place. Special
|
wenzelm@28914
|
2525 |
care is required when using older releases of Isabelle. Note that
|
wenzelm@28914
|
2526 |
ISABELLE_HOME_USER can be changed in Isabelle/etc/settings of any
|
wenzelm@30845
|
2527 |
Isabelle distribution, in order to use the new ~/.isabelle uniformly.
|
wenzelm@28914
|
2528 |
|
wenzelm@29161
|
2529 |
* Proofs of fully specified statements are run in parallel on
|
wenzelm@30845
|
2530 |
multi-core systems. A speedup factor of 2.5 to 3.2 can be expected on
|
wenzelm@30845
|
2531 |
a regular 4-core machine, if the initial heap space is made reasonably
|
wenzelm@30845
|
2532 |
large (cf. Poly/ML option -H). (Requires Poly/ML 5.2.1 or later.)
|
wenzelm@30845
|
2533 |
|
wenzelm@30845
|
2534 |
* The main reference manuals ("isar-ref", "implementation", and
|
wenzelm@30845
|
2535 |
"system") have been updated and extended. Formally checked references
|
wenzelm@30845
|
2536 |
as hyperlinks are now available uniformly.
|
wenzelm@30845
|
2537 |
|
wenzelm@30163
|
2538 |
|
wenzelm@27599
|
2539 |
*** Pure ***
|
wenzelm@27599
|
2540 |
|
wenzelm@30845
|
2541 |
* Complete re-implementation of locales. INCOMPATIBILITY in several
|
wenzelm@30845
|
2542 |
respects. The most important changes are listed below. See the
|
wenzelm@30845
|
2543 |
Tutorial on Locales ("locales" manual) for details.
|
ballarin@29253
|
2544 |
|
ballarin@29253
|
2545 |
- In locale expressions, instantiation replaces renaming. Parameters
|
ballarin@29253
|
2546 |
must be declared in a for clause. To aid compatibility with previous
|
ballarin@29253
|
2547 |
parameter inheritance, in locale declarations, parameters that are not
|
ballarin@29253
|
2548 |
'touched' (instantiation position "_" or omitted) are implicitly added
|
ballarin@29253
|
2549 |
with their syntax at the beginning of the for clause.
|
ballarin@29253
|
2550 |
|
ballarin@29253
|
2551 |
- Syntax from abbreviations and definitions in locales is available in
|
ballarin@29253
|
2552 |
locale expressions and context elements. The latter is particularly
|
ballarin@29253
|
2553 |
useful in locale declarations.
|
ballarin@29253
|
2554 |
|
ballarin@29253
|
2555 |
- More flexible mechanisms to qualify names generated by locale
|
ballarin@29253
|
2556 |
expressions. Qualifiers (prefixes) may be specified in locale
|
wenzelm@30728
|
2557 |
expressions, and can be marked as mandatory (syntax: "name!:") or
|
wenzelm@30728
|
2558 |
optional (syntax "name?:"). The default depends for plain "name:"
|
wenzelm@30728
|
2559 |
depends on the situation where a locale expression is used: in
|
wenzelm@30728
|
2560 |
commands 'locale' and 'sublocale' prefixes are optional, in
|
wenzelm@30845
|
2561 |
'interpretation' and 'interpret' prefixes are mandatory. The old
|
wenzelm@30728
|
2562 |
implicit qualifiers derived from the parameter names of a locale are
|
wenzelm@30728
|
2563 |
no longer generated.
|
wenzelm@30106
|
2564 |
|
wenzelm@30845
|
2565 |
- Command "sublocale l < e" replaces "interpretation l < e". The
|
wenzelm@30106
|
2566 |
instantiation clause in "interpretation" and "interpret" (square
|
wenzelm@30106
|
2567 |
brackets) is no longer available. Use locale expressions.
|
ballarin@29253
|
2568 |
|
wenzelm@30845
|
2569 |
- When converting proof scripts, mandatory qualifiers in
|
wenzelm@30728
|
2570 |
'interpretation' and 'interpret' should be retained by default, even
|
wenzelm@30845
|
2571 |
if this is an INCOMPATIBILITY compared to former behavior. In the
|
wenzelm@30845
|
2572 |
worst case, use the "name?:" form for non-mandatory ones. Qualifiers
|
wenzelm@30845
|
2573 |
in locale expressions range over a single locale instance only.
|
wenzelm@30845
|
2574 |
|
wenzelm@30845
|
2575 |
- Dropped locale element "includes". This is a major INCOMPATIBILITY.
|
wenzelm@30845
|
2576 |
In existing theorem specifications replace the includes element by the
|
wenzelm@30845
|
2577 |
respective context elements of the included locale, omitting those
|
wenzelm@30845
|
2578 |
that are already present in the theorem specification. Multiple
|
wenzelm@30845
|
2579 |
assume elements of a locale should be replaced by a single one
|
wenzelm@30845
|
2580 |
involving the locale predicate. In the proof body, declarations (most
|
wenzelm@30845
|
2581 |
notably theorems) may be regained by interpreting the respective
|
wenzelm@30845
|
2582 |
locales in the proof context as required (command "interpret").
|
wenzelm@30845
|
2583 |
|
wenzelm@30845
|
2584 |
If using "includes" in replacement of a target solely because the
|
wenzelm@30845
|
2585 |
parameter types in the theorem are not as general as in the target,
|
wenzelm@30845
|
2586 |
consider declaring a new locale with additional type constraints on
|
wenzelm@30845
|
2587 |
the parameters (context element "constrains").
|
wenzelm@30845
|
2588 |
|
wenzelm@30845
|
2589 |
- Discontinued "locale (open)". INCOMPATIBILITY.
|
wenzelm@30845
|
2590 |
|
wenzelm@30845
|
2591 |
- Locale interpretation commands no longer attempt to simplify goal.
|
wenzelm@30845
|
2592 |
INCOMPATIBILITY: in rare situations the generated goal differs. Use
|
wenzelm@30845
|
2593 |
methods intro_locales and unfold_locales to clarify.
|
wenzelm@30845
|
2594 |
|
wenzelm@30845
|
2595 |
- Locale interpretation commands no longer accept interpretation
|
wenzelm@30845
|
2596 |
attributes. INCOMPATIBILITY.
|
wenzelm@30845
|
2597 |
|
wenzelm@30845
|
2598 |
* Class declaration: so-called "base sort" must not be given in import
|
wenzelm@30845
|
2599 |
list any longer, but is inferred from the specification. Particularly
|
wenzelm@30845
|
2600 |
in HOL, write
|
wenzelm@30845
|
2601 |
|
wenzelm@30845
|
2602 |
class foo = ...
|
wenzelm@30845
|
2603 |
|
wenzelm@30845
|
2604 |
instead of
|
wenzelm@30845
|
2605 |
|
wenzelm@30845
|
2606 |
class foo = type + ...
|
wenzelm@30845
|
2607 |
|
wenzelm@30845
|
2608 |
* Class target: global versions of theorems stemming do not carry a
|
wenzelm@30845
|
2609 |
parameter prefix any longer. INCOMPATIBILITY.
|
wenzelm@30845
|
2610 |
|
wenzelm@30845
|
2611 |
* Class 'instance' command no longer accepts attached definitions.
|
wenzelm@30845
|
2612 |
INCOMPATIBILITY, use proper 'instantiation' target instead.
|
wenzelm@30845
|
2613 |
|
wenzelm@30845
|
2614 |
* Recovered hiding of consts, which was accidentally broken in
|
wenzelm@30845
|
2615 |
Isabelle2007. Potential INCOMPATIBILITY, ``hide const c'' really
|
wenzelm@30845
|
2616 |
makes c inaccessible; consider using ``hide (open) const c'' instead.
|
wenzelm@30845
|
2617 |
|
wenzelm@30845
|
2618 |
* Slightly more coherent Pure syntax, with updated documentation in
|
wenzelm@30845
|
2619 |
isar-ref manual. Removed locales meta_term_syntax and
|
wenzelm@30845
|
2620 |
meta_conjunction_syntax: TERM and &&& (formerly &&) are now permanent,
|
wenzelm@30845
|
2621 |
INCOMPATIBILITY in rare situations. Note that &&& should not be used
|
wenzelm@30845
|
2622 |
directly in regular applications.
|
wenzelm@30845
|
2623 |
|
wenzelm@30845
|
2624 |
* There is a new syntactic category "float_const" for signed decimal
|
wenzelm@30845
|
2625 |
fractions (e.g. 123.45 or -123.45).
|
wenzelm@30845
|
2626 |
|
wenzelm@30845
|
2627 |
* Removed exotic 'token_translation' command. INCOMPATIBILITY, use ML
|
wenzelm@30845
|
2628 |
interface with 'setup' command instead.
|
wenzelm@30845
|
2629 |
|
wenzelm@30845
|
2630 |
* Command 'local_setup' is similar to 'setup', but operates on a local
|
wenzelm@30845
|
2631 |
theory context.
|
haftmann@27104
|
2632 |
|
wenzelm@28114
|
2633 |
* The 'axiomatization' command now only works within a global theory
|
wenzelm@28114
|
2634 |
context. INCOMPATIBILITY.
|
wenzelm@28114
|
2635 |
|
wenzelm@30845
|
2636 |
* Goal-directed proof now enforces strict proof irrelevance wrt. sort
|
wenzelm@30845
|
2637 |
hypotheses. Sorts required in the course of reasoning need to be
|
wenzelm@30845
|
2638 |
covered by the constraints in the initial statement, completed by the
|
wenzelm@30845
|
2639 |
type instance information of the background theory. Non-trivial sort
|
wenzelm@30845
|
2640 |
hypotheses, which rarely occur in practice, may be specified via
|
wenzelm@30845
|
2641 |
vacuous propositions of the form SORT_CONSTRAINT('a::c). For example:
|
wenzelm@30845
|
2642 |
|
wenzelm@30845
|
2643 |
lemma assumes "SORT_CONSTRAINT('a::empty)" shows False ...
|
wenzelm@30845
|
2644 |
|
wenzelm@30845
|
2645 |
The result contains an implicit sort hypotheses as before --
|
wenzelm@30845
|
2646 |
SORT_CONSTRAINT premises are eliminated as part of the canonical rule
|
wenzelm@30845
|
2647 |
normalization.
|
wenzelm@30845
|
2648 |
|
wenzelm@30845
|
2649 |
* Generalized Isar history, with support for linear undo, direct state
|
wenzelm@30845
|
2650 |
addressing etc.
|
wenzelm@30845
|
2651 |
|
wenzelm@30845
|
2652 |
* Changed defaults for unify configuration options:
|
wenzelm@30845
|
2653 |
|
wenzelm@30845
|
2654 |
unify_trace_bound = 50 (formerly 25)
|
wenzelm@30845
|
2655 |
unify_search_bound = 60 (formerly 30)
|
wenzelm@30845
|
2656 |
|
wenzelm@30845
|
2657 |
* Different bookkeeping for code equations (INCOMPATIBILITY):
|
wenzelm@30845
|
2658 |
|
wenzelm@30845
|
2659 |
a) On theory merge, the last set of code equations for a particular
|
wenzelm@30845
|
2660 |
constant is taken (in accordance with the policy applied by other
|
wenzelm@30845
|
2661 |
parts of the code generator framework).
|
wenzelm@30845
|
2662 |
|
wenzelm@30845
|
2663 |
b) Code equations stemming from explicit declarations (e.g. code
|
wenzelm@30845
|
2664 |
attribute) gain priority over default code equations stemming
|
wenzelm@30845
|
2665 |
from definition, primrec, fun etc.
|
wenzelm@30845
|
2666 |
|
wenzelm@30845
|
2667 |
* Keyword 'code_exception' now named 'code_abort'. INCOMPATIBILITY.
|
wenzelm@30845
|
2668 |
|
haftmann@30965
|
2669 |
* Unified theorem tables for both code generators. Thus [code
|
wenzelm@30845
|
2670 |
func] has disappeared and only [code] remains. INCOMPATIBILITY.
|
wenzelm@30577
|
2671 |
|
wenzelm@30577
|
2672 |
* Command 'find_consts' searches for constants based on type and name
|
wenzelm@30577
|
2673 |
patterns, e.g.
|
kleing@29883
|
2674 |
|
kleing@29883
|
2675 |
find_consts "_ => bool"
|
kleing@29883
|
2676 |
|
wenzelm@30106
|
2677 |
By default, matching is against subtypes, but it may be restricted to
|
wenzelm@30728
|
2678 |
the whole type. Searching by name is possible. Multiple queries are
|
wenzelm@30106
|
2679 |
conjunctive and queries may be negated by prefixing them with a
|
wenzelm@30106
|
2680 |
hyphen:
|
kleing@29883
|
2681 |
|
kleing@29883
|
2682 |
find_consts strict: "_ => bool" name: "Int" -"int => int"
|
kleing@29861
|
2683 |
|
wenzelm@30845
|
2684 |
* New 'find_theorems' criterion "solves" matches theorems that
|
wenzelm@30845
|
2685 |
directly solve the current goal (modulo higher-order unification).
|
wenzelm@30845
|
2686 |
|
wenzelm@30845
|