wenzelm@5363
|
1 |
Isabelle NEWS -- history user-relevant changes
|
wenzelm@5363
|
2 |
==============================================
|
wenzelm@2553
|
3 |
|
wenzelm@47887
|
4 |
New in this Isabelle version
|
wenzelm@47887
|
5 |
----------------------------
|
wenzelm@47887
|
6 |
|
wenzelm@47967
|
7 |
*** General ***
|
wenzelm@47967
|
8 |
|
wenzelm@48890
|
9 |
* Command 'ML_file' evaluates ML text from a file directly within the
|
wenzelm@48890
|
10 |
theory, without any predeclaration via 'uses' in the theory header.
|
wenzelm@48890
|
11 |
|
wenzelm@49243
|
12 |
* Old command 'use' command and corresponding keyword 'uses' in the
|
wenzelm@49243
|
13 |
theory header are legacy features and will be discontinued soon.
|
wenzelm@49243
|
14 |
Tools that load their additional source files may imitate the
|
wenzelm@49243
|
15 |
'ML_file' implementation, such that the system can take care of
|
wenzelm@49243
|
16 |
dependencies properly.
|
wenzelm@49243
|
17 |
|
wenzelm@47967
|
18 |
* Discontinued obsolete method fastsimp / tactic fast_simp_tac, which
|
wenzelm@47967
|
19 |
is called fastforce / fast_force_tac already since Isabelle2011-1.
|
wenzelm@47967
|
20 |
|
wenzelm@48120
|
21 |
* Updated and extended "isar-ref" manual, reduced remaining material
|
wenzelm@48120
|
22 |
in old "ref" manual.
|
wenzelm@48120
|
23 |
|
wenzelm@47967
|
24 |
|
wenzelm@48205
|
25 |
*** Pure ***
|
wenzelm@48205
|
26 |
|
haftmann@48431
|
27 |
* Code generation for Haskell: restrict unqualified imports from
|
haftmann@48431
|
28 |
Haskell Prelude to a small set of fundamental operations.
|
haftmann@48431
|
29 |
|
haftmann@48371
|
30 |
* Command "export_code": relative file names are interpreted
|
haftmann@48371
|
31 |
relatively to master directory of current theory rather than
|
haftmann@48371
|
32 |
the rather arbitrary current working directory.
|
haftmann@48371
|
33 |
INCOMPATIBILITY.
|
haftmann@48371
|
34 |
|
wenzelm@48205
|
35 |
* Discontinued obsolete attribute "COMP". Potential INCOMPATIBILITY,
|
wenzelm@48205
|
36 |
use regular rule composition via "OF" / "THEN", or explicit proof
|
wenzelm@48205
|
37 |
structure instead. Note that Isabelle/ML provides a variety of
|
wenzelm@48205
|
38 |
operators like COMP, INCR_COMP, COMP_INCR, which need to be applied
|
wenzelm@48205
|
39 |
with some care where this is really required.
|
wenzelm@48205
|
40 |
|
wenzelm@48792
|
41 |
* Command 'typ' supports an additional variant with explicit sort
|
wenzelm@48792
|
42 |
constraint, to infer and check the most general type conforming to a
|
wenzelm@48792
|
43 |
given given sort. Example (in HOL):
|
wenzelm@48792
|
44 |
|
wenzelm@48792
|
45 |
typ "_ * _ * bool * unit" :: finite
|
wenzelm@48792
|
46 |
|
wenzelm@48205
|
47 |
|
bulwahn@48013
|
48 |
*** HOL ***
|
bulwahn@48013
|
49 |
|
haftmann@49190
|
50 |
* Theory "Library/Option_ord" provides instantiation of option type
|
haftmann@49190
|
51 |
to lattice type classes.
|
haftmann@49190
|
52 |
|
haftmann@49189
|
53 |
* New combinator "Option.these" with type "'a option set => 'a option".
|
haftmann@49189
|
54 |
|
Christian@49145
|
55 |
* Renamed theory Library/List_Prefix to Library/Sublist.
|
Christian@49145
|
56 |
INCOMPATIBILITY. Related changes are:
|
Christian@49145
|
57 |
|
Christian@49145
|
58 |
- Renamed constants:
|
Christian@49145
|
59 |
|
Christian@49145
|
60 |
prefix ~> prefixeq
|
Christian@49145
|
61 |
strict_prefix ~> prefix
|
Christian@49145
|
62 |
|
Christian@49145
|
63 |
Renamed lemmas accordingly, INCOMPATIBILITY.
|
Christian@49145
|
64 |
|
Christian@49145
|
65 |
- Replaced constant "postfix" by "suffixeq" with swapped argument order
|
Christian@49145
|
66 |
(i.e., "postfix xs ys" is now "suffixeq ys xs") and dropped old infix
|
Christian@49145
|
67 |
syntax "xs >>= ys"; use "suffixeq ys xs" instead. Renamed lemmas
|
Christian@49145
|
68 |
accordingly. INCOMPATIBILITY.
|
Christian@49145
|
69 |
|
Christian@49145
|
70 |
- New constant "emb" for homeomorphic embedding on lists. New
|
Christian@49145
|
71 |
abbreviation "sub" for special case "emb (op =)".
|
Christian@49145
|
72 |
|
Christian@49145
|
73 |
- Library/Sublist does no longer provide "order" and "bot" type class
|
Christian@49145
|
74 |
instances for the prefix order (merely corresponding locale
|
Christian@49145
|
75 |
interpretations). The type class instances are to be found in
|
Christian@49145
|
76 |
Library/Prefix_Order. INCOMPATIBILITY.
|
Christian@49145
|
77 |
|
Christian@49145
|
78 |
- The sublist relation from Library/Sublist_Order is now based on
|
Christian@49145
|
79 |
"Sublist.sub". Replaced lemmas:
|
Christian@49145
|
80 |
|
Christian@49145
|
81 |
le_list_append_le_same_iff ~> Sublist.sub_append_le_same_iff
|
Christian@49145
|
82 |
le_list_append_mono ~> Sublist.emb_append_mono
|
Christian@49145
|
83 |
le_list_below_empty ~> Sublist.emb_Nil, Sublist.emb_Nil2
|
Christian@49145
|
84 |
le_list_Cons_EX ~> Sublist.emb_ConsD
|
Christian@49145
|
85 |
le_list_drop_Cons2 ~> Sublist.sub_Cons2'
|
Christian@49145
|
86 |
le_list_drop_Cons_neq ~> Sublist.sub_Cons2_neq
|
Christian@49145
|
87 |
le_list_drop_Cons ~> Sublist.sub_Cons'
|
Christian@49145
|
88 |
le_list_drop_many ~> Sublist.sub_drop_many
|
Christian@49145
|
89 |
le_list_filter_left ~> Sublist.sub_filter_left
|
Christian@49145
|
90 |
le_list_rev_drop_many ~> Sublist.sub_rev_drop_many
|
Christian@49145
|
91 |
le_list_rev_take_iff ~> Sublist.sub_append
|
Christian@49145
|
92 |
le_list_same_length ~> Sublist.sub_same_length
|
Christian@49145
|
93 |
le_list_take_many_iff ~> Sublist.sub_append'
|
Christian@49145
|
94 |
less_eq_list.drop ~> less_eq_list_drop
|
Christian@49145
|
95 |
less_eq_list.induct ~> less_eq_list_induct
|
Christian@49145
|
96 |
not_le_list_length ~> Sublist.not_sub_length
|
Christian@49145
|
97 |
|
Christian@49145
|
98 |
INCOMPATIBILITY.
|
Christian@49145
|
99 |
|
blanchet@48977
|
100 |
* HOL/Codatatype: New (co)datatype package with support for mixed,
|
blanchet@48977
|
101 |
nested recursion and interesting non-free datatypes.
|
blanchet@48977
|
102 |
|
blanchet@49310
|
103 |
* HOL/Cardinals: Theories of ordinals and cardinals
|
blanchet@49310
|
104 |
(supersedes the AFP entry "Ordinals_and_Cardinals").
|
blanchet@48977
|
105 |
|
haftmann@48428
|
106 |
* Library/Debug.thy and Library/Parallel.thy: debugging and parallel
|
haftmann@48428
|
107 |
execution for code generated towards Isabelle/ML.
|
haftmann@48428
|
108 |
|
wenzelm@48206
|
109 |
* Simproc "finite_Collect" rewrites set comprehensions into pointfree
|
wenzelm@48206
|
110 |
expressions.
|
bulwahn@48111
|
111 |
|
bulwahn@48013
|
112 |
* Quickcheck:
|
bulwahn@48013
|
113 |
|
bulwahn@48013
|
114 |
- added an optimisation for equality premises.
|
bulwahn@48013
|
115 |
It is switched on by default, and can be switched off by setting
|
blanchet@48977
|
116 |
the configuration quickcheck_optimise_equality to false.
|
wenzelm@47887
|
117 |
|
boehmes@48069
|
118 |
* The SMT solver Z3 has now by default a restricted set of directly
|
boehmes@48069
|
119 |
supported features. For the full set of features (div/mod, nonlinear
|
boehmes@48069
|
120 |
arithmetic, datatypes/records) with potential proof reconstruction
|
boehmes@48069
|
121 |
failures, enable the configuration option "z3_with_extensions".
|
boehmes@48069
|
122 |
Minor INCOMPATIBILITY.
|
boehmes@48069
|
123 |
|
blanchet@48094
|
124 |
* Sledgehammer:
|
blanchet@48094
|
125 |
|
blanchet@48402
|
126 |
- Added MaSh relevance filter based on machine-learning; see the
|
blanchet@48402
|
127 |
Sledgehammer manual for details.
|
blanchet@48094
|
128 |
- Rationalized type encodings ("type_enc" option).
|
blanchet@49365
|
129 |
- Renamed "kill_provers" subcommand to "kill"
|
blanchet@48294
|
130 |
- Renamed options:
|
blanchet@48294
|
131 |
max_relevant ~> max_facts
|
blanchet@48294
|
132 |
relevance_thresholds ~> fact_thresholds
|
blanchet@48094
|
133 |
|
wenzelm@48120
|
134 |
|
wenzelm@48206
|
135 |
*** Document preparation ***
|
wenzelm@48206
|
136 |
|
wenzelm@48206
|
137 |
* Default for \<euro> is now based on eurosym package, instead of
|
wenzelm@48206
|
138 |
slightly exotic babel/greek.
|
wenzelm@48206
|
139 |
|
wenzelm@48616
|
140 |
* Document variant NAME may use different LaTeX entry point
|
wenzelm@48616
|
141 |
document/root_NAME.tex if that file exists, instead of the common
|
wenzelm@48616
|
142 |
document/root.tex.
|
wenzelm@48616
|
143 |
|
wenzelm@48657
|
144 |
* Simplified custom document/build script, instead of old-style
|
wenzelm@48657
|
145 |
document/IsaMakefile. Minor INCOMPATIBILITY.
|
wenzelm@48657
|
146 |
|
wenzelm@48206
|
147 |
|
wenzelm@48992
|
148 |
*** ML ***
|
wenzelm@48992
|
149 |
|
wenzelm@48992
|
150 |
* Renamed Position.str_of to Position.here to emphasize that this is a
|
wenzelm@48992
|
151 |
formal device to inline positions into message text, but not
|
wenzelm@48992
|
152 |
necessarily printing visible text.
|
wenzelm@48992
|
153 |
|
wenzelm@48992
|
154 |
|
wenzelm@48206
|
155 |
*** System ***
|
wenzelm@48206
|
156 |
|
wenzelm@49000
|
157 |
* The ML system is configured as regular component, and no longer
|
wenzelm@49000
|
158 |
picked up from some surrounding directory. Potential INCOMPATIBILITY
|
wenzelm@49000
|
159 |
for home-made configurations.
|
wenzelm@49000
|
160 |
|
wenzelm@49072
|
161 |
* The "isabelle logo" tool produces EPS and PDF format simultaneously.
|
wenzelm@49072
|
162 |
Minor INCOMPATIBILITY in command-line options.
|
wenzelm@48936
|
163 |
|
wenzelm@48585
|
164 |
* Advanced support for Isabelle sessions and build management, see
|
wenzelm@48585
|
165 |
"system" manual for the chapter of that name, especially the "isabelle
|
wenzelm@48736
|
166 |
build" tool and its examples. INCOMPATIBILITY, isabelle usedir /
|
wenzelm@48736
|
167 |
mkdir / make are rendered obsolete.
|
wenzelm@48736
|
168 |
|
wenzelm@48736
|
169 |
* Discontinued obsolete "isabelle makeall".
|
wenzelm@48585
|
170 |
|
wenzelm@48722
|
171 |
* Discontinued obsolete IsaMakefile and ROOT.ML files from the
|
wenzelm@48722
|
172 |
Isabelle distribution, except for rudimentary src/HOL/IsaMakefile that
|
wenzelm@48722
|
173 |
provides some traditional targets that invoke "isabelle build". Note
|
wenzelm@48722
|
174 |
that this is inefficient! Applications of Isabelle/HOL involving
|
wenzelm@48722
|
175 |
"isabelle make" should be upgraded to use "isabelle build" directly.
|
wenzelm@48722
|
176 |
|
wenzelm@48586
|
177 |
* Discontinued obsolete Isabelle/build script, it is superseded by the
|
wenzelm@48586
|
178 |
regular isabelle build tool. For example:
|
wenzelm@48586
|
179 |
|
wenzelm@48586
|
180 |
isabelle build -s -b HOLCF
|
wenzelm@48586
|
181 |
|
wenzelm@48693
|
182 |
* The "isabelle options" tool prints Isabelle system options, as
|
wenzelm@48693
|
183 |
required for "isabelle build", for example.
|
wenzelm@48693
|
184 |
|
wenzelm@48683
|
185 |
* The "isabelle mkroot" tool prepares session root directories for use
|
wenzelm@48683
|
186 |
with "isabelle build", similar to former "isabelle mkdir" for
|
wenzelm@48683
|
187 |
"isabelle usedir".
|
wenzelm@48683
|
188 |
|
wenzelm@48844
|
189 |
* The "isabelle components" tool helps to resolve add-on components
|
wenzelm@48844
|
190 |
that are not bundled, or referenced from a bare-bones repository
|
wenzelm@48844
|
191 |
version of Isabelle.
|
wenzelm@48844
|
192 |
|
wenzelm@48206
|
193 |
* Discontinued support for Poly/ML 5.2.1, which was the last version
|
wenzelm@48206
|
194 |
without exception positions and advanced ML compiler/toplevel
|
wenzelm@48206
|
195 |
configuration.
|
wenzelm@48206
|
196 |
|
wenzelm@48574
|
197 |
* Discontinued special treatment of Proof General -- no longer guess
|
wenzelm@48574
|
198 |
PROOFGENERAL_HOME based on accidental file-system layout. Minor
|
wenzelm@48574
|
199 |
INCOMPATIBILITY: provide PROOFGENERAL_HOME and PROOFGENERAL_OPTIONS
|
wenzelm@48574
|
200 |
settings manually, or use a Proof General version that has been
|
wenzelm@48574
|
201 |
bundled as Isabelle component.
|
wenzelm@48206
|
202 |
|
wenzelm@48120
|
203 |
|
wenzelm@47462
|
204 |
New in Isabelle2012 (May 2012)
|
wenzelm@47462
|
205 |
------------------------------
|
wenzelm@45109
|
206 |
|
wenzelm@45593
|
207 |
*** General ***
|
wenzelm@45593
|
208 |
|
wenzelm@45614
|
209 |
* Prover IDE (PIDE) improvements:
|
wenzelm@45614
|
210 |
|
wenzelm@47585
|
211 |
- more robust Sledgehammer integration (as before the sledgehammer
|
wenzelm@47806
|
212 |
command-line needs to be typed into the source buffer)
|
wenzelm@45614
|
213 |
- markup for bound variables
|
wenzelm@47806
|
214 |
- markup for types of term variables (displayed as tooltips)
|
wenzelm@46956
|
215 |
- support for user-defined Isar commands within the running session
|
wenzelm@47158
|
216 |
- improved support for Unicode outside original 16bit range
|
wenzelm@47158
|
217 |
e.g. glyph for \<A> (thanks to jEdit 4.5.1)
|
wenzelm@45614
|
218 |
|
wenzelm@47806
|
219 |
* Forward declaration of outer syntax keywords within the theory
|
wenzelm@47806
|
220 |
header -- minor INCOMPATIBILITY for user-defined commands. Allow new
|
wenzelm@47806
|
221 |
commands to be used in the same theory where defined.
|
wenzelm@46485
|
222 |
|
wenzelm@47482
|
223 |
* Auxiliary contexts indicate block structure for specifications with
|
wenzelm@47482
|
224 |
additional parameters and assumptions. Such unnamed contexts may be
|
wenzelm@47482
|
225 |
nested within other targets, like 'theory', 'locale', 'class',
|
wenzelm@47482
|
226 |
'instantiation' etc. Results from the local context are generalized
|
wenzelm@47482
|
227 |
accordingly and applied to the enclosing target context. Example:
|
wenzelm@47482
|
228 |
|
wenzelm@47482
|
229 |
context
|
wenzelm@47482
|
230 |
fixes x y z :: 'a
|
wenzelm@47482
|
231 |
assumes xy: "x = y" and yz: "y = z"
|
wenzelm@47482
|
232 |
begin
|
wenzelm@47482
|
233 |
|
wenzelm@47482
|
234 |
lemma my_trans: "x = z" using xy yz by simp
|
wenzelm@47482
|
235 |
|
wenzelm@47482
|
236 |
end
|
wenzelm@47482
|
237 |
|
wenzelm@47482
|
238 |
thm my_trans
|
wenzelm@47482
|
239 |
|
wenzelm@47482
|
240 |
The most basic application is to factor-out context elements of
|
wenzelm@47482
|
241 |
several fixes/assumes/shows theorem statements, e.g. see
|
wenzelm@47482
|
242 |
~~/src/HOL/Isar_Examples/Group_Context.thy
|
wenzelm@47482
|
243 |
|
wenzelm@47482
|
244 |
Any other local theory specification element works within the "context
|
wenzelm@47482
|
245 |
... begin ... end" block as well.
|
wenzelm@47482
|
246 |
|
wenzelm@47484
|
247 |
* Bundled declarations associate attributed fact expressions with a
|
wenzelm@47484
|
248 |
given name in the context. These may be later included in other
|
wenzelm@47484
|
249 |
contexts. This allows to manage context extensions casually, without
|
wenzelm@47855
|
250 |
the logical dependencies of locales and locale interpretation. See
|
wenzelm@47855
|
251 |
commands 'bundle', 'include', 'including' etc. in the isar-ref manual.
|
wenzelm@47484
|
252 |
|
wenzelm@47829
|
253 |
* Commands 'lemmas' and 'theorems' allow local variables using 'for'
|
wenzelm@47829
|
254 |
declaration, and results are standardized before being stored. Thus
|
wenzelm@47829
|
255 |
old-style "standard" after instantiation or composition of facts
|
wenzelm@47829
|
256 |
becomes obsolete. Minor INCOMPATIBILITY, due to potential change of
|
wenzelm@47829
|
257 |
indices of schematic variables.
|
wenzelm@47829
|
258 |
|
wenzelm@47829
|
259 |
* Rule attributes in local theory declarations (e.g. locale or class)
|
wenzelm@47829
|
260 |
are now statically evaluated: the resulting theorem is stored instead
|
wenzelm@47829
|
261 |
of the original expression. INCOMPATIBILITY in rare situations, where
|
wenzelm@47829
|
262 |
the historic accident of dynamic re-evaluation in interpretations
|
wenzelm@47829
|
263 |
etc. was exploited.
|
wenzelm@47829
|
264 |
|
wenzelm@47829
|
265 |
* New tutorial "Programming and Proving in Isabelle/HOL"
|
wenzelm@47829
|
266 |
("prog-prove"). It completely supersedes "A Tutorial Introduction to
|
wenzelm@47829
|
267 |
Structured Isar Proofs" ("isar-overview"), which has been removed. It
|
wenzelm@47829
|
268 |
also supersedes "Isabelle/HOL, A Proof Assistant for Higher-Order
|
wenzelm@47829
|
269 |
Logic" as the recommended beginners tutorial, but does not cover all
|
wenzelm@47829
|
270 |
of the material of that old tutorial.
|
wenzelm@47829
|
271 |
|
wenzelm@47829
|
272 |
* Updated and extended reference manuals: "isar-ref",
|
wenzelm@47829
|
273 |
"implementation", "system"; reduced remaining material in old "ref"
|
wenzelm@47829
|
274 |
manual.
|
wenzelm@47829
|
275 |
|
wenzelm@47829
|
276 |
|
wenzelm@47829
|
277 |
*** Pure ***
|
wenzelm@47829
|
278 |
|
wenzelm@46976
|
279 |
* Command 'definition' no longer exports the foundational "raw_def"
|
wenzelm@46976
|
280 |
into the user context. Minor INCOMPATIBILITY, may use the regular
|
wenzelm@46976
|
281 |
"def" result with attribute "abs_def" to imitate the old version.
|
wenzelm@46976
|
282 |
|
wenzelm@47855
|
283 |
* Attribute "abs_def" turns an equation of the form "f x y == t" into
|
wenzelm@47855
|
284 |
"f == %x y. t", which ensures that "simp" or "unfold" steps always
|
wenzelm@47855
|
285 |
expand it. This also works for object-logic equality. (Formerly
|
wenzelm@47855
|
286 |
undocumented feature.)
|
wenzelm@47855
|
287 |
|
wenzelm@47856
|
288 |
* Sort constraints are now propagated in simultaneous statements, just
|
wenzelm@47856
|
289 |
like type constraints. INCOMPATIBILITY in rare situations, where
|
wenzelm@47856
|
290 |
distinct sorts used to be assigned accidentally. For example:
|
wenzelm@47856
|
291 |
|
wenzelm@47856
|
292 |
lemma "P (x::'a::foo)" and "Q (y::'a::bar)" -- "now illegal"
|
wenzelm@47856
|
293 |
|
wenzelm@47856
|
294 |
lemma "P (x::'a)" and "Q (y::'a::bar)"
|
wenzelm@47856
|
295 |
-- "now uniform 'a::bar instead of default sort for first occurrence (!)"
|
wenzelm@47856
|
296 |
|
wenzelm@47856
|
297 |
* Rule composition via attribute "OF" (or ML functions OF/MRS) is more
|
wenzelm@47856
|
298 |
tolerant against multiple unifiers, as long as the final result is
|
wenzelm@47856
|
299 |
unique. (As before, rules are composed in canonical right-to-left
|
wenzelm@47856
|
300 |
order to accommodate newly introduced premises.)
|
wenzelm@47856
|
301 |
|
wenzelm@47806
|
302 |
* Renamed some inner syntax categories:
|
wenzelm@47806
|
303 |
|
wenzelm@47806
|
304 |
num ~> num_token
|
wenzelm@47806
|
305 |
xnum ~> xnum_token
|
wenzelm@47806
|
306 |
xstr ~> str_token
|
wenzelm@47806
|
307 |
|
wenzelm@47806
|
308 |
Minor INCOMPATIBILITY. Note that in practice "num_const" or
|
wenzelm@47806
|
309 |
"num_position" etc. are mainly used instead (which also include
|
wenzelm@47806
|
310 |
position information via constraints).
|
wenzelm@47806
|
311 |
|
wenzelm@47829
|
312 |
* Simplified configuration options for syntax ambiguity: see
|
wenzelm@47829
|
313 |
"syntax_ambiguity_warning" and "syntax_ambiguity_limit" in isar-ref
|
wenzelm@47829
|
314 |
manual. Minor INCOMPATIBILITY.
|
wenzelm@47829
|
315 |
|
wenzelm@47856
|
316 |
* Discontinued configuration option "syntax_positions": atomic terms
|
wenzelm@47856
|
317 |
in parse trees are always annotated by position constraints.
|
wenzelm@45134
|
318 |
|
wenzelm@47464
|
319 |
* Old code generator for SML and its commands 'code_module',
|
wenzelm@45383
|
320 |
'code_library', 'consts_code', 'types_code' have been discontinued.
|
haftmann@46028
|
321 |
Use commands of the generic code generator instead. INCOMPATIBILITY.
|
wenzelm@45383
|
322 |
|
wenzelm@47464
|
323 |
* Redundant attribute "code_inline" has been discontinued. Use
|
wenzelm@47464
|
324 |
"code_unfold" instead. INCOMPATIBILITY.
|
wenzelm@47464
|
325 |
|
wenzelm@47464
|
326 |
* Dropped attribute "code_unfold_post" in favor of the its dual
|
wenzelm@47464
|
327 |
"code_abbrev", which yields a common pattern in definitions like
|
haftmann@46028
|
328 |
|
haftmann@46028
|
329 |
definition [code_abbrev]: "f = t"
|
haftmann@46028
|
330 |
|
haftmann@46028
|
331 |
INCOMPATIBILITY.
|
wenzelm@45383
|
332 |
|
wenzelm@47856
|
333 |
* Obsolete 'types' command has been discontinued. Use 'type_synonym'
|
wenzelm@47856
|
334 |
instead. INCOMPATIBILITY.
|
wenzelm@47856
|
335 |
|
wenzelm@47856
|
336 |
* Discontinued old "prems" fact, which used to refer to the accidental
|
wenzelm@47856
|
337 |
collection of foundational premises in the context (already marked as
|
wenzelm@47856
|
338 |
legacy since Isabelle2011).
|
wenzelm@47855
|
339 |
|
wenzelm@45427
|
340 |
|
huffman@45122
|
341 |
*** HOL ***
|
huffman@45122
|
342 |
|
wenzelm@47464
|
343 |
* Type 'a set is now a proper type constructor (just as before
|
wenzelm@47464
|
344 |
Isabelle2008). Definitions mem_def and Collect_def have disappeared.
|
wenzelm@47464
|
345 |
Non-trivial INCOMPATIBILITY. For developments keeping predicates and
|
wenzelm@47855
|
346 |
sets separate, it is often sufficient to rephrase some set S that has
|
wenzelm@47855
|
347 |
been accidentally used as predicates by "%x. x : S", and some
|
wenzelm@47855
|
348 |
predicate P that has been accidentally used as set by "{x. P x}".
|
wenzelm@47855
|
349 |
Corresponding proofs in a first step should be pruned from any
|
wenzelm@47855
|
350 |
tinkering with former theorems mem_def and Collect_def as far as
|
wenzelm@47855
|
351 |
possible.
|
wenzelm@47855
|
352 |
|
wenzelm@47855
|
353 |
For developments which deliberately mix predicates and sets, a
|
wenzelm@47464
|
354 |
planning step is necessary to determine what should become a predicate
|
wenzelm@47464
|
355 |
and what a set. It can be helpful to carry out that step in
|
wenzelm@47464
|
356 |
Isabelle2011-1 before jumping right into the current release.
|
wenzelm@47464
|
357 |
|
wenzelm@47855
|
358 |
* Code generation by default implements sets as container type rather
|
wenzelm@47855
|
359 |
than predicates. INCOMPATIBILITY.
|
wenzelm@47855
|
360 |
|
wenzelm@47855
|
361 |
* New type synonym 'a rel = ('a * 'a) set
|
wenzelm@47855
|
362 |
|
wenzelm@47464
|
363 |
* The representation of numerals has changed. Datatype "num"
|
wenzelm@47464
|
364 |
represents strictly positive binary numerals, along with functions
|
wenzelm@47464
|
365 |
"numeral :: num => 'a" and "neg_numeral :: num => 'a" to represent
|
wenzelm@47855
|
366 |
positive and negated numeric literals, respectively. See also
|
wenzelm@47855
|
367 |
definitions in ~~/src/HOL/Num.thy. Potential INCOMPATIBILITY, some
|
wenzelm@47855
|
368 |
user theories may require adaptations as follows:
|
huffman@47108
|
369 |
|
huffman@47108
|
370 |
- Theorems with number_ring or number_semiring constraints: These
|
huffman@47108
|
371 |
classes are gone; use comm_ring_1 or comm_semiring_1 instead.
|
huffman@47108
|
372 |
|
huffman@47108
|
373 |
- Theories defining numeric types: Remove number, number_semiring,
|
huffman@47108
|
374 |
and number_ring instances. Defer all theorems about numerals until
|
huffman@47108
|
375 |
after classes one and semigroup_add have been instantiated.
|
huffman@47108
|
376 |
|
huffman@47108
|
377 |
- Numeral-only simp rules: Replace each rule having a "number_of v"
|
huffman@47108
|
378 |
pattern with two copies, one for numeral and one for neg_numeral.
|
huffman@47108
|
379 |
|
huffman@47108
|
380 |
- Theorems about subclasses of semiring_1 or ring_1: These classes
|
huffman@47108
|
381 |
automatically support numerals now, so more simp rules and
|
huffman@47108
|
382 |
simprocs may now apply within the proof.
|
huffman@47108
|
383 |
|
huffman@47108
|
384 |
- Definitions and theorems using old constructors Pls/Min/Bit0/Bit1:
|
huffman@47108
|
385 |
Redefine using other integer operations.
|
huffman@47108
|
386 |
|
wenzelm@47855
|
387 |
* Transfer: New package intended to generalize the existing
|
wenzelm@47855
|
388 |
"descending" method and related theorem attributes from the Quotient
|
wenzelm@47855
|
389 |
package. (Not all functionality is implemented yet, but future
|
wenzelm@47855
|
390 |
development will focus on Transfer as an eventual replacement for the
|
wenzelm@47855
|
391 |
corresponding parts of the Quotient package.)
|
wenzelm@47809
|
392 |
|
wenzelm@47809
|
393 |
- transfer_rule attribute: Maintains a collection of transfer rules,
|
wenzelm@47809
|
394 |
which relate constants at two different types. Transfer rules may
|
wenzelm@47809
|
395 |
relate different type instances of the same polymorphic constant,
|
wenzelm@47809
|
396 |
or they may relate an operation on a raw type to a corresponding
|
wenzelm@47809
|
397 |
operation on an abstract type (quotient or subtype). For example:
|
wenzelm@47809
|
398 |
|
wenzelm@47809
|
399 |
((A ===> B) ===> list_all2 A ===> list_all2 B) map map
|
wenzelm@47809
|
400 |
(cr_int ===> cr_int ===> cr_int) (%(x,y) (u,v). (x+u, y+v)) plus_int
|
wenzelm@47809
|
401 |
|
wenzelm@47809
|
402 |
- transfer method: Replaces a subgoal on abstract types with an
|
wenzelm@47809
|
403 |
equivalent subgoal on the corresponding raw types. Constants are
|
wenzelm@47809
|
404 |
replaced with corresponding ones according to the transfer rules.
|
wenzelm@47809
|
405 |
Goals are generalized over all free variables by default; this is
|
huffman@47851
|
406 |
necessary for variables whose types change, but can be overridden
|
wenzelm@47855
|
407 |
for specific variables with e.g. "transfer fixing: x y z". The
|
wenzelm@47809
|
408 |
variant transfer' method allows replacing a subgoal with one that
|
wenzelm@47809
|
409 |
is logically stronger (rather than equivalent).
|
wenzelm@47809
|
410 |
|
wenzelm@47809
|
411 |
- relator_eq attribute: Collects identity laws for relators of
|
wenzelm@47809
|
412 |
various type constructors, e.g. "list_all2 (op =) = (op =)". The
|
wenzelm@47809
|
413 |
transfer method uses these lemmas to infer transfer rules for
|
wenzelm@47809
|
414 |
non-polymorphic constants on the fly.
|
wenzelm@47809
|
415 |
|
wenzelm@47809
|
416 |
- transfer_prover method: Assists with proving a transfer rule for a
|
wenzelm@47809
|
417 |
new constant, provided the constant is defined in terms of other
|
wenzelm@47809
|
418 |
constants that already have transfer rules. It should be applied
|
wenzelm@47809
|
419 |
after unfolding the constant definitions.
|
wenzelm@47809
|
420 |
|
wenzelm@47809
|
421 |
- HOL/ex/Transfer_Int_Nat.thy: Example theory demonstrating transfer
|
wenzelm@47809
|
422 |
from type nat to type int.
|
wenzelm@47809
|
423 |
|
huffman@47851
|
424 |
* Lifting: New package intended to generalize the quotient_definition
|
huffman@47851
|
425 |
facility of the Quotient package; designed to work with Transfer.
|
wenzelm@47809
|
426 |
|
wenzelm@47809
|
427 |
- lift_definition command: Defines operations on an abstract type in
|
wenzelm@47809
|
428 |
terms of a corresponding operation on a representation
|
wenzelm@47809
|
429 |
type. Example syntax:
|
wenzelm@47809
|
430 |
|
wenzelm@47809
|
431 |
lift_definition dlist_insert :: "'a => 'a dlist => 'a dlist"
|
wenzelm@47809
|
432 |
is List.insert
|
wenzelm@47809
|
433 |
|
wenzelm@47809
|
434 |
Users must discharge a respectfulness proof obligation when each
|
wenzelm@47809
|
435 |
constant is defined. (For a type copy, i.e. a typedef with UNIV,
|
wenzelm@47809
|
436 |
the proof is discharged automatically.) The obligation is
|
wenzelm@47809
|
437 |
presented in a user-friendly, readable form; a respectfulness
|
wenzelm@47809
|
438 |
theorem in the standard format and a transfer rule are generated
|
wenzelm@47809
|
439 |
by the package.
|
wenzelm@47809
|
440 |
|
wenzelm@47809
|
441 |
- Integration with code_abstype: For typedefs (e.g. subtypes
|
wenzelm@47809
|
442 |
corresponding to a datatype invariant, such as dlist),
|
wenzelm@47809
|
443 |
lift_definition generates a code certificate theorem and sets up
|
wenzelm@47809
|
444 |
code generation for each constant.
|
wenzelm@47809
|
445 |
|
wenzelm@47809
|
446 |
- setup_lifting command: Sets up the Lifting package to work with a
|
wenzelm@47809
|
447 |
user-defined type. The user must provide either a quotient theorem
|
wenzelm@47809
|
448 |
or a type_definition theorem. The package configures transfer
|
wenzelm@47809
|
449 |
rules for equality and quantifiers on the type, and sets up the
|
wenzelm@47809
|
450 |
lift_definition command to work with the type.
|
wenzelm@47809
|
451 |
|
wenzelm@47809
|
452 |
- Usage examples: See Quotient_Examples/Lift_DList.thy,
|
huffman@47851
|
453 |
Quotient_Examples/Lift_RBT.thy, Quotient_Examples/Lift_FSet.thy,
|
huffman@47851
|
454 |
Word/Word.thy and Library/Float.thy.
|
wenzelm@47809
|
455 |
|
wenzelm@47809
|
456 |
* Quotient package:
|
wenzelm@47809
|
457 |
|
wenzelm@47809
|
458 |
- The 'quotient_type' command now supports a 'morphisms' option with
|
wenzelm@47809
|
459 |
rep and abs functions, similar to typedef.
|
wenzelm@47809
|
460 |
|
wenzelm@47809
|
461 |
- 'quotient_type' sets up new types to work with the Lifting and
|
wenzelm@47809
|
462 |
Transfer packages, as with 'setup_lifting'.
|
wenzelm@47809
|
463 |
|
wenzelm@47809
|
464 |
- The 'quotient_definition' command now requires the user to prove a
|
wenzelm@47809
|
465 |
respectfulness property at the point where the constant is
|
wenzelm@47809
|
466 |
defined, similar to lift_definition; INCOMPATIBILITY.
|
wenzelm@47809
|
467 |
|
wenzelm@47809
|
468 |
- Renamed predicate 'Quotient' to 'Quotient3', and renamed theorems
|
wenzelm@47809
|
469 |
accordingly, INCOMPATIBILITY.
|
wenzelm@47809
|
470 |
|
wenzelm@47809
|
471 |
* New diagnostic command 'find_unused_assms' to find potentially
|
wenzelm@47809
|
472 |
superfluous assumptions in theorems using Quickcheck.
|
wenzelm@47809
|
473 |
|
wenzelm@47809
|
474 |
* Quickcheck:
|
wenzelm@47809
|
475 |
|
wenzelm@47809
|
476 |
- Quickcheck returns variable assignments as counterexamples, which
|
wenzelm@47809
|
477 |
allows to reveal the underspecification of functions under test.
|
wenzelm@47809
|
478 |
For example, refuting "hd xs = x", it presents the variable
|
wenzelm@47809
|
479 |
assignment xs = [] and x = a1 as a counterexample, assuming that
|
wenzelm@47809
|
480 |
any property is false whenever "hd []" occurs in it.
|
wenzelm@47809
|
481 |
|
wenzelm@47809
|
482 |
These counterexample are marked as potentially spurious, as
|
wenzelm@47809
|
483 |
Quickcheck also returns "xs = []" as a counterexample to the
|
wenzelm@47809
|
484 |
obvious theorem "hd xs = hd xs".
|
wenzelm@47809
|
485 |
|
wenzelm@47809
|
486 |
After finding a potentially spurious counterexample, Quickcheck
|
wenzelm@47809
|
487 |
continues searching for genuine ones.
|
wenzelm@47809
|
488 |
|
wenzelm@47809
|
489 |
By default, Quickcheck shows potentially spurious and genuine
|
wenzelm@47809
|
490 |
counterexamples. The option "genuine_only" sets quickcheck to only
|
wenzelm@47809
|
491 |
show genuine counterexamples.
|
wenzelm@47809
|
492 |
|
wenzelm@47809
|
493 |
- The command 'quickcheck_generator' creates random and exhaustive
|
wenzelm@47809
|
494 |
value generators for a given type and operations.
|
wenzelm@47809
|
495 |
|
wenzelm@47809
|
496 |
It generates values by using the operations as if they were
|
wenzelm@47809
|
497 |
constructors of that type.
|
wenzelm@47809
|
498 |
|
wenzelm@47809
|
499 |
- Support for multisets.
|
wenzelm@47809
|
500 |
|
wenzelm@47809
|
501 |
- Added "use_subtype" options.
|
wenzelm@47809
|
502 |
|
wenzelm@47809
|
503 |
- Added "quickcheck_locale" configuration to specify how to process
|
wenzelm@47809
|
504 |
conjectures in a locale context.
|
wenzelm@47809
|
505 |
|
wenzelm@47855
|
506 |
* Nitpick: Fixed infinite loop caused by the 'peephole_optim' option
|
wenzelm@47855
|
507 |
and affecting 'rat' and 'real'.
|
wenzelm@47809
|
508 |
|
wenzelm@47809
|
509 |
* Sledgehammer:
|
wenzelm@47809
|
510 |
- Integrated more tightly with SPASS, as described in the ITP 2012
|
wenzelm@47809
|
511 |
paper "More SPASS with Isabelle".
|
wenzelm@47809
|
512 |
- Made it try "smt" as a fallback if "metis" fails or times out.
|
wenzelm@47809
|
513 |
- Added support for the following provers: Alt-Ergo (via Why3 and
|
wenzelm@47809
|
514 |
TFF1), iProver, iProver-Eq.
|
wenzelm@47809
|
515 |
- Sped up the minimizer.
|
wenzelm@47809
|
516 |
- Added "lam_trans", "uncurry_aliases", and "minimize" options.
|
wenzelm@47809
|
517 |
- Renamed "slicing" ("no_slicing") option to "slice" ("dont_slice").
|
wenzelm@47809
|
518 |
- Renamed "sound" option to "strict".
|
wenzelm@47809
|
519 |
|
wenzelm@47855
|
520 |
* Metis: Added possibility to specify lambda translations scheme as a
|
wenzelm@47855
|
521 |
parenthesized argument (e.g., "by (metis (lifting) ...)").
|
wenzelm@47855
|
522 |
|
wenzelm@47855
|
523 |
* SMT: Renamed "smt_fixed" option to "smt_read_only_certificates".
|
wenzelm@47855
|
524 |
|
wenzelm@47855
|
525 |
* Command 'try0': Renamed from 'try_methods'. INCOMPATIBILITY.
|
wenzelm@47809
|
526 |
|
wenzelm@47856
|
527 |
* New "case_product" attribute to generate a case rule doing multiple
|
wenzelm@47856
|
528 |
case distinctions at the same time. E.g.
|
wenzelm@47856
|
529 |
|
wenzelm@47856
|
530 |
list.exhaust [case_product nat.exhaust]
|
wenzelm@47856
|
531 |
|
wenzelm@47856
|
532 |
produces a rule which can be used to perform case distinction on both
|
wenzelm@47856
|
533 |
a list and a nat.
|
wenzelm@47856
|
534 |
|
wenzelm@47809
|
535 |
* New "eventually_elim" method as a generalized variant of the
|
wenzelm@47855
|
536 |
eventually_elim* rules. Supports structured proofs.
|
wenzelm@47855
|
537 |
|
wenzelm@47702
|
538 |
* Typedef with implicit set definition is considered legacy. Use
|
wenzelm@47702
|
539 |
"typedef (open)" form instead, which will eventually become the
|
wenzelm@47702
|
540 |
default.
|
wenzelm@47702
|
541 |
|
wenzelm@47856
|
542 |
* Record: code generation can be switched off manually with
|
wenzelm@47856
|
543 |
|
wenzelm@47856
|
544 |
declare [[record_coden = false]] -- "default true"
|
wenzelm@47856
|
545 |
|
wenzelm@47856
|
546 |
* Datatype: type parameters allow explicit sort constraints.
|
wenzelm@47856
|
547 |
|
wenzelm@47855
|
548 |
* Concrete syntax for case expressions includes constraints for source
|
wenzelm@47855
|
549 |
positions, and thus produces Prover IDE markup for its bindings.
|
wenzelm@47855
|
550 |
INCOMPATIBILITY for old-style syntax translations that augment the
|
wenzelm@47855
|
551 |
pattern notation; e.g. see src/HOL/HOLCF/One.thy for translations of
|
wenzelm@47855
|
552 |
one_case.
|
wenzelm@47855
|
553 |
|
wenzelm@47855
|
554 |
* Clarified attribute "mono_set": pure declaration without modifying
|
wenzelm@47855
|
555 |
the result of the fact expression.
|
wenzelm@47855
|
556 |
|
haftmann@46752
|
557 |
* More default pred/set conversions on a couple of relation operations
|
wenzelm@47464
|
558 |
and predicates. Added powers of predicate relations. Consolidation
|
wenzelm@47464
|
559 |
of some relation theorems:
|
haftmann@46752
|
560 |
|
haftmann@46752
|
561 |
converse_def ~> converse_unfold
|
haftmann@47549
|
562 |
rel_comp_def ~> relcomp_unfold
|
haftmann@47820
|
563 |
symp_def ~> (modified, use symp_def and sym_def instead)
|
haftmann@46752
|
564 |
transp_def ~> transp_trans
|
haftmann@46752
|
565 |
Domain_def ~> Domain_unfold
|
haftmann@46752
|
566 |
Range_def ~> Domain_converse [symmetric]
|
haftmann@46752
|
567 |
|
haftmann@46981
|
568 |
Generalized theorems INF_INT_eq, INF_INT_eq2, SUP_UN_eq, SUP_UN_eq2.
|
haftmann@46981
|
569 |
|
wenzelm@47464
|
570 |
See theory "Relation" for examples for making use of pred/set
|
wenzelm@47464
|
571 |
conversions by means of attributes "to_set" and "to_pred".
|
haftmann@47086
|
572 |
|
haftmann@46752
|
573 |
INCOMPATIBILITY.
|
haftmann@46752
|
574 |
|
bulwahn@46363
|
575 |
* Renamed facts about the power operation on relations, i.e., relpow
|
wenzelm@47464
|
576 |
to match the constant's name:
|
wenzelm@47463
|
577 |
|
wenzelm@46458
|
578 |
rel_pow_1 ~> relpow_1
|
bulwahn@46363
|
579 |
rel_pow_0_I ~> relpow_0_I
|
bulwahn@46363
|
580 |
rel_pow_Suc_I ~> relpow_Suc_I
|
bulwahn@46363
|
581 |
rel_pow_Suc_I2 ~> relpow_Suc_I2
|
bulwahn@46363
|
582 |
rel_pow_0_E ~> relpow_0_E
|
bulwahn@46363
|
583 |
rel_pow_Suc_E ~> relpow_Suc_E
|
bulwahn@46363
|
584 |
rel_pow_E ~> relpow_E
|
wenzelm@46458
|
585 |
rel_pow_Suc_D2 ~> relpow_Suc_D2
|
wenzelm@47463
|
586 |
rel_pow_Suc_E2 ~> relpow_Suc_E2
|
bulwahn@46363
|
587 |
rel_pow_Suc_D2' ~> relpow_Suc_D2'
|
bulwahn@46363
|
588 |
rel_pow_E2 ~> relpow_E2
|
bulwahn@46363
|
589 |
rel_pow_add ~> relpow_add
|
bulwahn@46363
|
590 |
rel_pow_commute ~> relpow
|
bulwahn@46363
|
591 |
rel_pow_empty ~> relpow_empty:
|
bulwahn@46363
|
592 |
rtrancl_imp_UN_rel_pow ~> rtrancl_imp_UN_relpow
|
bulwahn@46363
|
593 |
rel_pow_imp_rtrancl ~> relpow_imp_rtrancl
|
bulwahn@46363
|
594 |
rtrancl_is_UN_rel_pow ~> rtrancl_is_UN_relpow
|
bulwahn@46363
|
595 |
rtrancl_imp_rel_pow ~> rtrancl_imp_relpow
|
bulwahn@46363
|
596 |
rel_pow_fun_conv ~> relpow_fun_conv
|
bulwahn@46363
|
597 |
rel_pow_finite_bounded1 ~> relpow_finite_bounded1
|
bulwahn@46363
|
598 |
rel_pow_finite_bounded ~> relpow_finite_bounded
|
bulwahn@46363
|
599 |
rtrancl_finite_eq_rel_pow ~> rtrancl_finite_eq_relpow
|
bulwahn@46363
|
600 |
trancl_finite_eq_rel_pow ~> trancl_finite_eq_relpow
|
bulwahn@46363
|
601 |
single_valued_rel_pow ~> single_valued_relpow
|
wenzelm@47463
|
602 |
|
bulwahn@46363
|
603 |
INCOMPATIBILITY.
|
bulwahn@46363
|
604 |
|
bulwahn@47448
|
605 |
* Theory Relation: Consolidated constant name for relation composition
|
wenzelm@47464
|
606 |
and corresponding theorem names:
|
wenzelm@47464
|
607 |
|
haftmann@47549
|
608 |
- Renamed constant rel_comp to relcomp.
|
wenzelm@47464
|
609 |
|
bulwahn@47448
|
610 |
- Dropped abbreviation pred_comp. Use relcompp instead.
|
wenzelm@47464
|
611 |
|
bulwahn@47448
|
612 |
- Renamed theorems:
|
wenzelm@47464
|
613 |
|
bulwahn@47448
|
614 |
rel_compI ~> relcompI
|
bulwahn@47448
|
615 |
rel_compEpair ~> relcompEpair
|
bulwahn@47448
|
616 |
rel_compE ~> relcompE
|
bulwahn@47448
|
617 |
pred_comp_rel_comp_eq ~> relcompp_relcomp_eq
|
bulwahn@47448
|
618 |
rel_comp_empty1 ~> relcomp_empty1
|
bulwahn@47448
|
619 |
rel_comp_mono ~> relcomp_mono
|
bulwahn@47448
|
620 |
rel_comp_subset_Sigma ~> relcomp_subset_Sigma
|
bulwahn@47448
|
621 |
rel_comp_distrib ~> relcomp_distrib
|
bulwahn@47448
|
622 |
rel_comp_distrib2 ~> relcomp_distrib2
|
bulwahn@47448
|
623 |
rel_comp_UNION_distrib ~> relcomp_UNION_distrib
|
bulwahn@47448
|
624 |
rel_comp_UNION_distrib2 ~> relcomp_UNION_distrib2
|
bulwahn@47448
|
625 |
single_valued_rel_comp ~> single_valued_relcomp
|
haftmann@47549
|
626 |
rel_comp_def ~> relcomp_unfold
|
bulwahn@47448
|
627 |
converse_rel_comp ~> converse_relcomp
|
bulwahn@47448
|
628 |
pred_compI ~> relcomppI
|
bulwahn@47448
|
629 |
pred_compE ~> relcomppE
|
bulwahn@47448
|
630 |
pred_comp_bot1 ~> relcompp_bot1
|
bulwahn@47448
|
631 |
pred_comp_bot2 ~> relcompp_bot2
|
bulwahn@47448
|
632 |
transp_pred_comp_less_eq ~> transp_relcompp_less_eq
|
bulwahn@47448
|
633 |
pred_comp_mono ~> relcompp_mono
|
bulwahn@47448
|
634 |
pred_comp_distrib ~> relcompp_distrib
|
bulwahn@47448
|
635 |
pred_comp_distrib2 ~> relcompp_distrib2
|
bulwahn@47448
|
636 |
converse_pred_comp ~> converse_relcompp
|
wenzelm@47464
|
637 |
|
bulwahn@47448
|
638 |
finite_rel_comp ~> finite_relcomp
|
wenzelm@47464
|
639 |
|
bulwahn@47448
|
640 |
set_rel_comp ~> set_relcomp
|
bulwahn@47448
|
641 |
|
bulwahn@47448
|
642 |
INCOMPATIBILITY.
|
bulwahn@47448
|
643 |
|
haftmann@47550
|
644 |
* Theory Divides: Discontinued redundant theorems about div and mod.
|
haftmann@47550
|
645 |
INCOMPATIBILITY, use the corresponding generic theorems instead.
|
haftmann@47550
|
646 |
|
haftmann@47550
|
647 |
DIVISION_BY_ZERO ~> div_by_0, mod_by_0
|
haftmann@47550
|
648 |
zdiv_self ~> div_self
|
haftmann@47550
|
649 |
zmod_self ~> mod_self
|
haftmann@47550
|
650 |
zdiv_zero ~> div_0
|
haftmann@47550
|
651 |
zmod_zero ~> mod_0
|
haftmann@47550
|
652 |
zdiv_zmod_equality ~> div_mod_equality2
|
haftmann@47550
|
653 |
zdiv_zmod_equality2 ~> div_mod_equality
|
haftmann@47550
|
654 |
zmod_zdiv_trivial ~> mod_div_trivial
|
haftmann@47550
|
655 |
zdiv_zminus_zminus ~> div_minus_minus
|
haftmann@47550
|
656 |
zmod_zminus_zminus ~> mod_minus_minus
|
haftmann@47550
|
657 |
zdiv_zminus2 ~> div_minus_right
|
haftmann@47550
|
658 |
zmod_zminus2 ~> mod_minus_right
|
haftmann@47550
|
659 |
zdiv_minus1_right ~> div_minus1_right
|
haftmann@47550
|
660 |
zmod_minus1_right ~> mod_minus1_right
|
haftmann@47550
|
661 |
zdvd_mult_div_cancel ~> dvd_mult_div_cancel
|
haftmann@47550
|
662 |
zmod_zmult1_eq ~> mod_mult_right_eq
|
haftmann@47550
|
663 |
zpower_zmod ~> power_mod
|
haftmann@47550
|
664 |
zdvd_zmod ~> dvd_mod
|
haftmann@47550
|
665 |
zdvd_zmod_imp_zdvd ~> dvd_mod_imp_dvd
|
haftmann@47550
|
666 |
mod_mult_distrib ~> mult_mod_left
|
haftmann@47550
|
667 |
mod_mult_distrib2 ~> mult_mod_right
|
haftmann@47550
|
668 |
|
haftmann@47550
|
669 |
* Removed redundant theorems nat_mult_2 and nat_mult_2_right; use
|
haftmann@47550
|
670 |
generic mult_2 and mult_2_right instead. INCOMPATIBILITY.
|
haftmann@47550
|
671 |
|
haftmann@47551
|
672 |
* Finite_Set.fold now qualified. INCOMPATIBILITY.
|
haftmann@47551
|
673 |
|
haftmann@47552
|
674 |
* Consolidated theorem names concerning fold combinators:
|
haftmann@47550
|
675 |
|
haftmann@47550
|
676 |
inf_INFI_fold_inf ~> inf_INF_fold_inf
|
haftmann@47550
|
677 |
sup_SUPR_fold_sup ~> sup_SUP_fold_sup
|
haftmann@47550
|
678 |
INFI_fold_inf ~> INF_fold_inf
|
haftmann@47550
|
679 |
SUPR_fold_sup ~> SUP_fold_sup
|
haftmann@47550
|
680 |
union_set ~> union_set_fold
|
haftmann@47550
|
681 |
minus_set ~> minus_set_fold
|
haftmann@47550
|
682 |
INFI_set_fold ~> INF_set_fold
|
haftmann@47550
|
683 |
SUPR_set_fold ~> SUP_set_fold
|
haftmann@47550
|
684 |
INF_code ~> INF_set_foldr
|
haftmann@47550
|
685 |
SUP_code ~> SUP_set_foldr
|
haftmann@47550
|
686 |
foldr.simps ~> foldr.simps (in point-free formulation)
|
haftmann@47550
|
687 |
foldr_fold_rev ~> foldr_conv_fold
|
haftmann@47550
|
688 |
foldl_fold ~> foldl_conv_fold
|
haftmann@47550
|
689 |
foldr_foldr ~> foldr_conv_foldl
|
haftmann@47550
|
690 |
foldl_foldr ~> foldl_conv_foldr
|
haftmann@47552
|
691 |
fold_set_remdups ~> fold_set_fold_remdups
|
haftmann@47552
|
692 |
fold_set ~> fold_set_fold
|
haftmann@47552
|
693 |
fold1_set ~> fold1_set_fold
|
haftmann@47550
|
694 |
|
haftmann@47550
|
695 |
INCOMPATIBILITY.
|
haftmann@47550
|
696 |
|
haftmann@47550
|
697 |
* Dropped rarely useful theorems concerning fold combinators:
|
haftmann@47550
|
698 |
foldl_apply, foldl_fun_comm, foldl_rev, fold_weak_invariant,
|
haftmann@47550
|
699 |
rev_foldl_cons, fold_set_remdups, fold_set, fold_set1,
|
haftmann@47550
|
700 |
concat_conv_foldl, foldl_weak_invariant, foldl_invariant,
|
haftmann@47550
|
701 |
foldr_invariant, foldl_absorb0, foldl_foldr1_lemma, foldl_foldr1,
|
haftmann@47550
|
702 |
listsum_conv_fold, listsum_foldl, sort_foldl_insort, foldl_assoc,
|
haftmann@47550
|
703 |
foldr_conv_foldl, start_le_sum, elem_le_sum, sum_eq_0_conv.
|
haftmann@47550
|
704 |
INCOMPATIBILITY. For the common phrases "%xs. List.foldr plus xs 0"
|
haftmann@47550
|
705 |
and "List.foldl plus 0", prefer "List.listsum". Otherwise it can be
|
haftmann@47550
|
706 |
useful to boil down "List.foldr" and "List.foldl" to "List.fold" by
|
haftmann@47550
|
707 |
unfolding "foldr_conv_fold" and "foldl_conv_fold".
|
haftmann@47550
|
708 |
|
haftmann@47550
|
709 |
* Dropped lemmas minus_set_foldr, union_set_foldr, union_coset_foldr,
|
haftmann@47550
|
710 |
inter_coset_foldr, Inf_fin_set_foldr, Sup_fin_set_foldr,
|
haftmann@47550
|
711 |
Min_fin_set_foldr, Max_fin_set_foldr, Inf_set_foldr, Sup_set_foldr,
|
haftmann@47550
|
712 |
INF_set_foldr, SUP_set_foldr. INCOMPATIBILITY. Prefer corresponding
|
haftmann@47550
|
713 |
lemmas over fold rather than foldr, or make use of lemmas
|
haftmann@47550
|
714 |
fold_conv_foldr and fold_rev.
|
haftmann@47550
|
715 |
|
haftmann@47550
|
716 |
* Congruence rules Option.map_cong and Option.bind_cong for recursion
|
haftmann@47550
|
717 |
through option types.
|
haftmann@47550
|
718 |
|
wenzelm@47856
|
719 |
* "Transitive_Closure.ntrancl": bounded transitive closure on
|
wenzelm@47856
|
720 |
relations.
|
wenzelm@47856
|
721 |
|
wenzelm@47856
|
722 |
* Constant "Set.not_member" now qualified. INCOMPATIBILITY.
|
wenzelm@47856
|
723 |
|
wenzelm@47856
|
724 |
* Theory Int: Discontinued many legacy theorems specific to type int.
|
wenzelm@47856
|
725 |
INCOMPATIBILITY, use the corresponding generic theorems instead.
|
wenzelm@47856
|
726 |
|
wenzelm@47856
|
727 |
zminus_zminus ~> minus_minus
|
wenzelm@47856
|
728 |
zminus_0 ~> minus_zero
|
wenzelm@47856
|
729 |
zminus_zadd_distrib ~> minus_add_distrib
|
wenzelm@47856
|
730 |
zadd_commute ~> add_commute
|
wenzelm@47856
|
731 |
zadd_assoc ~> add_assoc
|
wenzelm@47856
|
732 |
zadd_left_commute ~> add_left_commute
|
wenzelm@47856
|
733 |
zadd_ac ~> add_ac
|
wenzelm@47856
|
734 |
zmult_ac ~> mult_ac
|
wenzelm@47856
|
735 |
zadd_0 ~> add_0_left
|
wenzelm@47856
|
736 |
zadd_0_right ~> add_0_right
|
wenzelm@47856
|
737 |
zadd_zminus_inverse2 ~> left_minus
|
wenzelm@47856
|
738 |
zmult_zminus ~> mult_minus_left
|
wenzelm@47856
|
739 |
zmult_commute ~> mult_commute
|
wenzelm@47856
|
740 |
zmult_assoc ~> mult_assoc
|
wenzelm@47856
|
741 |
zadd_zmult_distrib ~> left_distrib
|
wenzelm@47856
|
742 |
zadd_zmult_distrib2 ~> right_distrib
|
wenzelm@47856
|
743 |
zdiff_zmult_distrib ~> left_diff_distrib
|
wenzelm@47856
|
744 |
zdiff_zmult_distrib2 ~> right_diff_distrib
|
wenzelm@47856
|
745 |
zmult_1 ~> mult_1_left
|
wenzelm@47856
|
746 |
zmult_1_right ~> mult_1_right
|
wenzelm@47856
|
747 |
zle_refl ~> order_refl
|
wenzelm@47856
|
748 |
zle_trans ~> order_trans
|
wenzelm@47856
|
749 |
zle_antisym ~> order_antisym
|
wenzelm@47856
|
750 |
zle_linear ~> linorder_linear
|
wenzelm@47856
|
751 |
zless_linear ~> linorder_less_linear
|
wenzelm@47856
|
752 |
zadd_left_mono ~> add_left_mono
|
wenzelm@47856
|
753 |
zadd_strict_right_mono ~> add_strict_right_mono
|
wenzelm@47856
|
754 |
zadd_zless_mono ~> add_less_le_mono
|
wenzelm@47856
|
755 |
int_0_less_1 ~> zero_less_one
|
wenzelm@47856
|
756 |
int_0_neq_1 ~> zero_neq_one
|
wenzelm@47856
|
757 |
zless_le ~> less_le
|
wenzelm@47856
|
758 |
zpower_zadd_distrib ~> power_add
|
wenzelm@47856
|
759 |
zero_less_zpower_abs_iff ~> zero_less_power_abs_iff
|
wenzelm@47856
|
760 |
zero_le_zpower_abs ~> zero_le_power_abs
|
wenzelm@47856
|
761 |
|
wenzelm@47856
|
762 |
* Theory Deriv: Renamed
|
wenzelm@47856
|
763 |
|
wenzelm@47856
|
764 |
DERIV_nonneg_imp_nonincreasing ~> DERIV_nonneg_imp_nondecreasing
|
wenzelm@47856
|
765 |
|
wenzelm@47856
|
766 |
* Theory Library/Multiset: Improved code generation of multisets.
|
wenzelm@47856
|
767 |
|
wenzelm@47855
|
768 |
* Theory HOL/Library/Set_Algebras: Addition and multiplication on sets
|
krauss@47703
|
769 |
are expressed via type classes again. The special syntax
|
krauss@47703
|
770 |
\<oplus>/\<otimes> has been replaced by plain +/*. Removed constant
|
krauss@47703
|
771 |
setsum_set, which is now subsumed by Big_Operators.setsum.
|
krauss@47703
|
772 |
INCOMPATIBILITY.
|
krauss@47703
|
773 |
|
wenzelm@46160
|
774 |
* Theory HOL/Library/Diagonalize has been removed. INCOMPATIBILITY,
|
wenzelm@46160
|
775 |
use theory HOL/Library/Nat_Bijection instead.
|
wenzelm@46160
|
776 |
|
wenzelm@47464
|
777 |
* Theory HOL/Library/RBT_Impl: Backing implementation of red-black
|
wenzelm@47464
|
778 |
trees is now inside a type class context. Names of affected
|
wenzelm@47464
|
779 |
operations and lemmas have been prefixed by rbt_. INCOMPATIBILITY for
|
wenzelm@47464
|
780 |
theories working directly with raw red-black trees, adapt the names as
|
wenzelm@47464
|
781 |
follows:
|
Andreas@47452
|
782 |
|
Andreas@47452
|
783 |
Operations:
|
Andreas@47452
|
784 |
bulkload -> rbt_bulkload
|
Andreas@47452
|
785 |
del_from_left -> rbt_del_from_left
|
Andreas@47452
|
786 |
del_from_right -> rbt_del_from_right
|
Andreas@47452
|
787 |
del -> rbt_del
|
Andreas@47452
|
788 |
delete -> rbt_delete
|
Andreas@47452
|
789 |
ins -> rbt_ins
|
Andreas@47452
|
790 |
insert -> rbt_insert
|
Andreas@47452
|
791 |
insertw -> rbt_insert_with
|
Andreas@47452
|
792 |
insert_with_key -> rbt_insert_with_key
|
Andreas@47452
|
793 |
map_entry -> rbt_map_entry
|
Andreas@47452
|
794 |
lookup -> rbt_lookup
|
Andreas@47452
|
795 |
sorted -> rbt_sorted
|
Andreas@47452
|
796 |
tree_greater -> rbt_greater
|
Andreas@47452
|
797 |
tree_less -> rbt_less
|
Andreas@47452
|
798 |
tree_less_symbol -> rbt_less_symbol
|
Andreas@47452
|
799 |
union -> rbt_union
|
Andreas@47452
|
800 |
union_with -> rbt_union_with
|
Andreas@47452
|
801 |
union_with_key -> rbt_union_with_key
|
Andreas@47452
|
802 |
|
Andreas@47452
|
803 |
Lemmas:
|
Andreas@47452
|
804 |
balance_left_sorted -> balance_left_rbt_sorted
|
Andreas@47452
|
805 |
balance_left_tree_greater -> balance_left_rbt_greater
|
Andreas@47452
|
806 |
balance_left_tree_less -> balance_left_rbt_less
|
Andreas@47452
|
807 |
balance_right_sorted -> balance_right_rbt_sorted
|
Andreas@47452
|
808 |
balance_right_tree_greater -> balance_right_rbt_greater
|
Andreas@47452
|
809 |
balance_right_tree_less -> balance_right_rbt_less
|
Andreas@47452
|
810 |
balance_sorted -> balance_rbt_sorted
|
Andreas@47452
|
811 |
balance_tree_greater -> balance_rbt_greater
|
Andreas@47452
|
812 |
balance_tree_less -> balance_rbt_less
|
Andreas@47452
|
813 |
bulkload_is_rbt -> rbt_bulkload_is_rbt
|
Andreas@47452
|
814 |
combine_sorted -> combine_rbt_sorted
|
Andreas@47452
|
815 |
combine_tree_greater -> combine_rbt_greater
|
Andreas@47452
|
816 |
combine_tree_less -> combine_rbt_less
|
Andreas@47452
|
817 |
delete_in_tree -> rbt_delete_in_tree
|
Andreas@47452
|
818 |
delete_is_rbt -> rbt_delete_is_rbt
|
Andreas@47452
|
819 |
del_from_left_tree_greater -> rbt_del_from_left_rbt_greater
|
Andreas@47452
|
820 |
del_from_left_tree_less -> rbt_del_from_left_rbt_less
|
Andreas@47452
|
821 |
del_from_right_tree_greater -> rbt_del_from_right_rbt_greater
|
Andreas@47452
|
822 |
del_from_right_tree_less -> rbt_del_from_right_rbt_less
|
Andreas@47452
|
823 |
del_in_tree -> rbt_del_in_tree
|
Andreas@47452
|
824 |
del_inv1_inv2 -> rbt_del_inv1_inv2
|
Andreas@47452
|
825 |
del_sorted -> rbt_del_rbt_sorted
|
Andreas@47452
|
826 |
del_tree_greater -> rbt_del_rbt_greater
|
Andreas@47452
|
827 |
del_tree_less -> rbt_del_rbt_less
|
Andreas@47452
|
828 |
dom_lookup_Branch -> dom_rbt_lookup_Branch
|
Andreas@47452
|
829 |
entries_lookup -> entries_rbt_lookup
|
Andreas@47452
|
830 |
finite_dom_lookup -> finite_dom_rbt_lookup
|
Andreas@47452
|
831 |
insert_sorted -> rbt_insert_rbt_sorted
|
Andreas@47452
|
832 |
insertw_is_rbt -> rbt_insertw_is_rbt
|
Andreas@47452
|
833 |
insertwk_is_rbt -> rbt_insertwk_is_rbt
|
Andreas@47452
|
834 |
insertwk_sorted -> rbt_insertwk_rbt_sorted
|
Andreas@47452
|
835 |
insertw_sorted -> rbt_insertw_rbt_sorted
|
Andreas@47452
|
836 |
ins_sorted -> ins_rbt_sorted
|
Andreas@47452
|
837 |
ins_tree_greater -> ins_rbt_greater
|
Andreas@47452
|
838 |
ins_tree_less -> ins_rbt_less
|
Andreas@47452
|
839 |
is_rbt_sorted -> is_rbt_rbt_sorted
|
Andreas@47452
|
840 |
lookup_balance -> rbt_lookup_balance
|
Andreas@47452
|
841 |
lookup_bulkload -> rbt_lookup_rbt_bulkload
|
Andreas@47452
|
842 |
lookup_delete -> rbt_lookup_rbt_delete
|
Andreas@47452
|
843 |
lookup_Empty -> rbt_lookup_Empty
|
Andreas@47452
|
844 |
lookup_from_in_tree -> rbt_lookup_from_in_tree
|
Andreas@47452
|
845 |
lookup_in_tree -> rbt_lookup_in_tree
|
Andreas@47452
|
846 |
lookup_ins -> rbt_lookup_ins
|
Andreas@47452
|
847 |
lookup_insert -> rbt_lookup_rbt_insert
|
Andreas@47452
|
848 |
lookup_insertw -> rbt_lookup_rbt_insertw
|
Andreas@47452
|
849 |
lookup_insertwk -> rbt_lookup_rbt_insertwk
|
Andreas@47452
|
850 |
lookup_keys -> rbt_lookup_keys
|
Andreas@47452
|
851 |
lookup_map -> rbt_lookup_map
|
Andreas@47452
|
852 |
lookup_map_entry -> rbt_lookup_rbt_map_entry
|
Andreas@47452
|
853 |
lookup_tree_greater -> rbt_lookup_rbt_greater
|
Andreas@47452
|
854 |
lookup_tree_less -> rbt_lookup_rbt_less
|
Andreas@47452
|
855 |
lookup_union -> rbt_lookup_rbt_union
|
Andreas@47452
|
856 |
map_entry_color_of -> rbt_map_entry_color_of
|
Andreas@47452
|
857 |
map_entry_inv1 -> rbt_map_entry_inv1
|
Andreas@47452
|
858 |
map_entry_inv2 -> rbt_map_entry_inv2
|
Andreas@47452
|
859 |
map_entry_is_rbt -> rbt_map_entry_is_rbt
|
Andreas@47452
|
860 |
map_entry_sorted -> rbt_map_entry_rbt_sorted
|
Andreas@47452
|
861 |
map_entry_tree_greater -> rbt_map_entry_rbt_greater
|
Andreas@47452
|
862 |
map_entry_tree_less -> rbt_map_entry_rbt_less
|
Andreas@47452
|
863 |
map_tree_greater -> map_rbt_greater
|
Andreas@47452
|
864 |
map_tree_less -> map_rbt_less
|
Andreas@47452
|
865 |
map_sorted -> map_rbt_sorted
|
Andreas@47452
|
866 |
paint_sorted -> paint_rbt_sorted
|
Andreas@47452
|
867 |
paint_lookup -> paint_rbt_lookup
|
Andreas@47452
|
868 |
paint_tree_greater -> paint_rbt_greater
|
Andreas@47452
|
869 |
paint_tree_less -> paint_rbt_less
|
Andreas@47452
|
870 |
sorted_entries -> rbt_sorted_entries
|
Andreas@47452
|
871 |
tree_greater_eq_trans -> rbt_greater_eq_trans
|
Andreas@47452
|
872 |
tree_greater_nit -> rbt_greater_nit
|
Andreas@47452
|
873 |
tree_greater_prop -> rbt_greater_prop
|
Andreas@47452
|
874 |
tree_greater_simps -> rbt_greater_simps
|
Andreas@47452
|
875 |
tree_greater_trans -> rbt_greater_trans
|
Andreas@47452
|
876 |
tree_less_eq_trans -> rbt_less_eq_trans
|
Andreas@47452
|
877 |
tree_less_nit -> rbt_less_nit
|
Andreas@47452
|
878 |
tree_less_prop -> rbt_less_prop
|
Andreas@47452
|
879 |
tree_less_simps -> rbt_less_simps
|
Andreas@47452
|
880 |
tree_less_trans -> rbt_less_trans
|
Andreas@47452
|
881 |
tree_ord_props -> rbt_ord_props
|
Andreas@47452
|
882 |
union_Branch -> rbt_union_Branch
|
Andreas@47452
|
883 |
union_is_rbt -> rbt_union_is_rbt
|
Andreas@47452
|
884 |
unionw_is_rbt -> rbt_unionw_is_rbt
|
Andreas@47452
|
885 |
unionwk_is_rbt -> rbt_unionwk_is_rbt
|
Andreas@47452
|
886 |
unionwk_sorted -> rbt_unionwk_rbt_sorted
|
Andreas@47452
|
887 |
|
wenzelm@47807
|
888 |
* Theory HOL/Library/Float: Floating point numbers are now defined as
|
wenzelm@47807
|
889 |
a subset of the real numbers. All operations are defined using the
|
wenzelm@47807
|
890 |
lifing-framework and proofs use the transfer method. INCOMPATIBILITY.
|
hoelzl@47616
|
891 |
|
hoelzl@47616
|
892 |
Changed Operations:
|
hoelzl@47622
|
893 |
float_abs -> abs
|
hoelzl@47622
|
894 |
float_nprt -> nprt
|
hoelzl@47622
|
895 |
float_pprt -> pprt
|
hoelzl@47622
|
896 |
pow2 -> use powr
|
hoelzl@47622
|
897 |
round_down -> float_round_down
|
hoelzl@47622
|
898 |
round_up -> float_round_up
|
hoelzl@47622
|
899 |
scale -> exponent
|
hoelzl@47622
|
900 |
|
hoelzl@47622
|
901 |
Removed Operations:
|
hoelzl@47622
|
902 |
ceiling_fl, lb_mult, lb_mod, ub_mult, ub_mod
|
hoelzl@47622
|
903 |
|
hoelzl@47622
|
904 |
Renamed Lemmas:
|
hoelzl@47622
|
905 |
abs_float_def -> Float.compute_float_abs
|
hoelzl@47622
|
906 |
bitlen_ge0 -> bitlen_nonneg
|
hoelzl@47622
|
907 |
bitlen.simps -> Float.compute_bitlen
|
hoelzl@47622
|
908 |
float_components -> Float_mantissa_exponent
|
hoelzl@47622
|
909 |
float_divl.simps -> Float.compute_float_divl
|
hoelzl@47622
|
910 |
float_divr.simps -> Float.compute_float_divr
|
hoelzl@47622
|
911 |
float_eq_odd -> mult_powr_eq_mult_powr_iff
|
hoelzl@47622
|
912 |
float_power -> real_of_float_power
|
hoelzl@47622
|
913 |
lapprox_posrat_def -> Float.compute_lapprox_posrat
|
hoelzl@47622
|
914 |
lapprox_rat.simps -> Float.compute_lapprox_rat
|
hoelzl@47622
|
915 |
le_float_def' -> Float.compute_float_le
|
hoelzl@47622
|
916 |
le_float_def -> less_eq_float.rep_eq
|
hoelzl@47622
|
917 |
less_float_def' -> Float.compute_float_less
|
hoelzl@47622
|
918 |
less_float_def -> less_float.rep_eq
|
hoelzl@47622
|
919 |
normfloat_def -> Float.compute_normfloat
|
hoelzl@47622
|
920 |
normfloat_imp_odd_or_zero -> mantissa_not_dvd and mantissa_noteq_0
|
hoelzl@47622
|
921 |
normfloat -> normfloat_def
|
hoelzl@47622
|
922 |
normfloat_unique -> use normfloat_def
|
hoelzl@47622
|
923 |
number_of_float_Float -> Float.compute_float_numeral, Float.compute_float_neg_numeral
|
hoelzl@47622
|
924 |
one_float_def -> Float.compute_float_one
|
hoelzl@47622
|
925 |
plus_float_def -> Float.compute_float_plus
|
hoelzl@47622
|
926 |
rapprox_posrat_def -> Float.compute_rapprox_posrat
|
hoelzl@47622
|
927 |
rapprox_rat.simps -> Float.compute_rapprox_rat
|
hoelzl@47622
|
928 |
real_of_float_0 -> zero_float.rep_eq
|
hoelzl@47622
|
929 |
real_of_float_1 -> one_float.rep_eq
|
hoelzl@47622
|
930 |
real_of_float_abs -> abs_float.rep_eq
|
hoelzl@47622
|
931 |
real_of_float_add -> plus_float.rep_eq
|
hoelzl@47622
|
932 |
real_of_float_minus -> uminus_float.rep_eq
|
hoelzl@47622
|
933 |
real_of_float_mult -> times_float.rep_eq
|
hoelzl@47622
|
934 |
real_of_float_simp -> Float.rep_eq
|
hoelzl@47622
|
935 |
real_of_float_sub -> minus_float.rep_eq
|
hoelzl@47622
|
936 |
round_down.simps -> Float.compute_float_round_down
|
hoelzl@47622
|
937 |
round_up.simps -> Float.compute_float_round_up
|
hoelzl@47622
|
938 |
times_float_def -> Float.compute_float_times
|
hoelzl@47622
|
939 |
uminus_float_def -> Float.compute_float_uminus
|
hoelzl@47622
|
940 |
zero_float_def -> Float.compute_float_zero
|
hoelzl@47622
|
941 |
|
hoelzl@47622
|
942 |
Lemmas not necessary anymore, use the transfer method:
|
hoelzl@47622
|
943 |
bitlen_B0, bitlen_B1, bitlen_ge1, bitlen_Min, bitlen_Pls, float_divl,
|
hoelzl@47622
|
944 |
float_divr, float_le_simp, float_less1_mantissa_bound,
|
hoelzl@47622
|
945 |
float_less_simp, float_less_zero, float_le_zero,
|
hoelzl@47622
|
946 |
float_pos_less1_e_neg, float_pos_m_pos, float_split, float_split2,
|
hoelzl@47622
|
947 |
floor_pos_exp, lapprox_posrat, lapprox_posrat_bottom, lapprox_rat,
|
hoelzl@47622
|
948 |
lapprox_rat_bottom, normalized_float, rapprox_posrat,
|
hoelzl@47622
|
949 |
rapprox_posrat_le1, rapprox_rat, real_of_float_ge0_exp,
|
hoelzl@47622
|
950 |
real_of_float_neg_exp, real_of_float_nge0_exp, round_down floor_fl,
|
hoelzl@47622
|
951 |
round_up, zero_le_float, zero_less_float
|
hoelzl@47616
|
952 |
|
wenzelm@47856
|
953 |
* New theory HOL/Library/DAList provides an abstract type for
|
wenzelm@47856
|
954 |
association lists with distinct keys.
|
noschinl@45791
|
955 |
|
wenzelm@47866
|
956 |
* Session HOL/IMP: Added new theory of abstract interpretation of
|
wenzelm@47866
|
957 |
annotated commands.
|
wenzelm@47866
|
958 |
|
wenzelm@47855
|
959 |
* Session HOL-Import: Re-implementation from scratch is faster,
|
wenzelm@47855
|
960 |
simpler, and more scalable. Requires a proof bundle, which is
|
wenzelm@47855
|
961 |
available as an external component. Discontinued old (and mostly
|
wenzelm@47855
|
962 |
dead) Importer for HOL4 and HOL Light. INCOMPATIBILITY.
|
wenzelm@47855
|
963 |
|
wenzelm@47855
|
964 |
* Session HOL-Word: Discontinued many redundant theorems specific to
|
wenzelm@47855
|
965 |
type 'a word. INCOMPATIBILITY, use the corresponding generic theorems
|
wenzelm@47855
|
966 |
instead.
|
wenzelm@47855
|
967 |
|
wenzelm@47855
|
968 |
word_sub_alt ~> word_sub_wi
|
wenzelm@47855
|
969 |
word_add_alt ~> word_add_def
|
wenzelm@47855
|
970 |
word_mult_alt ~> word_mult_def
|
wenzelm@47855
|
971 |
word_minus_alt ~> word_minus_def
|
wenzelm@47855
|
972 |
word_0_alt ~> word_0_wi
|
wenzelm@47855
|
973 |
word_1_alt ~> word_1_wi
|
wenzelm@47855
|
974 |
word_add_0 ~> add_0_left
|
wenzelm@47855
|
975 |
word_add_0_right ~> add_0_right
|
wenzelm@47855
|
976 |
word_mult_1 ~> mult_1_left
|
wenzelm@47855
|
977 |
word_mult_1_right ~> mult_1_right
|
wenzelm@47855
|
978 |
word_add_commute ~> add_commute
|
wenzelm@47855
|
979 |
word_add_assoc ~> add_assoc
|
wenzelm@47855
|
980 |
word_add_left_commute ~> add_left_commute
|
wenzelm@47855
|
981 |
word_mult_commute ~> mult_commute
|
wenzelm@47855
|
982 |
word_mult_assoc ~> mult_assoc
|
wenzelm@47855
|
983 |
word_mult_left_commute ~> mult_left_commute
|
wenzelm@47855
|
984 |
word_left_distrib ~> left_distrib
|
wenzelm@47855
|
985 |
word_right_distrib ~> right_distrib
|
wenzelm@47855
|
986 |
word_left_minus ~> left_minus
|
wenzelm@47855
|
987 |
word_diff_0_right ~> diff_0_right
|
wenzelm@47855
|
988 |
word_diff_self ~> diff_self
|
wenzelm@47855
|
989 |
word_sub_def ~> diff_minus
|
wenzelm@47855
|
990 |
word_diff_minus ~> diff_minus
|
wenzelm@47855
|
991 |
word_add_ac ~> add_ac
|
wenzelm@47855
|
992 |
word_mult_ac ~> mult_ac
|
wenzelm@47855
|
993 |
word_plus_ac0 ~> add_0_left add_0_right add_ac
|
wenzelm@47855
|
994 |
word_times_ac1 ~> mult_1_left mult_1_right mult_ac
|
wenzelm@47855
|
995 |
word_order_trans ~> order_trans
|
wenzelm@47855
|
996 |
word_order_refl ~> order_refl
|
wenzelm@47855
|
997 |
word_order_antisym ~> order_antisym
|
wenzelm@47855
|
998 |
word_order_linear ~> linorder_linear
|
wenzelm@47855
|
999 |
lenw1_zero_neq_one ~> zero_neq_one
|
wenzelm@47855
|
1000 |
word_number_of_eq ~> number_of_eq
|
wenzelm@47855
|
1001 |
word_of_int_add_hom ~> wi_hom_add
|
wenzelm@47855
|
1002 |
word_of_int_sub_hom ~> wi_hom_sub
|
wenzelm@47855
|
1003 |
word_of_int_mult_hom ~> wi_hom_mult
|
wenzelm@47855
|
1004 |
word_of_int_minus_hom ~> wi_hom_neg
|
wenzelm@47855
|
1005 |
word_of_int_succ_hom ~> wi_hom_succ
|
wenzelm@47855
|
1006 |
word_of_int_pred_hom ~> wi_hom_pred
|
wenzelm@47855
|
1007 |
word_of_int_0_hom ~> word_0_wi
|
wenzelm@47855
|
1008 |
word_of_int_1_hom ~> word_1_wi
|
wenzelm@47855
|
1009 |
|
wenzelm@47809
|
1010 |
* Session HOL-Word: New proof method "word_bitwise" for splitting
|
wenzelm@47809
|
1011 |
machine word equalities and inequalities into logical circuits,
|
wenzelm@47809
|
1012 |
defined in HOL/Word/WordBitwise.thy. Supports addition, subtraction,
|
wenzelm@47809
|
1013 |
multiplication, shifting by constants, bitwise operators and numeric
|
wenzelm@47809
|
1014 |
constants. Requires fixed-length word types, not 'a word. Solves
|
wenzelm@47854
|
1015 |
many standard word identities outright and converts more into first
|
wenzelm@47809
|
1016 |
order problems amenable to blast or similar. See also examples in
|
wenzelm@47809
|
1017 |
HOL/Word/Examples/WordExamples.thy.
|
wenzelm@47809
|
1018 |
|
wenzelm@47807
|
1019 |
* Session HOL-Probability: Introduced the type "'a measure" to
|
wenzelm@47807
|
1020 |
represent measures, this replaces the records 'a algebra and 'a
|
wenzelm@47807
|
1021 |
measure_space. The locales based on subset_class now have two
|
wenzelm@47856
|
1022 |
locale-parameters the space \<Omega> and the set of measurable sets M.
|
wenzelm@47856
|
1023 |
The product of probability spaces uses now the same constant as the
|
wenzelm@47856
|
1024 |
finite product of sigma-finite measure spaces "PiM :: ('i => 'a)
|
wenzelm@47807
|
1025 |
measure". Most constants are defined now outside of locales and gain
|
wenzelm@47807
|
1026 |
an additional parameter, like null_sets, almost_eventually or \<mu>'.
|
wenzelm@47807
|
1027 |
Measure space constructions for distributions and densities now got
|
wenzelm@47807
|
1028 |
their own constants distr and density. Instead of using locales to
|
wenzelm@47807
|
1029 |
describe measure spaces with a finite space, the measure count_space
|
wenzelm@47807
|
1030 |
and point_measure is introduced. INCOMPATIBILITY.
|
hoelzl@47694
|
1031 |
|
hoelzl@47694
|
1032 |
Renamed constants:
|
hoelzl@47694
|
1033 |
measure -> emeasure
|
hoelzl@47694
|
1034 |
finite_measure.\<mu>' -> measure
|
hoelzl@47694
|
1035 |
product_algebra_generator -> prod_algebra
|
hoelzl@47694
|
1036 |
product_prob_space.emb -> prod_emb
|
hoelzl@47694
|
1037 |
product_prob_space.infprod_algebra -> PiM
|
hoelzl@47694
|
1038 |
|
hoelzl@47694
|
1039 |
Removed locales:
|
hoelzl@47694
|
1040 |
completeable_measure_space
|
hoelzl@47694
|
1041 |
finite_measure_space
|
hoelzl@47694
|
1042 |
finite_prob_space
|
hoelzl@47694
|
1043 |
finite_product_finite_prob_space
|
hoelzl@47694
|
1044 |
finite_product_sigma_algebra
|
hoelzl@47694
|
1045 |
finite_sigma_algebra
|
hoelzl@47694
|
1046 |
measure_space
|
hoelzl@47694
|
1047 |
pair_finite_prob_space
|
hoelzl@47694
|
1048 |
pair_finite_sigma_algebra
|
hoelzl@47694
|
1049 |
pair_finite_space
|
hoelzl@47694
|
1050 |
pair_sigma_algebra
|
hoelzl@47694
|
1051 |
product_sigma_algebra
|
hoelzl@47694
|
1052 |
|
hoelzl@47694
|
1053 |
Removed constants:
|
hoelzl@47751
|
1054 |
conditional_space
|
hoelzl@47694
|
1055 |
distribution -> use distr measure, or distributed predicate
|
hoelzl@47751
|
1056 |
image_space
|
hoelzl@47694
|
1057 |
joint_distribution -> use distr measure, or distributed predicate
|
hoelzl@47751
|
1058 |
pair_measure_generator
|
hoelzl@47694
|
1059 |
product_prob_space.infprod_algebra -> use PiM
|
hoelzl@47694
|
1060 |
subvimage
|
hoelzl@47694
|
1061 |
|
hoelzl@47694
|
1062 |
Replacement theorems:
|
hoelzl@47751
|
1063 |
finite_additivity_sufficient -> ring_of_sets.countably_additiveI_finite
|
hoelzl@47751
|
1064 |
finite_measure.empty_measure -> measure_empty
|
hoelzl@47751
|
1065 |
finite_measure.finite_continuity_from_above -> finite_measure.finite_Lim_measure_decseq
|
hoelzl@47751
|
1066 |
finite_measure.finite_continuity_from_below -> finite_measure.finite_Lim_measure_incseq
|
hoelzl@47751
|
1067 |
finite_measure.finite_measure_countably_subadditive -> finite_measure.finite_measure_subadditive_countably
|
hoelzl@47751
|
1068 |
finite_measure.finite_measure_eq -> finite_measure.emeasure_eq_measure
|
hoelzl@47751
|
1069 |
finite_measure.finite_measure -> finite_measure.emeasure_finite
|
hoelzl@47751
|
1070 |
finite_measure.finite_measure_finite_singleton -> finite_measure.finite_measure_eq_setsum_singleton
|
hoelzl@47751
|
1071 |
finite_measure.positive_measure' -> measure_nonneg
|
hoelzl@47751
|
1072 |
finite_measure.real_measure -> finite_measure.emeasure_real
|
hoelzl@47751
|
1073 |
finite_product_prob_space.finite_measure_times -> finite_product_prob_space.finite_measure_PiM_emb
|
hoelzl@47751
|
1074 |
finite_product_sigma_algebra.in_P -> sets_PiM_I_finite
|
hoelzl@47751
|
1075 |
finite_product_sigma_algebra.P_empty -> space_PiM_empty, sets_PiM_empty
|
hoelzl@47751
|
1076 |
information_space.conditional_entropy_eq -> information_space.conditional_entropy_simple_distributed
|
hoelzl@47751
|
1077 |
information_space.conditional_entropy_positive -> information_space.conditional_entropy_nonneg_simple
|
hoelzl@47751
|
1078 |
information_space.conditional_mutual_information_eq_mutual_information -> information_space.conditional_mutual_information_eq_mutual_information_simple
|
hoelzl@47751
|
1079 |
information_space.conditional_mutual_information_generic_positive -> information_space.conditional_mutual_information_nonneg_simple
|
hoelzl@47751
|
1080 |
information_space.conditional_mutual_information_positive -> information_space.conditional_mutual_information_nonneg_simple
|
hoelzl@47751
|
1081 |
information_space.entropy_commute -> information_space.entropy_commute_simple
|
hoelzl@47751
|
1082 |
information_space.entropy_eq -> information_space.entropy_simple_distributed
|
hoelzl@47751
|
1083 |
information_space.entropy_generic_eq -> information_space.entropy_simple_distributed
|
hoelzl@47751
|
1084 |
information_space.entropy_positive -> information_space.entropy_nonneg_simple
|
hoelzl@47751
|
1085 |
information_space.entropy_uniform_max -> information_space.entropy_uniform
|
hoelzl@47751
|
1086 |
information_space.KL_eq_0_imp -> information_space.KL_eq_0_iff_eq
|
hoelzl@47751
|
1087 |
information_space.KL_eq_0 -> information_space.KL_same_eq_0
|
hoelzl@47751
|
1088 |
information_space.KL_ge_0 -> information_space.KL_nonneg
|
hoelzl@47751
|
1089 |
information_space.mutual_information_eq -> information_space.mutual_information_simple_distributed
|
hoelzl@47751
|
1090 |
information_space.mutual_information_positive -> information_space.mutual_information_nonneg_simple
|
hoelzl@47751
|
1091 |
Int_stable_cuboids -> Int_stable_atLeastAtMost
|
hoelzl@47751
|
1092 |
Int_stable_product_algebra_generator -> positive_integral
|
hoelzl@47751
|
1093 |
measure_preserving -> equality "distr M N f = N" "f : measurable M N"
|
hoelzl@47694
|
1094 |
measure_space.additive -> emeasure_additive
|
hoelzl@47751
|
1095 |
measure_space.AE_iff_null_set -> AE_iff_null
|
hoelzl@47751
|
1096 |
measure_space.almost_everywhere_def -> eventually_ae_filter
|
hoelzl@47751
|
1097 |
measure_space.almost_everywhere_vimage -> AE_distrD
|
hoelzl@47751
|
1098 |
measure_space.continuity_from_above -> INF_emeasure_decseq
|
hoelzl@47751
|
1099 |
measure_space.continuity_from_above_Lim -> Lim_emeasure_decseq
|
hoelzl@47751
|
1100 |
measure_space.continuity_from_below_Lim -> Lim_emeasure_incseq
|
hoelzl@47694
|
1101 |
measure_space.continuity_from_below -> SUP_emeasure_incseq
|
hoelzl@47751
|
1102 |
measure_space_density -> emeasure_density
|
hoelzl@47751
|
1103 |
measure_space.density_is_absolutely_continuous -> absolutely_continuousI_density
|
hoelzl@47751
|
1104 |
measure_space.integrable_vimage -> integrable_distr
|
hoelzl@47751
|
1105 |
measure_space.integral_translated_density -> integral_density
|
hoelzl@47751
|
1106 |
measure_space.integral_vimage -> integral_distr
|
hoelzl@47751
|
1107 |
measure_space.measure_additive -> plus_emeasure
|
hoelzl@47751
|
1108 |
measure_space.measure_compl -> emeasure_compl
|
hoelzl@47751
|
1109 |
measure_space.measure_countable_increasing -> emeasure_countable_increasing
|
hoelzl@47751
|
1110 |
measure_space.measure_countably_subadditive -> emeasure_subadditive_countably
|
hoelzl@47694
|
1111 |
measure_space.measure_decseq -> decseq_emeasure
|
hoelzl@47751
|
1112 |
measure_space.measure_Diff -> emeasure_Diff
|
hoelzl@47751
|
1113 |
measure_space.measure_Diff_null_set -> emeasure_Diff_null_set
|
hoelzl@47694
|
1114 |
measure_space.measure_eq_0 -> emeasure_eq_0
|
hoelzl@47694
|
1115 |
measure_space.measure_finitely_subadditive -> emeasure_subadditive_finite
|
hoelzl@47751
|
1116 |
measure_space.measure_finite_singleton -> emeasure_eq_setsum_singleton
|
hoelzl@47751
|
1117 |
measure_space.measure_incseq -> incseq_emeasure
|
hoelzl@47751
|
1118 |
measure_space.measure_insert -> emeasure_insert
|
hoelzl@47751
|
1119 |
measure_space.measure_mono -> emeasure_mono
|
hoelzl@47751
|
1120 |
measure_space.measure_not_negative -> emeasure_not_MInf
|
hoelzl@47751
|
1121 |
measure_space.measure_preserving_Int_stable -> measure_eqI_generator_eq
|
hoelzl@47751
|
1122 |
measure_space.measure_setsum -> setsum_emeasure
|
hoelzl@47751
|
1123 |
measure_space.measure_setsum_split -> setsum_emeasure_cover
|
hoelzl@47694
|
1124 |
measure_space.measure_space_vimage -> emeasure_distr
|
hoelzl@47751
|
1125 |
measure_space.measure_subadditive_finite -> emeasure_subadditive_finite
|
hoelzl@47751
|
1126 |
measure_space.measure_subadditive -> subadditive
|
hoelzl@47751
|
1127 |
measure_space.measure_top -> emeasure_space
|
hoelzl@47751
|
1128 |
measure_space.measure_UN_eq_0 -> emeasure_UN_eq_0
|
hoelzl@47751
|
1129 |
measure_space.measure_Un_null_set -> emeasure_Un_null_set
|
hoelzl@47751
|
1130 |
measure_space.positive_integral_translated_density -> positive_integral_density
|
hoelzl@47751
|
1131 |
measure_space.positive_integral_vimage -> positive_integral_distr
|
hoelzl@47694
|
1132 |
measure_space.real_continuity_from_above -> Lim_measure_decseq
|
hoelzl@47751
|
1133 |
measure_space.real_continuity_from_below -> Lim_measure_incseq
|
hoelzl@47694
|
1134 |
measure_space.real_measure_countably_subadditive -> measure_subadditive_countably
|
hoelzl@47751
|
1135 |
measure_space.real_measure_Diff -> measure_Diff
|
hoelzl@47751
|
1136 |
measure_space.real_measure_finite_Union -> measure_finite_Union
|
hoelzl@47751
|
1137 |
measure_space.real_measure_setsum_singleton -> measure_eq_setsum_singleton
|
hoelzl@47751
|
1138 |
measure_space.real_measure_subadditive -> measure_subadditive
|
hoelzl@47751
|
1139 |
measure_space.real_measure_Union -> measure_Union
|
hoelzl@47751
|
1140 |
measure_space.real_measure_UNION -> measure_UNION
|
hoelzl@47694
|
1141 |
measure_space.simple_function_vimage -> simple_function_comp
|
hoelzl@47694
|
1142 |
measure_space.simple_integral_vimage -> simple_integral_distr
|
hoelzl@47751
|
1143 |
measure_space.simple_integral_vimage -> simple_integral_distr
|
hoelzl@47751
|
1144 |
measure_unique_Int_stable -> measure_eqI_generator_eq
|
hoelzl@47751
|
1145 |
measure_unique_Int_stable_vimage -> measure_eqI_generator_eq
|
hoelzl@47694
|
1146 |
pair_sigma_algebra.measurable_cut_fst -> sets_Pair1
|
hoelzl@47694
|
1147 |
pair_sigma_algebra.measurable_cut_snd -> sets_Pair2
|
hoelzl@47694
|
1148 |
pair_sigma_algebra.measurable_pair_image_fst -> measurable_Pair1
|
hoelzl@47694
|
1149 |
pair_sigma_algebra.measurable_pair_image_snd -> measurable_Pair2
|
hoelzl@47694
|
1150 |
pair_sigma_algebra.measurable_product_swap -> measurable_pair_swap_iff
|
hoelzl@47694
|
1151 |
pair_sigma_algebra.pair_sigma_algebra_measurable -> measurable_pair_swap
|
hoelzl@47694
|
1152 |
pair_sigma_algebra.pair_sigma_algebra_swap_measurable -> measurable_pair_swap'
|
hoelzl@47694
|
1153 |
pair_sigma_algebra.sets_swap -> sets_pair_swap
|
hoelzl@47751
|
1154 |
pair_sigma_finite.measure_cut_measurable_fst -> pair_sigma_finite.measurable_emeasure_Pair1
|
hoelzl@47751
|
1155 |
pair_sigma_finite.measure_cut_measurable_snd -> pair_sigma_finite.measurable_emeasure_Pair2
|
hoelzl@47751
|
1156 |
pair_sigma_finite.measure_preserving_swap -> pair_sigma_finite.distr_pair_swap
|
hoelzl@47751
|
1157 |
pair_sigma_finite.pair_measure_alt2 -> pair_sigma_finite.emeasure_pair_measure_alt2
|
hoelzl@47751
|
1158 |
pair_sigma_finite.pair_measure_alt -> pair_sigma_finite.emeasure_pair_measure_alt
|
hoelzl@47751
|
1159 |
pair_sigma_finite.pair_measure_times -> pair_sigma_finite.emeasure_pair_measure_Times
|
hoelzl@47751
|
1160 |
prob_space.indep_distribution_eq_measure -> prob_space.indep_vars_iff_distr_eq_PiM
|
hoelzl@47751
|
1161 |
prob_space.indep_var_distributionD -> prob_space.indep_var_distribution_eq
|
hoelzl@47694
|
1162 |
prob_space.measure_space_1 -> prob_space.emeasure_space_1
|
hoelzl@47694
|
1163 |
prob_space.prob_space_vimage -> prob_space_distr
|
hoelzl@47694
|
1164 |
prob_space.random_variable_restrict -> measurable_restrict
|
hoelzl@47751
|
1165 |
prob_space_unique_Int_stable -> measure_eqI_prob_space
|
hoelzl@47751
|
1166 |
product_algebraE -> prod_algebraE_all
|
hoelzl@47751
|
1167 |
product_algebra_generator_der -> prod_algebra_eq_finite
|
hoelzl@47751
|
1168 |
product_algebra_generator_into_space -> prod_algebra_sets_into_space
|
hoelzl@47751
|
1169 |
product_algebraI -> sets_PiM_I_finite
|
hoelzl@47751
|
1170 |
product_measure_exists -> product_sigma_finite.sigma_finite
|
hoelzl@47694
|
1171 |
product_prob_space.finite_index_eq_finite_product -> product_prob_space.sets_PiM_generator
|
hoelzl@47694
|
1172 |
product_prob_space.finite_measure_infprod_emb_Pi -> product_prob_space.measure_PiM_emb
|
hoelzl@47694
|
1173 |
product_prob_space.infprod_spec -> product_prob_space.emeasure_PiM_emb_not_empty
|
hoelzl@47694
|
1174 |
product_prob_space.measurable_component -> measurable_component_singleton
|
hoelzl@47694
|
1175 |
product_prob_space.measurable_emb -> measurable_prod_emb
|
hoelzl@47694
|
1176 |
product_prob_space.measurable_into_infprod_algebra -> measurable_PiM_single
|
hoelzl@47694
|
1177 |
product_prob_space.measurable_singleton_infprod -> measurable_component_singleton
|
hoelzl@47694
|
1178 |
product_prob_space.measure_emb -> emeasure_prod_emb
|
hoelzl@47751
|
1179 |
product_prob_space.measure_preserving_restrict -> product_prob_space.distr_restrict
|
hoelzl@47751
|
1180 |
product_sigma_algebra.product_algebra_into_space -> space_closed
|
hoelzl@47751
|
1181 |
product_sigma_finite.measure_fold -> product_sigma_finite.distr_merge
|
hoelzl@47751
|
1182 |
product_sigma_finite.measure_preserving_component_singelton -> product_sigma_finite.distr_singleton
|
hoelzl@47751
|
1183 |
product_sigma_finite.measure_preserving_merge -> product_sigma_finite.distr_merge
|
hoelzl@47694
|
1184 |
sequence_space.measure_infprod -> sequence_space.measure_PiM_countable
|
hoelzl@47751
|
1185 |
sets_product_algebra -> sets_PiM
|
hoelzl@47751
|
1186 |
sigma_algebra.measurable_sigma -> measurable_measure_of
|
hoelzl@47751
|
1187 |
sigma_finite_measure.disjoint_sigma_finite -> sigma_finite_disjoint
|
hoelzl@47751
|
1188 |
sigma_finite_measure.RN_deriv_vimage -> sigma_finite_measure.RN_deriv_distr
|
hoelzl@47751
|
1189 |
sigma_product_algebra_sigma_eq -> sigma_prod_algebra_sigma_eq
|
hoelzl@47751
|
1190 |
space_product_algebra -> space_PiM
|
hoelzl@47694
|
1191 |
|
wenzelm@47855
|
1192 |
* Session HOL-TPTP: support to parse and import TPTP problems (all
|
wenzelm@47855
|
1193 |
languages) into Isabelle/HOL.
|
wenzelm@47413
|
1194 |
|
blanchet@45398
|
1195 |
|
noschinl@45160
|
1196 |
*** FOL ***
|
noschinl@45160
|
1197 |
|
wenzelm@45383
|
1198 |
* New "case_product" attribute (see HOL).
|
noschinl@45160
|
1199 |
|
wenzelm@45109
|
1200 |
|
wenzelm@47463
|
1201 |
*** ZF ***
|
wenzelm@47463
|
1202 |
|
wenzelm@47463
|
1203 |
* Greater support for structured proofs involving induction or case
|
wenzelm@47463
|
1204 |
analysis.
|
wenzelm@47463
|
1205 |
|
wenzelm@47463
|
1206 |
* Much greater use of mathematical symbols.
|
wenzelm@47463
|
1207 |
|
wenzelm@47463
|
1208 |
* Removal of many ML theorem bindings. INCOMPATIBILITY.
|
wenzelm@47463
|
1209 |
|
wenzelm@47463
|
1210 |
|
wenzelm@45128
|
1211 |
*** ML ***
|
wenzelm@45128
|
1212 |
|
wenzelm@46948
|
1213 |
* Antiquotation @{keyword "name"} produces a parser for outer syntax
|
wenzelm@46948
|
1214 |
from a minor keyword introduced via theory header declaration.
|
wenzelm@46948
|
1215 |
|
wenzelm@46961
|
1216 |
* Antiquotation @{command_spec "name"} produces the
|
wenzelm@46961
|
1217 |
Outer_Syntax.command_spec from a major keyword introduced via theory
|
wenzelm@46961
|
1218 |
header declaration; it can be passed to Outer_Syntax.command etc.
|
wenzelm@46961
|
1219 |
|
wenzelm@46916
|
1220 |
* Local_Theory.define no longer hard-wires default theorem name
|
wenzelm@46992
|
1221 |
"foo_def", but retains the binding as given. If that is Binding.empty
|
wenzelm@46992
|
1222 |
/ Attrib.empty_binding, the result is not registered as user-level
|
wenzelm@46992
|
1223 |
fact. The Local_Theory.define_internal variant allows to specify a
|
wenzelm@46992
|
1224 |
non-empty name (used for the foundation in the background theory),
|
wenzelm@46992
|
1225 |
while omitting the fact binding in the user-context. Potential
|
wenzelm@46992
|
1226 |
INCOMPATIBILITY for derived definitional packages: need to specify
|
wenzelm@46992
|
1227 |
naming policy for primitive definitions more explicitly.
|
wenzelm@46916
|
1228 |
|
wenzelm@46497
|
1229 |
* Renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in
|
wenzelm@46497
|
1230 |
conformance with similar operations in structure Term and Logic.
|
wenzelm@46497
|
1231 |
|
wenzelm@45592
|
1232 |
* Antiquotation @{attributes [...]} embeds attribute source
|
wenzelm@45592
|
1233 |
representation into the ML text, which is particularly useful with
|
wenzelm@45592
|
1234 |
declarations like Local_Theory.note.
|
wenzelm@45592
|
1235 |
|
wenzelm@45128
|
1236 |
* Structure Proof_Context follows standard naming scheme. Old
|
wenzelm@45128
|
1237 |
ProofContext has been discontinued. INCOMPATIBILITY.
|
wenzelm@45128
|
1238 |
|
wenzelm@45293
|
1239 |
* Refined Local_Theory.declaration {syntax, pervasive}, with subtle
|
wenzelm@45298
|
1240 |
change of semantics: update is applied to auxiliary local theory
|
wenzelm@45293
|
1241 |
context as well.
|
wenzelm@45293
|
1242 |
|
wenzelm@45620
|
1243 |
* Modernized some old-style infix operations:
|
wenzelm@45620
|
1244 |
|
wenzelm@45620
|
1245 |
addeqcongs ~> Simplifier.add_eqcong
|
wenzelm@45620
|
1246 |
deleqcongs ~> Simplifier.del_eqcong
|
wenzelm@45620
|
1247 |
addcongs ~> Simplifier.add_cong
|
wenzelm@45620
|
1248 |
delcongs ~> Simplifier.del_cong
|
wenzelm@45625
|
1249 |
setmksimps ~> Simplifier.set_mksimps
|
wenzelm@45625
|
1250 |
setmkcong ~> Simplifier.set_mkcong
|
wenzelm@45625
|
1251 |
setmksym ~> Simplifier.set_mksym
|
wenzelm@45625
|
1252 |
setmkeqTrue ~> Simplifier.set_mkeqTrue
|
wenzelm@45625
|
1253 |
settermless ~> Simplifier.set_termless
|
wenzelm@45625
|
1254 |
setsubgoaler ~> Simplifier.set_subgoaler
|
wenzelm@45620
|
1255 |
addsplits ~> Splitter.add_split
|
wenzelm@45620
|
1256 |
delsplits ~> Splitter.del_split
|
wenzelm@45620
|
1257 |
|
wenzelm@45128
|
1258 |
|
wenzelm@47461
|
1259 |
*** System ***
|
wenzelm@47461
|
1260 |
|
wenzelm@47661
|
1261 |
* USER_HOME settings variable points to cross-platform user home
|
wenzelm@47661
|
1262 |
directory, which coincides with HOME on POSIX systems only. Likewise,
|
wenzelm@47661
|
1263 |
the Isabelle path specification "~" now expands to $USER_HOME, instead
|
wenzelm@47661
|
1264 |
of former $HOME. A different default for USER_HOME may be set
|
wenzelm@47661
|
1265 |
explicitly in shell environment, before Isabelle settings are
|
wenzelm@47661
|
1266 |
evaluated. Minor INCOMPATIBILITY: need to adapt Isabelle path where
|
wenzelm@47661
|
1267 |
the generic user home was intended.
|
wenzelm@47661
|
1268 |
|
wenzelm@47807
|
1269 |
* ISABELLE_HOME_WINDOWS refers to ISABELLE_HOME in windows file name
|
wenzelm@47807
|
1270 |
notation, which is useful for the jEdit file browser, for example.
|
wenzelm@47807
|
1271 |
|
wenzelm@47464
|
1272 |
* ISABELLE_JDK_HOME settings variable points to JDK with javac and jar
|
wenzelm@47464
|
1273 |
(not just JRE).
|
wenzelm@47464
|
1274 |
|
wenzelm@47461
|
1275 |
|
wenzelm@45109
|
1276 |
|
wenzelm@44801
|
1277 |
New in Isabelle2011-1 (October 2011)
|
wenzelm@44801
|
1278 |
------------------------------------
|
wenzelm@41651
|
1279 |
|
wenzelm@41703
|
1280 |
*** General ***
|
wenzelm@41703
|
1281 |
|
wenzelm@44760
|
1282 |
* Improved Isabelle/jEdit Prover IDE (PIDE), which can be invoked as
|
wenzelm@44968
|
1283 |
"isabelle jedit" or "ISABELLE_HOME/Isabelle" on the command line.
|
wenzelm@44760
|
1284 |
|
wenzelm@44777
|
1285 |
- Management of multiple theory files directly from the editor
|
wenzelm@44760
|
1286 |
buffer store -- bypassing the file-system (no requirement to save
|
wenzelm@44760
|
1287 |
files for checking).
|
wenzelm@44760
|
1288 |
|
wenzelm@44777
|
1289 |
- Markup of formal entities within the text buffer, with semantic
|
wenzelm@44760
|
1290 |
highlighting, tooltips and hyperlinks to jump to defining source
|
wenzelm@44760
|
1291 |
positions.
|
wenzelm@44760
|
1292 |
|
wenzelm@44777
|
1293 |
- Improved text rendering, with sub/superscripts in the source
|
wenzelm@44777
|
1294 |
buffer (including support for copy/paste wrt. output panel, HTML
|
wenzelm@44777
|
1295 |
theory output and other non-Isabelle text boxes).
|
wenzelm@44777
|
1296 |
|
wenzelm@44777
|
1297 |
- Refined scheduling of proof checking and printing of results,
|
wenzelm@44760
|
1298 |
based on interactive editor view. (Note: jEdit folding and
|
wenzelm@44760
|
1299 |
narrowing allows to restrict buffer perspectives explicitly.)
|
wenzelm@44760
|
1300 |
|
wenzelm@44777
|
1301 |
- Reduced CPU performance requirements, usable on machines with few
|
wenzelm@44760
|
1302 |
cores.
|
wenzelm@44760
|
1303 |
|
wenzelm@44777
|
1304 |
- Reduced memory requirements due to pruning of unused document
|
wenzelm@44760
|
1305 |
versions (garbage collection).
|
wenzelm@44760
|
1306 |
|
wenzelm@44760
|
1307 |
See also ~~/src/Tools/jEdit/README.html for further information,
|
wenzelm@44760
|
1308 |
including some remaining limitations.
|
wenzelm@44760
|
1309 |
|
wenzelm@44800
|
1310 |
* Theory loader: source files are exclusively located via the master
|
wenzelm@44800
|
1311 |
directory of each theory node (where the .thy file itself resides).
|
wenzelm@44800
|
1312 |
The global load path (such as src/HOL/Library) has been discontinued.
|
wenzelm@44800
|
1313 |
Note that the path element ~~ may be used to reference theories in the
|
wenzelm@44800
|
1314 |
Isabelle home folder -- for instance, "~~/src/HOL/Library/FuncSet".
|
wenzelm@44800
|
1315 |
INCOMPATIBILITY.
|
wenzelm@44800
|
1316 |
|
wenzelm@41955
|
1317 |
* Theory loader: source files are identified by content via SHA1
|
wenzelm@41955
|
1318 |
digests. Discontinued former path/modtime identification and optional
|
wenzelm@41955
|
1319 |
ISABELLE_FILE_IDENT plugin scripts.
|
wenzelm@41955
|
1320 |
|
wenzelm@41703
|
1321 |
* Parallelization of nested Isar proofs is subject to
|
wenzelm@41703
|
1322 |
Goal.parallel_proofs_threshold (default 100). See also isabelle
|
wenzelm@41703
|
1323 |
usedir option -Q.
|
wenzelm@41703
|
1324 |
|
wenzelm@42669
|
1325 |
* Name space: former unsynchronized references are now proper
|
wenzelm@42669
|
1326 |
configuration options, with more conventional names:
|
wenzelm@42669
|
1327 |
|
wenzelm@42669
|
1328 |
long_names ~> names_long
|
wenzelm@42669
|
1329 |
short_names ~> names_short
|
wenzelm@42669
|
1330 |
unique_names ~> names_unique
|
wenzelm@42669
|
1331 |
|
wenzelm@42669
|
1332 |
Minor INCOMPATIBILITY, need to declare options in context like this:
|
wenzelm@42669
|
1333 |
|
wenzelm@42669
|
1334 |
declare [[names_unique = false]]
|
wenzelm@42358
|
1335 |
|
wenzelm@42502
|
1336 |
* Literal facts `prop` may contain dummy patterns, e.g. `_ = _`. Note
|
wenzelm@42502
|
1337 |
that the result needs to be unique, which means fact specifications
|
wenzelm@42502
|
1338 |
may have to be refined after enriching a proof context.
|
wenzelm@42502
|
1339 |
|
wenzelm@44800
|
1340 |
* Attribute "case_names" has been refined: the assumptions in each case
|
wenzelm@44800
|
1341 |
can be named now by following the case name with [name1 name2 ...].
|
wenzelm@44800
|
1342 |
|
wenzelm@44968
|
1343 |
* Isabelle/Isar reference manual has been updated and extended:
|
wenzelm@44968
|
1344 |
- "Synopsis" provides a catalog of main Isar language concepts.
|
wenzelm@44968
|
1345 |
- Formal references in syntax diagrams, via @{rail} antiquotation.
|
wenzelm@44968
|
1346 |
- Updated material from classic "ref" manual, notably about
|
wenzelm@44968
|
1347 |
"Classical Reasoner".
|
wenzelm@42633
|
1348 |
|
wenzelm@41703
|
1349 |
|
blanchet@41727
|
1350 |
*** HOL ***
|
blanchet@41727
|
1351 |
|
wenzelm@44968
|
1352 |
* Class bot and top require underlying partial order rather than
|
wenzelm@44800
|
1353 |
preorder: uniqueness of bot and top is guaranteed. INCOMPATIBILITY.
|
haftmann@43815
|
1354 |
|
haftmann@43940
|
1355 |
* Class complete_lattice: generalized a couple of lemmas from sets;
|
wenzelm@44800
|
1356 |
generalized theorems INF_cong and SUP_cong. New type classes for
|
wenzelm@44800
|
1357 |
complete boolean algebras and complete linear orders. Lemmas
|
wenzelm@44800
|
1358 |
Inf_less_iff, less_Sup_iff, INF_less_iff, less_SUP_iff now reside in
|
wenzelm@44800
|
1359 |
class complete_linorder.
|
wenzelm@44800
|
1360 |
|
wenzelm@44800
|
1361 |
Changed proposition of lemmas Inf_bool_def, Sup_bool_def, Inf_fun_def,
|
wenzelm@44800
|
1362 |
Sup_fun_def, Inf_apply, Sup_apply.
|
wenzelm@44800
|
1363 |
|
wenzelm@45088
|
1364 |
Removed redundant lemmas (the right hand side gives hints how to
|
wenzelm@45088
|
1365 |
replace them for (metis ...), or (simp only: ...) proofs):
|
hoelzl@45041
|
1366 |
|
hoelzl@45041
|
1367 |
Inf_singleton ~> Inf_insert [where A="{}", unfolded Inf_empty inf_top_right]
|
hoelzl@45041
|
1368 |
Sup_singleton ~> Sup_insert [where A="{}", unfolded Sup_empty sup_bot_right]
|
hoelzl@45041
|
1369 |
Inf_binary ~> Inf_insert, Inf_empty, and inf_top_right
|
hoelzl@45041
|
1370 |
Sup_binary ~> Sup_insert, Sup_empty, and sup_bot_right
|
hoelzl@45041
|
1371 |
Int_eq_Inter ~> Inf_insert, Inf_empty, and inf_top_right
|
hoelzl@45041
|
1372 |
Un_eq_Union ~> Sup_insert, Sup_empty, and sup_bot_right
|
hoelzl@45041
|
1373 |
Inter_def ~> INF_def, image_def
|
hoelzl@45041
|
1374 |
Union_def ~> SUP_def, image_def
|
hoelzl@45041
|
1375 |
INT_eq ~> INF_def, and image_def
|
hoelzl@45041
|
1376 |
UN_eq ~> SUP_def, and image_def
|
hoelzl@45041
|
1377 |
INF_subset ~> INF_superset_mono [OF _ order_refl]
|
wenzelm@44800
|
1378 |
|
wenzelm@44800
|
1379 |
More consistent and comprehensive names:
|
wenzelm@44800
|
1380 |
|
hoelzl@45041
|
1381 |
INTER_eq_Inter_image ~> INF_def
|
hoelzl@45041
|
1382 |
UNION_eq_Union_image ~> SUP_def
|
haftmann@43872
|
1383 |
INFI_def ~> INF_def
|
haftmann@43872
|
1384 |
SUPR_def ~> SUP_def
|
haftmann@44103
|
1385 |
INF_leI ~> INF_lower
|
haftmann@44103
|
1386 |
INF_leI2 ~> INF_lower2
|
haftmann@44103
|
1387 |
le_INFI ~> INF_greatest
|
haftmann@44103
|
1388 |
le_SUPI ~> SUP_upper
|
haftmann@44103
|
1389 |
le_SUPI2 ~> SUP_upper2
|
haftmann@44103
|
1390 |
SUP_leI ~> SUP_least
|
haftmann@43873
|
1391 |
INFI_bool_eq ~> INF_bool_eq
|
haftmann@43873
|
1392 |
SUPR_bool_eq ~> SUP_bool_eq
|
haftmann@43873
|
1393 |
INFI_apply ~> INF_apply
|
haftmann@43873
|
1394 |
SUPR_apply ~> SUP_apply
|
haftmann@44103
|
1395 |
INTER_def ~> INTER_eq
|
haftmann@44103
|
1396 |
UNION_def ~> UNION_eq
|
haftmann@44103
|
1397 |
|
haftmann@43865
|
1398 |
INCOMPATIBILITY.
|
haftmann@43865
|
1399 |
|
wenzelm@44973
|
1400 |
* Renamed theory Complete_Lattice to Complete_Lattices.
|
wenzelm@44973
|
1401 |
INCOMPATIBILITY.
|
wenzelm@44973
|
1402 |
|
wenzelm@44973
|
1403 |
* Theory Complete_Lattices: lemmas Inf_eq_top_iff, INF_eq_top_iff,
|
wenzelm@44973
|
1404 |
INF_image, Inf_insert, INF_top, Inf_top_conv, INF_top_conv, SUP_bot,
|
wenzelm@44973
|
1405 |
Sup_bot_conv, SUP_bot_conv, Sup_eq_top_iff, SUP_eq_top_iff, SUP_image,
|
wenzelm@44973
|
1406 |
Sup_insert are now declared as [simp]. INCOMPATIBILITY.
|
wenzelm@44973
|
1407 |
|
wenzelm@44973
|
1408 |
* Theory Lattice: lemmas compl_inf_bot, compl_le_comp_iff,
|
wenzelm@44973
|
1409 |
compl_sup_top, inf_idem, inf_left_idem, inf_sup_absorb, sup_idem,
|
wenzelm@44973
|
1410 |
sup_inf_absob, sup_left_idem are now declared as [simp]. Minor
|
wenzelm@44973
|
1411 |
INCOMPATIBILITY.
|
wenzelm@44973
|
1412 |
|
krauss@44845
|
1413 |
* Added syntactic classes "inf" and "sup" for the respective
|
krauss@44845
|
1414 |
constants. INCOMPATIBILITY: Changes in the argument order of the
|
krauss@44845
|
1415 |
(mostly internal) locale predicates for some derived classes.
|
krauss@44845
|
1416 |
|
wenzelm@44800
|
1417 |
* Theorem collections ball_simps and bex_simps do not contain theorems
|
wenzelm@44800
|
1418 |
referring to UNION any longer; these have been moved to collection
|
wenzelm@44800
|
1419 |
UN_ball_bex_simps. INCOMPATIBILITY.
|
wenzelm@44800
|
1420 |
|
wenzelm@44800
|
1421 |
* Theory Archimedean_Field: floor now is defined as parameter of a
|
wenzelm@44800
|
1422 |
separate type class floor_ceiling.
|
wenzelm@44800
|
1423 |
|
wenzelm@44800
|
1424 |
* Theory Finite_Set: more coherent development of fold_set locales:
|
haftmann@42874
|
1425 |
|
haftmann@42874
|
1426 |
locale fun_left_comm ~> locale comp_fun_commute
|
haftmann@42874
|
1427 |
locale fun_left_comm_idem ~> locale comp_fun_idem
|
wenzelm@44800
|
1428 |
|
wenzelm@44800
|
1429 |
Both use point-free characterization; interpretation proofs may need
|
wenzelm@44800
|
1430 |
adjustment. INCOMPATIBILITY.
|
haftmann@42874
|
1431 |
|
wenzelm@44800
|
1432 |
* Theory Limits: Type "'a net" has been renamed to "'a filter", in
|
huffman@44081
|
1433 |
accordance with standard mathematical terminology. INCOMPATIBILITY.
|
huffman@44081
|
1434 |
|
wenzelm@44800
|
1435 |
* Theory Complex_Main: The locale interpretations for the
|
wenzelm@44800
|
1436 |
bounded_linear and bounded_bilinear locales have been removed, in
|
wenzelm@44800
|
1437 |
order to reduce the number of duplicate lemmas. Users must use the
|
wenzelm@44800
|
1438 |
original names for distributivity theorems, potential INCOMPATIBILITY.
|
huffman@44282
|
1439 |
|
huffman@44282
|
1440 |
divide.add ~> add_divide_distrib
|
huffman@44282
|
1441 |
divide.diff ~> diff_divide_distrib
|
huffman@44282
|
1442 |
divide.setsum ~> setsum_divide_distrib
|
huffman@44282
|
1443 |
mult.add_right ~> right_distrib
|
huffman@44282
|
1444 |
mult.diff_right ~> right_diff_distrib
|
huffman@44282
|
1445 |
mult_right.setsum ~> setsum_right_distrib
|
huffman@44282
|
1446 |
mult_left.diff ~> left_diff_distrib
|
huffman@44282
|
1447 |
|
wenzelm@44800
|
1448 |
* Theory Complex_Main: Several redundant theorems have been removed or
|
huffman@44568
|
1449 |
replaced by more general versions. INCOMPATIBILITY.
|
huffman@44522
|
1450 |
|
huffman@45051
|
1451 |
real_diff_def ~> minus_real_def
|
huffman@45051
|
1452 |
real_divide_def ~> divide_real_def
|
huffman@45051
|
1453 |
real_less_def ~> less_le
|
huffman@45051
|
1454 |
real_abs_def ~> abs_real_def
|
huffman@45051
|
1455 |
real_sgn_def ~> sgn_real_def
|
huffman@45051
|
1456 |
real_mult_commute ~> mult_commute
|
huffman@45051
|
1457 |
real_mult_assoc ~> mult_assoc
|
huffman@45051
|
1458 |
real_mult_1 ~> mult_1_left
|
huffman@45051
|
1459 |
real_add_mult_distrib ~> left_distrib
|
huffman@45051
|
1460 |
real_zero_not_eq_one ~> zero_neq_one
|
huffman@45051
|
1461 |
real_mult_inverse_left ~> left_inverse
|
huffman@45051
|
1462 |
INVERSE_ZERO ~> inverse_zero
|
huffman@45051
|
1463 |
real_le_refl ~> order_refl
|
huffman@45051
|
1464 |
real_le_antisym ~> order_antisym
|
huffman@45051
|
1465 |
real_le_trans ~> order_trans
|
huffman@45051
|
1466 |
real_le_linear ~> linear
|
huffman@45051
|
1467 |
real_le_eq_diff ~> le_iff_diff_le_0
|
huffman@45051
|
1468 |
real_add_left_mono ~> add_left_mono
|
huffman@45051
|
1469 |
real_mult_order ~> mult_pos_pos
|
huffman@45051
|
1470 |
real_mult_less_mono2 ~> mult_strict_left_mono
|
huffman@44822
|
1471 |
real_of_int_real_of_nat ~> real_of_int_of_nat_eq
|
huffman@44522
|
1472 |
real_0_le_divide_iff ~> zero_le_divide_iff
|
huffman@44522
|
1473 |
realpow_two_disj ~> power2_eq_iff
|
huffman@44522
|
1474 |
real_squared_diff_one_factored ~> square_diff_one_factored
|
huffman@44522
|
1475 |
realpow_two_diff ~> square_diff_square_factored
|
huffman@44669
|
1476 |
reals_complete2 ~> complete_real
|
huffman@44749
|
1477 |
real_sum_squared_expand ~> power2_sum
|
huffman@44522
|
1478 |
exp_ln_eq ~> ln_unique
|
huffman@44711
|
1479 |
expi_add ~> exp_add
|
huffman@44711
|
1480 |
expi_zero ~> exp_zero
|
huffman@44522
|
1481 |
lemma_DERIV_subst ~> DERIV_cong
|
huffman@44568
|
1482 |
LIMSEQ_Zfun_iff ~> tendsto_Zfun_iff
|
huffman@44568
|
1483 |
LIMSEQ_const ~> tendsto_const
|
huffman@44568
|
1484 |
LIMSEQ_norm ~> tendsto_norm
|
huffman@44568
|
1485 |
LIMSEQ_add ~> tendsto_add
|
huffman@44568
|
1486 |
LIMSEQ_minus ~> tendsto_minus
|
huffman@44568
|
1487 |
LIMSEQ_minus_cancel ~> tendsto_minus_cancel
|
huffman@44568
|
1488 |
LIMSEQ_diff ~> tendsto_diff
|
huffman@44568
|
1489 |
bounded_linear.LIMSEQ ~> bounded_linear.tendsto
|
huffman@44568
|
1490 |
bounded_bilinear.LIMSEQ ~> bounded_bilinear.tendsto
|
huffman@44568
|
1491 |
LIMSEQ_mult ~> tendsto_mult
|
huffman@44568
|
1492 |
LIMSEQ_inverse ~> tendsto_inverse
|
huffman@44568
|
1493 |
LIMSEQ_divide ~> tendsto_divide
|
huffman@44568
|
1494 |
LIMSEQ_pow ~> tendsto_power
|
huffman@44568
|
1495 |
LIMSEQ_setsum ~> tendsto_setsum
|
huffman@44568
|
1496 |
LIMSEQ_setprod ~> tendsto_setprod
|
huffman@44568
|
1497 |
LIMSEQ_norm_zero ~> tendsto_norm_zero_iff
|
huffman@44568
|
1498 |
LIMSEQ_rabs_zero ~> tendsto_rabs_zero_iff
|
huffman@44568
|
1499 |
LIMSEQ_imp_rabs ~> tendsto_rabs
|
huffman@44710
|
1500 |
LIMSEQ_add_minus ~> tendsto_add [OF _ tendsto_minus]
|
huffman@44710
|
1501 |
LIMSEQ_add_const ~> tendsto_add [OF _ tendsto_const]
|
huffman@44710
|
1502 |
LIMSEQ_diff_const ~> tendsto_diff [OF _ tendsto_const]
|
huffman@44748
|
1503 |
LIMSEQ_Complex ~> tendsto_Complex
|
huffman@44568
|
1504 |
LIM_ident ~> tendsto_ident_at
|
huffman@44568
|
1505 |
LIM_const ~> tendsto_const
|
huffman@44568
|
1506 |
LIM_add ~> tendsto_add
|
huffman@44568
|
1507 |
LIM_add_zero ~> tendsto_add_zero
|
huffman@44568
|
1508 |
LIM_minus ~> tendsto_minus
|
huffman@44568
|
1509 |
LIM_diff ~> tendsto_diff
|
huffman@44568
|
1510 |
LIM_norm ~> tendsto_norm
|
huffman@44568
|
1511 |
LIM_norm_zero ~> tendsto_norm_zero
|
huffman@44568
|
1512 |
LIM_norm_zero_cancel ~> tendsto_norm_zero_cancel
|
huffman@44568
|
1513 |
LIM_norm_zero_iff ~> tendsto_norm_zero_iff
|
huffman@44568
|
1514 |
LIM_rabs ~> tendsto_rabs
|
huffman@44568
|
1515 |
LIM_rabs_zero ~> tendsto_rabs_zero
|
huffman@44568
|
1516 |
LIM_rabs_zero_cancel ~> tendsto_rabs_zero_cancel
|
huffman@44568
|
1517 |
LIM_rabs_zero_iff ~> tendsto_rabs_zero_iff
|
huffman@44568
|
1518 |
LIM_compose ~> tendsto_compose
|
huffman@44568
|
1519 |
LIM_mult ~> tendsto_mult
|
huffman@44568
|
1520 |
LIM_scaleR ~> tendsto_scaleR
|
huffman@44568
|
1521 |
LIM_of_real ~> tendsto_of_real
|
huffman@44568
|
1522 |
LIM_power ~> tendsto_power
|
huffman@44568
|
1523 |
LIM_inverse ~> tendsto_inverse
|
huffman@44568
|
1524 |
LIM_sgn ~> tendsto_sgn
|
huffman@44568
|
1525 |
isCont_LIM_compose ~> isCont_tendsto_compose
|
huffman@44568
|
1526 |
bounded_linear.LIM ~> bounded_linear.tendsto
|
huffman@44568
|
1527 |
bounded_linear.LIM_zero ~> bounded_linear.tendsto_zero
|
huffman@44568
|
1528 |
bounded_bilinear.LIM ~> bounded_bilinear.tendsto
|
huffman@44568
|
1529 |
bounded_bilinear.LIM_prod_zero ~> bounded_bilinear.tendsto_zero
|
huffman@44568
|
1530 |
bounded_bilinear.LIM_left_zero ~> bounded_bilinear.tendsto_left_zero
|
huffman@44568
|
1531 |
bounded_bilinear.LIM_right_zero ~> bounded_bilinear.tendsto_right_zero
|
huffman@44568
|
1532 |
LIM_inverse_fun ~> tendsto_inverse [OF tendsto_ident_at]
|
huffman@44522
|
1533 |
|
wenzelm@44967
|
1534 |
* Theory Complex_Main: The definition of infinite series was
|
wenzelm@44967
|
1535 |
generalized. Now it is defined on the type class {topological_space,
|
wenzelm@44967
|
1536 |
comm_monoid_add}. Hence it is useable also for extended real numbers.
|
wenzelm@42484
|
1537 |
|
huffman@44908
|
1538 |
* Theory Complex_Main: The complex exponential function "expi" is now
|
huffman@44908
|
1539 |
a type-constrained abbreviation for "exp :: complex => complex"; thus
|
huffman@44908
|
1540 |
several polymorphic lemmas about "exp" are now applicable to "expi".
|
huffman@44908
|
1541 |
|
wenzelm@44968
|
1542 |
* Code generation:
|
wenzelm@44968
|
1543 |
|
wenzelm@44968
|
1544 |
- Theory Library/Code_Char_ord provides native ordering of
|
wenzelm@44968
|
1545 |
characters in the target language.
|
wenzelm@44968
|
1546 |
|
wenzelm@44968
|
1547 |
- Commands code_module and code_library are legacy, use export_code
|
wenzelm@44968
|
1548 |
instead.
|
wenzelm@44968
|
1549 |
|
wenzelm@44968
|
1550 |
- Method "evaluation" is legacy, use method "eval" instead.
|
wenzelm@44968
|
1551 |
|
wenzelm@44968
|
1552 |
- Legacy evaluator "SML" is deactivated by default. May be
|
wenzelm@44968
|
1553 |
reactivated by the following theory command:
|
wenzelm@44968
|
1554 |
|
wenzelm@44968
|
1555 |
setup {* Value.add_evaluator ("SML", Codegen.eval_term) *}
|
wenzelm@44968
|
1556 |
|
wenzelm@44968
|
1557 |
* Declare ext [intro] by default. Rare INCOMPATIBILITY.
|
wenzelm@44968
|
1558 |
|
wenzelm@45088
|
1559 |
* New proof method "induction" that gives induction hypotheses the
|
wenzelm@45088
|
1560 |
name "IH", thus distinguishing them from further hypotheses that come
|
wenzelm@45088
|
1561 |
from rule induction. The latter are still called "hyps". Method
|
wenzelm@45088
|
1562 |
"induction" is a thin wrapper around "induct" and follows the same
|
wenzelm@45088
|
1563 |
syntax.
|
wenzelm@45088
|
1564 |
|
wenzelm@44968
|
1565 |
* Method "fastsimp" has been renamed to "fastforce", but "fastsimp" is
|
wenzelm@44968
|
1566 |
still available as a legacy feature for some time.
|
wenzelm@44968
|
1567 |
|
wenzelm@44968
|
1568 |
* Nitpick:
|
wenzelm@44968
|
1569 |
- Added "need" and "total_consts" options.
|
wenzelm@44968
|
1570 |
- Reintroduced "show_skolems" option by popular demand.
|
wenzelm@44968
|
1571 |
- Renamed attribute: nitpick_def ~> nitpick_unfold.
|
wenzelm@44968
|
1572 |
INCOMPATIBILITY.
|
wenzelm@44968
|
1573 |
|
wenzelm@44968
|
1574 |
* Sledgehammer:
|
wenzelm@44968
|
1575 |
- Use quasi-sound (and efficient) translations by default.
|
wenzelm@44968
|
1576 |
- Added support for the following provers: E-ToFoF, LEO-II,
|
wenzelm@44968
|
1577 |
Satallax, SNARK, Waldmeister, and Z3 with TPTP syntax.
|
wenzelm@44968
|
1578 |
- Automatically preplay and minimize proofs before showing them if
|
wenzelm@44968
|
1579 |
this can be done within reasonable time.
|
wenzelm@44968
|
1580 |
- sledgehammer available_provers ~> sledgehammer supported_provers.
|
wenzelm@44968
|
1581 |
INCOMPATIBILITY.
|
wenzelm@44968
|
1582 |
- Added "preplay_timeout", "slicing", "type_enc", "sound",
|
wenzelm@44968
|
1583 |
"max_mono_iters", and "max_new_mono_instances" options.
|
wenzelm@44968
|
1584 |
- Removed "explicit_apply" and "full_types" options as well as "Full
|
wenzelm@44968
|
1585 |
Types" Proof General menu item. INCOMPATIBILITY.
|
wenzelm@44968
|
1586 |
|
wenzelm@44968
|
1587 |
* Metis:
|
wenzelm@44968
|
1588 |
- Removed "metisF" -- use "metis" instead. INCOMPATIBILITY.
|
wenzelm@44968
|
1589 |
- Obsoleted "metisFT" -- use "metis (full_types)" instead.
|
wenzelm@44968
|
1590 |
INCOMPATIBILITY.
|
wenzelm@44968
|
1591 |
|
wenzelm@44968
|
1592 |
* Command 'try':
|
wenzelm@44968
|
1593 |
- Renamed 'try_methods' and added "simp:", "intro:", "dest:", and
|
wenzelm@44968
|
1594 |
"elim:" options. INCOMPATIBILITY.
|
wenzelm@44968
|
1595 |
- Introduced 'try' that not only runs 'try_methods' but also
|
wenzelm@44968
|
1596 |
'solve_direct', 'sledgehammer', 'quickcheck', and 'nitpick'.
|
wenzelm@44968
|
1597 |
|
wenzelm@44968
|
1598 |
* Quickcheck:
|
wenzelm@44968
|
1599 |
- Added "eval" option to evaluate terms for the found counterexample
|
wenzelm@44968
|
1600 |
(currently only supported by the default (exhaustive) tester).
|
wenzelm@44968
|
1601 |
- Added post-processing of terms to obtain readable counterexamples
|
wenzelm@44968
|
1602 |
(currently only supported by the default (exhaustive) tester).
|
wenzelm@44968
|
1603 |
- New counterexample generator quickcheck[narrowing] enables
|
wenzelm@44968
|
1604 |
narrowing-based testing. Requires the Glasgow Haskell compiler
|
wenzelm@44968
|
1605 |
with its installation location defined in the Isabelle settings
|
wenzelm@44968
|
1606 |
environment as ISABELLE_GHC.
|
wenzelm@44968
|
1607 |
- Removed quickcheck tester "SML" based on the SML code generator
|
wenzelm@44968
|
1608 |
(formly in HOL/Library).
|
wenzelm@44968
|
1609 |
|
wenzelm@44968
|
1610 |
* Function package: discontinued option "tailrec". INCOMPATIBILITY,
|
wenzelm@44968
|
1611 |
use 'partial_function' instead.
|
wenzelm@44968
|
1612 |
|
wenzelm@44968
|
1613 |
* Theory Library/Extended_Reals replaces now the positive extended
|
wenzelm@44968
|
1614 |
reals found in probability theory. This file is extended by
|
wenzelm@44968
|
1615 |
Multivariate_Analysis/Extended_Real_Limits.
|
wenzelm@44968
|
1616 |
|
wenzelm@44974
|
1617 |
* Theory Library/Old_Recdef: old 'recdef' package has been moved here,
|
wenzelm@44974
|
1618 |
from where it must be imported explicitly if it is really required.
|
wenzelm@44974
|
1619 |
INCOMPATIBILITY.
|
wenzelm@44968
|
1620 |
|
wenzelm@44968
|
1621 |
* Theory Library/Wfrec: well-founded recursion combinator "wfrec" has
|
wenzelm@44968
|
1622 |
been moved here. INCOMPATIBILITY.
|
wenzelm@44968
|
1623 |
|
wenzelm@44968
|
1624 |
* Theory Library/Saturated provides type of numbers with saturated
|
wenzelm@44968
|
1625 |
arithmetic.
|
wenzelm@44968
|
1626 |
|
wenzelm@44968
|
1627 |
* Theory Library/Product_Lattice defines a pointwise ordering for the
|
wenzelm@44968
|
1628 |
product type 'a * 'b, and provides instance proofs for various order
|
wenzelm@44968
|
1629 |
and lattice type classes.
|
wenzelm@44968
|
1630 |
|
wenzelm@44968
|
1631 |
* Theory Library/Countable now provides the "countable_datatype" proof
|
wenzelm@44968
|
1632 |
method for proving "countable" class instances for datatypes.
|
wenzelm@44968
|
1633 |
|
wenzelm@44968
|
1634 |
* Theory Library/Cset_Monad allows do notation for computable sets
|
wenzelm@44968
|
1635 |
(cset) via the generic monad ad-hoc overloading facility.
|
wenzelm@44968
|
1636 |
|
wenzelm@44968
|
1637 |
* Library: Theories of common data structures are split into theories
|
wenzelm@44968
|
1638 |
for implementation, an invariant-ensuring type, and connection to an
|
wenzelm@44968
|
1639 |
abstract type. INCOMPATIBILITY.
|
wenzelm@44968
|
1640 |
|
wenzelm@44968
|
1641 |
- RBT is split into RBT and RBT_Mapping.
|
wenzelm@44968
|
1642 |
- AssocList is split and renamed into AList and AList_Mapping.
|
wenzelm@44968
|
1643 |
- DList is split into DList_Impl, DList, and DList_Cset.
|
wenzelm@44968
|
1644 |
- Cset is split into Cset and List_Cset.
|
wenzelm@44968
|
1645 |
|
wenzelm@44968
|
1646 |
* Theory Library/Nat_Infinity has been renamed to
|
wenzelm@44968
|
1647 |
Library/Extended_Nat, with name changes of the following types and
|
wenzelm@44968
|
1648 |
constants:
|
wenzelm@44968
|
1649 |
|
wenzelm@44968
|
1650 |
type inat ~> type enat
|
wenzelm@44968
|
1651 |
Fin ~> enat
|
wenzelm@44968
|
1652 |
Infty ~> infinity (overloaded)
|
wenzelm@44968
|
1653 |
iSuc ~> eSuc
|
wenzelm@44968
|
1654 |
the_Fin ~> the_enat
|
wenzelm@44968
|
1655 |
|
wenzelm@44968
|
1656 |
Every theorem name containing "inat", "Fin", "Infty", or "iSuc" has
|
wenzelm@44968
|
1657 |
been renamed accordingly. INCOMPATIBILITY.
|
wenzelm@44968
|
1658 |
|
wenzelm@44968
|
1659 |
* Session Multivariate_Analysis: The euclidean_space type class now
|
wenzelm@44968
|
1660 |
fixes a constant "Basis :: 'a set" consisting of the standard
|
wenzelm@44968
|
1661 |
orthonormal basis for the type. Users now have the option of
|
wenzelm@44968
|
1662 |
quantifying over this set instead of using the "basis" function, e.g.
|
wenzelm@44968
|
1663 |
"ALL x:Basis. P x" vs "ALL i<DIM('a). P (basis i)".
|
wenzelm@44968
|
1664 |
|
wenzelm@44968
|
1665 |
* Session Multivariate_Analysis: Type "('a, 'b) cart" has been renamed
|
wenzelm@44968
|
1666 |
to "('a, 'b) vec" (the syntax "'a ^ 'b" remains unaffected). Constants
|
wenzelm@44968
|
1667 |
"Cart_nth" and "Cart_lambda" have been respectively renamed to
|
wenzelm@44968
|
1668 |
"vec_nth" and "vec_lambda"; theorems mentioning those names have
|
wenzelm@44968
|
1669 |
changed to match. Definition theorems for overloaded constants now use
|
wenzelm@44968
|
1670 |
the standard "foo_vec_def" naming scheme. A few other theorems have
|
wenzelm@44968
|
1671 |
been renamed as follows (INCOMPATIBILITY):
|
wenzelm@44968
|
1672 |
|
wenzelm@44968
|
1673 |
Cart_eq ~> vec_eq_iff
|
wenzelm@44968
|
1674 |
dist_nth_le_cart ~> dist_vec_nth_le
|
wenzelm@44968
|
1675 |
tendsto_vector ~> vec_tendstoI
|
wenzelm@44968
|
1676 |
Cauchy_vector ~> vec_CauchyI
|
wenzelm@44968
|
1677 |
|
wenzelm@44968
|
1678 |
* Session Multivariate_Analysis: Several duplicate theorems have been
|
wenzelm@44968
|
1679 |
removed, and other theorems have been renamed or replaced with more
|
wenzelm@44968
|
1680 |
general versions. INCOMPATIBILITY.
|
wenzelm@44968
|
1681 |
|
wenzelm@44968
|
1682 |
finite_choice ~> finite_set_choice
|
wenzelm@44968
|
1683 |
eventually_conjI ~> eventually_conj
|
wenzelm@44968
|
1684 |
eventually_and ~> eventually_conj_iff
|
wenzelm@44968
|
1685 |
eventually_false ~> eventually_False
|
wenzelm@44968
|
1686 |
setsum_norm ~> norm_setsum
|
wenzelm@44968
|
1687 |
Lim_sequentially ~> LIMSEQ_def
|
wenzelm@44968
|
1688 |
Lim_ident_at ~> LIM_ident
|
wenzelm@44968
|
1689 |
Lim_const ~> tendsto_const
|
wenzelm@44968
|
1690 |
Lim_cmul ~> tendsto_scaleR [OF tendsto_const]
|
wenzelm@44968
|
1691 |
Lim_neg ~> tendsto_minus
|
wenzelm@44968
|
1692 |
Lim_add ~> tendsto_add
|
wenzelm@44968
|
1693 |
Lim_sub ~> tendsto_diff
|
wenzelm@44968
|
1694 |
Lim_mul ~> tendsto_scaleR
|
wenzelm@44968
|
1695 |
Lim_vmul ~> tendsto_scaleR [OF _ tendsto_const]
|
wenzelm@44968
|
1696 |
Lim_null_norm ~> tendsto_norm_zero_iff [symmetric]
|
wenzelm@44968
|
1697 |
Lim_linear ~> bounded_linear.tendsto
|
wenzelm@44968
|
1698 |
Lim_component ~> tendsto_euclidean_component
|
wenzelm@44968
|
1699 |
Lim_component_cart ~> tendsto_vec_nth
|
wenzelm@44968
|
1700 |
Lim_inner ~> tendsto_inner [OF tendsto_const]
|
wenzelm@44968
|
1701 |
dot_lsum ~> inner_setsum_left
|
wenzelm@44968
|
1702 |
dot_rsum ~> inner_setsum_right
|
wenzelm@44968
|
1703 |
continuous_cmul ~> continuous_scaleR [OF continuous_const]
|
wenzelm@44968
|
1704 |
continuous_neg ~> continuous_minus
|
wenzelm@44968
|
1705 |
continuous_sub ~> continuous_diff
|
wenzelm@44968
|
1706 |
continuous_vmul ~> continuous_scaleR [OF _ continuous_const]
|
wenzelm@44968
|
1707 |
continuous_mul ~> continuous_scaleR
|
wenzelm@44968
|
1708 |
continuous_inv ~> continuous_inverse
|
wenzelm@44968
|
1709 |
continuous_at_within_inv ~> continuous_at_within_inverse
|
wenzelm@44968
|
1710 |
continuous_at_inv ~> continuous_at_inverse
|
wenzelm@44968
|
1711 |
continuous_at_norm ~> continuous_norm [OF continuous_at_id]
|
wenzelm@44968
|
1712 |
continuous_at_infnorm ~> continuous_infnorm [OF continuous_at_id]
|
wenzelm@44968
|
1713 |
continuous_at_component ~> continuous_component [OF continuous_at_id]
|
wenzelm@44968
|
1714 |
continuous_on_neg ~> continuous_on_minus
|
wenzelm@44968
|
1715 |
continuous_on_sub ~> continuous_on_diff
|
wenzelm@44968
|
1716 |
continuous_on_cmul ~> continuous_on_scaleR [OF continuous_on_const]
|
wenzelm@44968
|
1717 |
continuous_on_vmul ~> continuous_on_scaleR [OF _ continuous_on_const]
|
wenzelm@44968
|
1718 |
continuous_on_mul ~> continuous_on_scaleR
|
wenzelm@44968
|
1719 |
continuous_on_mul_real ~> continuous_on_mult
|
wenzelm@44968
|
1720 |
continuous_on_inner ~> continuous_on_inner [OF continuous_on_const]
|
wenzelm@44968
|
1721 |
continuous_on_norm ~> continuous_on_norm [OF continuous_on_id]
|
wenzelm@44968
|
1722 |
continuous_on_inverse ~> continuous_on_inv
|
wenzelm@44968
|
1723 |
uniformly_continuous_on_neg ~> uniformly_continuous_on_minus
|
wenzelm@44968
|
1724 |
uniformly_continuous_on_sub ~> uniformly_continuous_on_diff
|
wenzelm@44968
|
1725 |
subset_interior ~> interior_mono
|
wenzelm@44968
|
1726 |
subset_closure ~> closure_mono
|
wenzelm@44968
|
1727 |
closure_univ ~> closure_UNIV
|
wenzelm@44968
|
1728 |
real_arch_lt ~> reals_Archimedean2
|
wenzelm@44968
|
1729 |
real_arch ~> reals_Archimedean3
|
wenzelm@44968
|
1730 |
real_abs_norm ~> abs_norm_cancel
|
wenzelm@44968
|
1731 |
real_abs_sub_norm ~> norm_triangle_ineq3
|
wenzelm@44968
|
1732 |
norm_cauchy_schwarz_abs ~> Cauchy_Schwarz_ineq2
|
wenzelm@44968
|
1733 |
|
wenzelm@44968
|
1734 |
* Session HOL-Probability:
|
wenzelm@44968
|
1735 |
- Caratheodory's extension lemma is now proved for ring_of_sets.
|
wenzelm@44968
|
1736 |
- Infinite products of probability measures are now available.
|
wenzelm@44968
|
1737 |
- Sigma closure is independent, if the generator is independent
|
wenzelm@44968
|
1738 |
- Use extended reals instead of positive extended
|
wenzelm@44968
|
1739 |
reals. INCOMPATIBILITY.
|
wenzelm@44968
|
1740 |
|
huffman@45049
|
1741 |
* Session HOLCF: Discontinued legacy theorem names, INCOMPATIBILITY.
|
huffman@45049
|
1742 |
|
huffman@45049
|
1743 |
expand_fun_below ~> fun_below_iff
|
huffman@45049
|
1744 |
below_fun_ext ~> fun_belowI
|
huffman@45049
|
1745 |
expand_cfun_eq ~> cfun_eq_iff
|
huffman@45049
|
1746 |
ext_cfun ~> cfun_eqI
|
huffman@45049
|
1747 |
expand_cfun_below ~> cfun_below_iff
|
huffman@45049
|
1748 |
below_cfun_ext ~> cfun_belowI
|
huffman@45049
|
1749 |
monofun_fun_fun ~> fun_belowD
|
huffman@45049
|
1750 |
monofun_fun_arg ~> monofunE
|
huffman@45049
|
1751 |
monofun_lub_fun ~> adm_monofun [THEN admD]
|
huffman@45049
|
1752 |
cont_lub_fun ~> adm_cont [THEN admD]
|
huffman@45049
|
1753 |
cont2cont_Rep_CFun ~> cont2cont_APP
|
huffman@45049
|
1754 |
cont_Rep_CFun_app ~> cont_APP_app
|
huffman@45049
|
1755 |
cont_Rep_CFun_app_app ~> cont_APP_app_app
|
huffman@45049
|
1756 |
cont_cfun_fun ~> cont_Rep_cfun1 [THEN contE]
|
huffman@45049
|
1757 |
cont_cfun_arg ~> cont_Rep_cfun2 [THEN contE]
|
huffman@45049
|
1758 |
contlub_cfun ~> lub_APP [symmetric]
|
huffman@45049
|
1759 |
contlub_LAM ~> lub_LAM [symmetric]
|
huffman@45049
|
1760 |
thelubI ~> lub_eqI
|
huffman@45049
|
1761 |
UU_I ~> bottomI
|
huffman@45049
|
1762 |
lift_distinct1 ~> lift.distinct(1)
|
huffman@45049
|
1763 |
lift_distinct2 ~> lift.distinct(2)
|
huffman@45049
|
1764 |
Def_not_UU ~> lift.distinct(2)
|
huffman@45049
|
1765 |
Def_inject ~> lift.inject
|
huffman@45049
|
1766 |
below_UU_iff ~> below_bottom_iff
|
huffman@45049
|
1767 |
eq_UU_iff ~> eq_bottom_iff
|
huffman@45049
|
1768 |
|
huffman@44903
|
1769 |
|
krauss@41685
|
1770 |
*** Document preparation ***
|
krauss@41685
|
1771 |
|
wenzelm@44800
|
1772 |
* Antiquotation @{rail} layouts railroad syntax diagrams, see also
|
wenzelm@44800
|
1773 |
isar-ref manual, both for description and actual application of the
|
wenzelm@44800
|
1774 |
same.
|
wenzelm@44800
|
1775 |
|
wenzelm@44800
|
1776 |
* Antiquotation @{value} evaluates the given term and presents its
|
wenzelm@44800
|
1777 |
result.
|
wenzelm@44800
|
1778 |
|
wenzelm@44800
|
1779 |
* Antiquotations: term style "isub" provides ad-hoc conversion of
|
wenzelm@44800
|
1780 |
variables x1, y23 into subscripted form x\<^isub>1,
|
wenzelm@44800
|
1781 |
y\<^isub>2\<^isub>3.
|
wenzelm@41651
|
1782 |
|
wenzelm@42484
|
1783 |
* Predefined LaTeX macros for Isabelle symbols \<bind> and \<then>
|
wenzelm@42484
|
1784 |
(e.g. see ~~/src/HOL/Library/Monad_Syntax.thy).
|
wenzelm@42484
|
1785 |
|
wenzelm@44967
|
1786 |
* Localized \isabellestyle switch can be used within blocks or groups
|
wenzelm@44967
|
1787 |
like this:
|
wenzelm@44967
|
1788 |
|
wenzelm@44967
|
1789 |
\isabellestyle{it} %preferred default
|
wenzelm@44967
|
1790 |
{\isabellestylett @{text "typewriter stuff"}}
|
wenzelm@44967
|
1791 |
|
wenzelm@44967
|
1792 |
* Discontinued special treatment of hard tabulators. Implicit
|
wenzelm@44967
|
1793 |
tab-width is now defined as 1. Potential INCOMPATIBILITY for visual
|
wenzelm@44967
|
1794 |
layouts.
|
wenzelm@44800
|
1795 |
|
wenzelm@41651
|
1796 |
|
wenzelm@41944
|
1797 |
*** ML ***
|
wenzelm@41944
|
1798 |
|
wenzelm@43731
|
1799 |
* The inner syntax of sort/type/term/prop supports inlined YXML
|
wenzelm@43731
|
1800 |
representations within quoted string tokens. By encoding logical
|
wenzelm@43731
|
1801 |
entities via Term_XML (in ML or Scala) concrete syntax can be
|
wenzelm@43731
|
1802 |
bypassed, which is particularly useful for producing bits of text
|
wenzelm@43731
|
1803 |
under external program control.
|
wenzelm@43731
|
1804 |
|
wenzelm@43565
|
1805 |
* Antiquotations for ML and document preparation are managed as theory
|
wenzelm@43565
|
1806 |
data, which requires explicit setup.
|
wenzelm@43565
|
1807 |
|
wenzelm@42897
|
1808 |
* Isabelle_Process.is_active allows tools to check if the official
|
wenzelm@42897
|
1809 |
process wrapper is running (Isabelle/Scala/jEdit) or the old TTY loop
|
wenzelm@42897
|
1810 |
(better known as Proof General).
|
wenzelm@42897
|
1811 |
|
wenzelm@42360
|
1812 |
* Structure Proof_Context follows standard naming scheme. Old
|
wenzelm@42360
|
1813 |
ProofContext is still available for some time as legacy alias.
|
wenzelm@42360
|
1814 |
|
wenzelm@42015
|
1815 |
* Structure Timing provides various operations for timing; supersedes
|
wenzelm@42015
|
1816 |
former start_timing/end_timing etc.
|
wenzelm@42015
|
1817 |
|
wenzelm@41944
|
1818 |
* Path.print is the official way to show file-system paths to users
|
wenzelm@41944
|
1819 |
(including quotes etc.).
|
wenzelm@41944
|
1820 |
|
wenzelm@42056
|
1821 |
* Inner syntax: identifiers in parse trees of generic categories
|
wenzelm@42056
|
1822 |
"logic", "aprop", "idt" etc. carry position information (disguised as
|
wenzelm@42056
|
1823 |
type constraints). Occasional INCOMPATIBILITY with non-compliant
|
wenzelm@42057
|
1824 |
translations that choke on unexpected type constraints. Positions can
|
wenzelm@42057
|
1825 |
be stripped in ML translations via Syntax.strip_positions /
|
wenzelm@42057
|
1826 |
Syntax.strip_positions_ast, or via the syntax constant
|
wenzelm@42057
|
1827 |
"_strip_positions" within parse trees. As last resort, positions can
|
wenzelm@42057
|
1828 |
be disabled via the configuration option Syntax.positions, which is
|
wenzelm@42057
|
1829 |
called "syntax_positions" in Isar attribute syntax.
|
wenzelm@42056
|
1830 |
|
wenzelm@42290
|
1831 |
* Discontinued special status of various ML structures that contribute
|
wenzelm@42290
|
1832 |
to structure Syntax (Ast, Lexicon, Mixfix, Parser, Printer etc.): less
|
wenzelm@42290
|
1833 |
pervasive content, no inclusion in structure Syntax. INCOMPATIBILITY,
|
wenzelm@42290
|
1834 |
refer directly to Ast.Constant, Lexicon.is_identifier,
|
wenzelm@42290
|
1835 |
Syntax_Trans.mk_binder_tr etc.
|
wenzelm@42224
|
1836 |
|
wenzelm@42247
|
1837 |
* Typed print translation: discontinued show_sorts argument, which is
|
wenzelm@42247
|
1838 |
already available via context of "advanced" translation.
|
wenzelm@42247
|
1839 |
|
wenzelm@42370
|
1840 |
* Refined PARALLEL_GOALS tactical: degrades gracefully for schematic
|
wenzelm@42370
|
1841 |
goal states; body tactic needs to address all subgoals uniformly.
|
wenzelm@42370
|
1842 |
|
wenzelm@42403
|
1843 |
* Slightly more special eq_list/eq_set, with shortcut involving
|
wenzelm@42403
|
1844 |
pointer equality (assumes that eq relation is reflexive).
|
wenzelm@42403
|
1845 |
|
wenzelm@42793
|
1846 |
* Classical tactics use proper Proof.context instead of historic types
|
wenzelm@42793
|
1847 |
claset/clasimpset. Old-style declarations like addIs, addEs, addDs
|
wenzelm@42793
|
1848 |
operate directly on Proof.context. Raw type claset retains its use as
|
wenzelm@42793
|
1849 |
snapshot of the classical context, which can be recovered via
|
wenzelm@42793
|
1850 |
(put_claset HOL_cs) etc. Type clasimpset has been discontinued.
|
wenzelm@42793
|
1851 |
INCOMPATIBILITY, classical tactics and derived proof methods require
|
wenzelm@42793
|
1852 |
proper Proof.context.
|
wenzelm@42793
|
1853 |
|
wenzelm@44803
|
1854 |
|
wenzelm@44803
|
1855 |
*** System ***
|
wenzelm@44803
|
1856 |
|
wenzelm@44968
|
1857 |
* Discontinued support for Poly/ML 5.2, which was the last version
|
wenzelm@44968
|
1858 |
without proper multithreading and TimeLimit implementation.
|
wenzelm@44968
|
1859 |
|
wenzelm@44968
|
1860 |
* Discontinued old lib/scripts/polyml-platform, which has been
|
wenzelm@44968
|
1861 |
obsolete since Isabelle2009-2.
|
wenzelm@44968
|
1862 |
|
wenzelm@44967
|
1863 |
* Various optional external tools are referenced more robustly and
|
wenzelm@44967
|
1864 |
uniformly by explicit Isabelle settings as follows:
|
wenzelm@44967
|
1865 |
|
wenzelm@44967
|
1866 |
ISABELLE_CSDP (formerly CSDP_EXE)
|
wenzelm@44967
|
1867 |
ISABELLE_GHC (formerly EXEC_GHC or GHC_PATH)
|
wenzelm@44967
|
1868 |
ISABELLE_OCAML (formerly EXEC_OCAML)
|
wenzelm@44967
|
1869 |
ISABELLE_SWIPL (formerly EXEC_SWIPL)
|
wenzelm@44967
|
1870 |
ISABELLE_YAP (formerly EXEC_YAP)
|
wenzelm@44967
|
1871 |
|
wenzelm@44967
|
1872 |
Note that automated detection from the file-system or search path has
|
wenzelm@44967
|
1873 |
been discontinued. INCOMPATIBILITY.
|
wenzelm@44967
|
1874 |
|
wenzelm@43752
|
1875 |
* Scala layer provides JVM method invocation service for static
|
wenzelm@44800
|
1876 |
methods of type (String)String, see Invoke_Scala.method in ML. For
|
wenzelm@44800
|
1877 |
example:
|
wenzelm@43752
|
1878 |
|
wenzelm@43752
|
1879 |
Invoke_Scala.method "java.lang.System.getProperty" "java.home"
|
wenzelm@43752
|
1880 |
|
wenzelm@44967
|
1881 |
Together with YXML.string_of_body/parse_body and XML.Encode/Decode
|
wenzelm@44967
|
1882 |
this allows to pass structured values between ML and Scala.
|
wenzelm@44800
|
1883 |
|
wenzelm@44803
|
1884 |
* The IsabelleText fonts includes some further glyphs to support the
|
wenzelm@44803
|
1885 |
Prover IDE. Potential INCOMPATIBILITY: users who happen to have
|
wenzelm@44803
|
1886 |
installed a local copy (which is normally *not* required) need to
|
wenzelm@44803
|
1887 |
delete or update it from ~~/lib/fonts/.
|
wenzelm@41944
|
1888 |
|
wenzelm@41703
|
1889 |
|
wenzelm@45089
|
1890 |
|
wenzelm@41512
|
1891 |
New in Isabelle2011 (January 2011)
|
wenzelm@41512
|
1892 |
----------------------------------
|
wenzelm@37383
|
1893 |
|
wenzelm@37536
|
1894 |
*** General ***
|
wenzelm@37536
|
1895 |
|
wenzelm@41573
|
1896 |
* Experimental Prover IDE based on Isabelle/Scala and jEdit (see
|
wenzelm@41612
|
1897 |
src/Tools/jEdit). This also serves as IDE for Isabelle/ML, with
|
wenzelm@41612
|
1898 |
useful tooltips and hyperlinks produced from its static analysis. The
|
wenzelm@41612
|
1899 |
bundled component provides an executable Isabelle tool that can be run
|
wenzelm@41612
|
1900 |
like this:
|
wenzelm@41612
|
1901 |
|
wenzelm@41612
|
1902 |
Isabelle2011/bin/isabelle jedit
|
wenzelm@41573
|
1903 |
|
wenzelm@40948
|
1904 |
* Significantly improved Isabelle/Isar implementation manual.
|
wenzelm@40948
|
1905 |
|
wenzelm@41594
|
1906 |
* System settings: ISABELLE_HOME_USER now includes ISABELLE_IDENTIFIER
|
wenzelm@41595
|
1907 |
(and thus refers to something like $HOME/.isabelle/Isabelle2011),
|
wenzelm@41594
|
1908 |
while the default heap location within that directory lacks that extra
|
wenzelm@41594
|
1909 |
suffix. This isolates multiple Isabelle installations from each
|
wenzelm@41594
|
1910 |
other, avoiding problems with old settings in new versions.
|
wenzelm@41594
|
1911 |
INCOMPATIBILITY, need to copy/upgrade old user settings manually.
|
wenzelm@41594
|
1912 |
|
wenzelm@40947
|
1913 |
* Source files are always encoded as UTF-8, instead of old-fashioned
|
wenzelm@40947
|
1914 |
ISO-Latin-1. INCOMPATIBILITY. Isabelle LaTeX documents might require
|
wenzelm@40948
|
1915 |
the following package declarations:
|
wenzelm@40947
|
1916 |
|
wenzelm@40947
|
1917 |
\usepackage[utf8]{inputenc}
|
wenzelm@40947
|
1918 |
\usepackage{textcomp}
|
wenzelm@40947
|
1919 |
|
krauss@41440
|
1920 |
* Explicit treatment of UTF-8 sequences as Isabelle symbols, such that
|
wenzelm@37536
|
1921 |
a Unicode character is treated as a single symbol, not a sequence of
|
wenzelm@37536
|
1922 |
non-ASCII bytes as before. Since Isabelle/ML string literals may
|
wenzelm@37536
|
1923 |
contain symbols without further backslash escapes, Unicode can now be
|
wenzelm@37536
|
1924 |
used here as well. Recall that Symbol.explode in ML provides a
|
wenzelm@37536
|
1925 |
consistent view on symbols, while raw explode (or String.explode)
|
wenzelm@37536
|
1926 |
merely give a byte-oriented representation.
|
wenzelm@37536
|
1927 |
|
wenzelm@41594
|
1928 |
* Theory loader: source files are primarily located via the master
|
wenzelm@41594
|
1929 |
directory of each theory node (where the .thy file itself resides).
|
wenzelm@41594
|
1930 |
The global load path is still partially available as legacy feature.
|
wenzelm@41594
|
1931 |
Minor INCOMPATIBILITY due to subtle change in file lookup: use
|
wenzelm@41594
|
1932 |
explicit paths, relatively to the theory.
|
wenzelm@38135
|
1933 |
|
wenzelm@37939
|
1934 |
* Special treatment of ML file names has been discontinued.
|
wenzelm@37939
|
1935 |
Historically, optional extensions .ML or .sml were added on demand --
|
wenzelm@37939
|
1936 |
at the cost of clarity of file dependencies. Recall that Isabelle/ML
|
wenzelm@37939
|
1937 |
files exclusively use the .ML extension. Minor INCOMPATIBILTY.
|
wenzelm@37939
|
1938 |
|
wenzelm@38980
|
1939 |
* Various options that affect pretty printing etc. are now properly
|
wenzelm@38767
|
1940 |
handled within the context via configuration options, instead of
|
wenzelm@40879
|
1941 |
unsynchronized references or print modes. There are both ML Config.T
|
wenzelm@40879
|
1942 |
entities and Isar declaration attributes to access these.
|
wenzelm@38767
|
1943 |
|
wenzelm@39125
|
1944 |
ML (Config.T) Isar (attribute)
|
wenzelm@39125
|
1945 |
|
wenzelm@39128
|
1946 |
eta_contract eta_contract
|
wenzelm@39137
|
1947 |
show_brackets show_brackets
|
wenzelm@39134
|
1948 |
show_sorts show_sorts
|
wenzelm@39134
|
1949 |
show_types show_types
|
wenzelm@39126
|
1950 |
show_question_marks show_question_marks
|
wenzelm@39126
|
1951 |
show_consts show_consts
|
wenzelm@40879
|
1952 |
show_abbrevs show_abbrevs
|
wenzelm@39126
|
1953 |
|
wenzelm@41379
|
1954 |
Syntax.ast_trace syntax_ast_trace
|
wenzelm@41379
|
1955 |
Syntax.ast_stat syntax_ast_stat
|
wenzelm@39126
|
1956 |
Syntax.ambiguity_level syntax_ambiguity_level
|
wenzelm@39126
|
1957 |
|
wenzelm@39126
|
1958 |
Goal_Display.goals_limit goals_limit
|
wenzelm@39126
|
1959 |
Goal_Display.show_main_goal show_main_goal
|
wenzelm@39126
|
1960 |
|
wenzelm@41379
|
1961 |
Method.rule_trace rule_trace
|
wenzelm@41379
|
1962 |
|
wenzelm@39125
|
1963 |
Thy_Output.display thy_output_display
|
wenzelm@39125
|
1964 |
Thy_Output.quotes thy_output_quotes
|
wenzelm@39125
|
1965 |
Thy_Output.indent thy_output_indent
|
wenzelm@39125
|
1966 |
Thy_Output.source thy_output_source
|
wenzelm@39125
|
1967 |
Thy_Output.break thy_output_break
|
wenzelm@39125
|
1968 |
|
krauss@41440
|
1969 |
Note that corresponding "..._default" references in ML may only be
|
wenzelm@38767
|
1970 |
changed globally at the ROOT session setup, but *not* within a theory.
|
wenzelm@40879
|
1971 |
The option "show_abbrevs" supersedes the former print mode
|
wenzelm@40879
|
1972 |
"no_abbrevs" with inverted meaning.
|
wenzelm@38767
|
1973 |
|
wenzelm@40878
|
1974 |
* More systematic naming of some configuration options.
|
huffman@41294
|
1975 |
INCOMPATIBILITY.
|
wenzelm@40878
|
1976 |
|
wenzelm@40878
|
1977 |
trace_simp ~> simp_trace
|
wenzelm@40878
|
1978 |
debug_simp ~> simp_debug
|
wenzelm@40878
|
1979 |
|
wenzelm@40291
|
1980 |
* Support for real valued configuration options, using simplistic
|
wenzelm@40291
|
1981 |
floating-point notation that coincides with the inner syntax for
|
wenzelm@40291
|
1982 |
float_token.
|
wenzelm@40291
|
1983 |
|
wenzelm@41594
|
1984 |
* Support for real valued preferences (with approximative PGIP type):
|
wenzelm@41594
|
1985 |
front-ends need to accept "pgint" values in float notation.
|
wenzelm@41594
|
1986 |
INCOMPATIBILITY.
|
wenzelm@41573
|
1987 |
|
wenzelm@41573
|
1988 |
* The IsabelleText font now includes Cyrillic, Hebrew, Arabic from
|
wenzelm@41573
|
1989 |
DejaVu Sans.
|
wenzelm@41573
|
1990 |
|
wenzelm@41594
|
1991 |
* Discontinued support for Poly/ML 5.0 and 5.1 versions.
|
wenzelm@41594
|
1992 |
|
wenzelm@40948
|
1993 |
|
wenzelm@40948
|
1994 |
*** Pure ***
|
wenzelm@40948
|
1995 |
|
wenzelm@41249
|
1996 |
* Command 'type_synonym' (with single argument) replaces somewhat
|
wenzelm@41249
|
1997 |
outdated 'types', which is still available as legacy feature for some
|
wenzelm@41249
|
1998 |
time.
|
wenzelm@41249
|
1999 |
|
wenzelm@41249
|
2000 |
* Command 'nonterminal' (with 'and' separated list of arguments)
|
wenzelm@41249
|
2001 |
replaces somewhat outdated 'nonterminals'. INCOMPATIBILITY.
|
wenzelm@41229
|
2002 |
|
wenzelm@40965
|
2003 |
* Command 'notepad' replaces former 'example_proof' for
|
wenzelm@41020
|
2004 |
experimentation in Isar without any result. INCOMPATIBILITY.
|
wenzelm@40965
|
2005 |
|
ballarin@41435
|
2006 |
* Locale interpretation commands 'interpret' and 'sublocale' accept
|
ballarin@41435
|
2007 |
lists of equations to map definitions in a locale to appropriate
|
ballarin@41435
|
2008 |
entities in the context of the interpretation. The 'interpretation'
|
ballarin@41435
|
2009 |
command already provided this functionality.
|
ballarin@41435
|
2010 |
|
wenzelm@41594
|
2011 |
* Diagnostic command 'print_dependencies' prints the locale instances
|
wenzelm@41594
|
2012 |
that would be activated if the specified expression was interpreted in
|
wenzelm@41594
|
2013 |
the current context. Variant "print_dependencies!" assumes a context
|
wenzelm@41594
|
2014 |
without interpretations.
|
ballarin@38110
|
2015 |
|
ballarin@38110
|
2016 |
* Diagnostic command 'print_interps' prints interpretations in proofs
|
ballarin@38110
|
2017 |
in addition to interpretations in theories.
|
ballarin@38110
|
2018 |
|
wenzelm@38708
|
2019 |
* Discontinued obsolete 'global' and 'local' commands to manipulate
|
wenzelm@38708
|
2020 |
the theory name space. Rare INCOMPATIBILITY. The ML functions
|
wenzelm@38708
|
2021 |
Sign.root_path and Sign.local_path may be applied directly where this
|
wenzelm@38708
|
2022 |
feature is still required for historical reasons.
|
wenzelm@38708
|
2023 |
|
wenzelm@40948
|
2024 |
* Discontinued obsolete 'constdefs' command. INCOMPATIBILITY, use
|
haftmann@39215
|
2025 |
'definition' instead.
|
haftmann@39215
|
2026 |
|
wenzelm@41574
|
2027 |
* The "prems" fact, which refers to the accidental collection of
|
wenzelm@41574
|
2028 |
foundational premises in the context, is now explicitly marked as
|
wenzelm@41594
|
2029 |
legacy feature and will be discontinued soon. Consider using "assms"
|
wenzelm@41594
|
2030 |
of the head statement or reference facts by explicit names.
|
wenzelm@41574
|
2031 |
|
wenzelm@40801
|
2032 |
* Document antiquotations @{class} and @{type} print classes and type
|
wenzelm@40801
|
2033 |
constructors.
|
wenzelm@40801
|
2034 |
|
wenzelm@40801
|
2035 |
* Document antiquotation @{file} checks file/directory entries within
|
wenzelm@40801
|
2036 |
the local file system.
|
haftmann@39305
|
2037 |
|
ballarin@38110
|
2038 |
|
haftmann@37387
|
2039 |
*** HOL ***
|
haftmann@37387
|
2040 |
|
wenzelm@41594
|
2041 |
* Coercive subtyping: functions can be declared as coercions and type
|
wenzelm@41594
|
2042 |
inference will add them as necessary upon input of a term. Theory
|
wenzelm@41594
|
2043 |
Complex_Main declares real :: nat => real and real :: int => real as
|
wenzelm@41594
|
2044 |
coercions. A coercion function f is declared like this:
|
wenzelm@40939
|
2045 |
|
wenzelm@40939
|
2046 |
declare [[coercion f]]
|
nipkow@40866
|
2047 |
|
wenzelm@41571
|
2048 |
To lift coercions through type constructors (e.g. from nat => real to
|
nipkow@40866
|
2049 |
nat list => real list), map functions can be declared, e.g.
|
nipkow@40866
|
2050 |
|
wenzelm@40939
|
2051 |
declare [[coercion_map map]]
|
wenzelm@40939
|
2052 |
|
wenzelm@40939
|
2053 |
Currently coercion inference is activated only in theories including
|
wenzelm@40939
|
2054 |
real numbers, i.e. descendants of Complex_Main. This is controlled by
|
wenzelm@41020
|
2055 |
the configuration option "coercion_enabled", e.g. it can be enabled in
|
wenzelm@40939
|
2056 |
other theories like this:
|
wenzelm@40939
|
2057 |
|
wenzelm@40939
|
2058 |
declare [[coercion_enabled]]
|
nipkow@40866
|
2059 |
|
wenzelm@41571
|
2060 |
* Command 'partial_function' provides basic support for recursive
|
wenzelm@41571
|
2061 |
function definitions over complete partial orders. Concrete instances
|
krauss@40183
|
2062 |
are provided for i) the option type, ii) tail recursion on arbitrary
|
wenzelm@41571
|
2063 |
types, and iii) the heap monad of Imperative_HOL. See
|
wenzelm@41571
|
2064 |
src/HOL/ex/Fundefs.thy and src/HOL/Imperative_HOL/ex/Linked_Lists.thy
|
wenzelm@41571
|
2065 |
for examples.
|
krauss@40183
|
2066 |
|
wenzelm@41571
|
2067 |
* Function package: f.psimps rules are no longer implicitly declared
|
wenzelm@41571
|
2068 |
as [simp]. INCOMPATIBILITY.
|
haftmann@41398
|
2069 |
|
haftmann@41398
|
2070 |
* Datatype package: theorems generated for executable equality (class
|
wenzelm@41571
|
2071 |
"eq") carry proper names and are treated as default code equations.
|
wenzelm@41571
|
2072 |
|
wenzelm@41594
|
2073 |
* Inductive package: now offers command 'inductive_simps' to
|
wenzelm@41594
|
2074 |
automatically derive instantiated and simplified equations for
|
wenzelm@41594
|
2075 |
inductive predicates, similar to 'inductive_cases'.
|
wenzelm@41594
|
2076 |
|
wenzelm@41571
|
2077 |
* Command 'enriched_type' allows to register properties of the
|
wenzelm@41571
|
2078 |
functorial structure of types.
|
haftmann@39771
|
2079 |
|
haftmann@39644
|
2080 |
* Improved infrastructure for term evaluation using code generator
|
haftmann@39644
|
2081 |
techniques, in particular static evaluation conversions.
|
haftmann@39644
|
2082 |
|
wenzelm@41594
|
2083 |
* Code generator: Scala (2.8 or higher) has been added to the target
|
wenzelm@41594
|
2084 |
languages.
|
wenzelm@41594
|
2085 |
|
haftmann@41398
|
2086 |
* Code generator: globbing constant expressions "*" and "Theory.*"
|
haftmann@41398
|
2087 |
have been replaced by the more idiomatic "_" and "Theory._".
|
haftmann@41398
|
2088 |
INCOMPATIBILITY.
|
haftmann@41398
|
2089 |
|
haftmann@41398
|
2090 |
* Code generator: export_code without explicit file declaration prints
|
haftmann@41398
|
2091 |
to standard output. INCOMPATIBILITY.
|
haftmann@41398
|
2092 |
|
haftmann@41398
|
2093 |
* Code generator: do not print function definitions for case
|
haftmann@41398
|
2094 |
combinators any longer.
|
haftmann@41398
|
2095 |
|
wenzelm@41594
|
2096 |
* Code generator: simplification with rules determined with
|
wenzelm@41571
|
2097 |
src/Tools/Code/code_simp.ML and method "code_simp".
|
wenzelm@41571
|
2098 |
|
wenzelm@41594
|
2099 |
* Code generator for records: more idiomatic representation of record
|
wenzelm@40948
|
2100 |
types. Warning: records are not covered by ancient SML code
|
wenzelm@40948
|
2101 |
generation any longer. INCOMPATIBILITY. In cases of need, a suitable
|
wenzelm@40948
|
2102 |
rep_datatype declaration helps to succeed then:
|
haftmann@38537
|
2103 |
|
haftmann@38537
|
2104 |
record 'a foo = ...
|
haftmann@38537
|
2105 |
...
|
haftmann@38537
|
2106 |
rep_datatype foo_ext ...
|
haftmann@38535
|
2107 |
|
wenzelm@41594
|
2108 |
* Records: logical foundation type for records does not carry a
|
wenzelm@41594
|
2109 |
'_type' suffix any longer (obsolete due to authentic syntax).
|
wenzelm@41594
|
2110 |
INCOMPATIBILITY.
|
wenzelm@41594
|
2111 |
|
haftmann@41398
|
2112 |
* Quickcheck now by default uses exhaustive testing instead of random
|
wenzelm@41571
|
2113 |
testing. Random testing can be invoked by "quickcheck [random]",
|
wenzelm@41571
|
2114 |
exhaustive testing by "quickcheck [exhaustive]".
|
haftmann@41398
|
2115 |
|
haftmann@41398
|
2116 |
* Quickcheck instantiates polymorphic types with small finite
|
haftmann@41398
|
2117 |
datatypes by default. This enables a simple execution mechanism to
|
haftmann@41398
|
2118 |
handle quantifiers and function equality over the finite datatypes.
|
haftmann@41398
|
2119 |
|
wenzelm@41571
|
2120 |
* Quickcheck random generator has been renamed from "code" to
|
wenzelm@41571
|
2121 |
"random". INCOMPATIBILITY.
|
haftmann@41398
|
2122 |
|
haftmann@41398
|
2123 |
* Quickcheck now has a configurable time limit which is set to 30
|
haftmann@41398
|
2124 |
seconds by default. This can be changed by adding [timeout = n] to the
|
haftmann@41398
|
2125 |
quickcheck command. The time limit for Auto Quickcheck is still set
|
haftmann@41398
|
2126 |
independently.
|
haftmann@38461
|
2127 |
|
haftmann@38461
|
2128 |
* Quickcheck in locales considers interpretations of that locale for
|
haftmann@38461
|
2129 |
counter example search.
|
haftmann@38461
|
2130 |
|
blanchet@40059
|
2131 |
* Sledgehammer:
|
wenzelm@41571
|
2132 |
- Added "smt" and "remote_smt" provers based on the "smt" proof
|
wenzelm@41571
|
2133 |
method. See the Sledgehammer manual for details ("isabelle doc
|
wenzelm@41571
|
2134 |
sledgehammer").
|
blanchet@40059
|
2135 |
- Renamed commands:
|
blanchet@40059
|
2136 |
sledgehammer atp_info ~> sledgehammer running_provers
|
blanchet@40059
|
2137 |
sledgehammer atp_kill ~> sledgehammer kill_provers
|
blanchet@40059
|
2138 |
sledgehammer available_atps ~> sledgehammer available_provers
|
blanchet@40059
|
2139 |
INCOMPATIBILITY.
|
blanchet@40059
|
2140 |
- Renamed options:
|
blanchet@40059
|
2141 |
sledgehammer [atps = ...] ~> sledgehammer [provers = ...]
|
blanchet@40062
|
2142 |
sledgehammer [atp = ...] ~> sledgehammer [prover = ...]
|
blanchet@40341
|
2143 |
sledgehammer [timeout = 77 s] ~> sledgehammer [timeout = 77]
|
blanchet@40341
|
2144 |
(and "ms" and "min" are no longer supported)
|
blanchet@40341
|
2145 |
INCOMPATIBILITY.
|
blanchet@40341
|
2146 |
|
blanchet@40341
|
2147 |
* Nitpick:
|
blanchet@40341
|
2148 |
- Renamed options:
|
blanchet@40341
|
2149 |
nitpick [timeout = 77 s] ~> nitpick [timeout = 77]
|
blanchet@40341
|
2150 |
nitpick [tac_timeout = 777 ms] ~> nitpick [tac_timeout = 0.777]
|
blanchet@40059
|
2151 |
INCOMPATIBILITY.
|
blanchet@40725
|
2152 |
- Added support for partial quotient types.
|
blanchet@40725
|
2153 |
- Added local versions of the "Nitpick.register_xxx" functions.
|
blanchet@40725
|
2154 |
- Added "whack" option.
|
blanchet@40725
|
2155 |
- Allow registration of quotient types as codatatypes.
|
blanchet@40725
|
2156 |
- Improved "merge_type_vars" option to merge more types.
|
blanchet@40725
|
2157 |
- Removed unsound "fast_descrs" option.
|
blanchet@40725
|
2158 |
- Added custom symmetry breaking for datatypes, making it possible to reach
|
blanchet@40725
|
2159 |
higher cardinalities.
|
blanchet@40725
|
2160 |
- Prevent the expansion of too large definitions.
|
blanchet@39957
|
2161 |
|
wenzelm@41571
|
2162 |
* Proof methods "metis" and "meson" now have configuration options
|
wenzelm@41571
|
2163 |
"meson_trace", "metis_trace", and "metis_verbose" that can be enabled
|
wenzelm@41571
|
2164 |
to diagnose these tools. E.g.
|
wenzelm@41571
|
2165 |
|
wenzelm@41571
|
2166 |
using [[metis_trace = true]]
|
wenzelm@41571
|
2167 |
|
haftmann@41398
|
2168 |
* Auto Solve: Renamed "Auto Solve Direct". The tool is now available
|
haftmann@41398
|
2169 |
manually as command 'solve_direct'.
|
haftmann@41398
|
2170 |
|
boehmes@41601
|
2171 |
* The default SMT solver Z3 must be enabled explicitly (due to
|
boehmes@41601
|
2172 |
licensing issues) by setting the environment variable
|
wenzelm@41603
|
2173 |
Z3_NON_COMMERCIAL in etc/settings of the component, for example. For
|
wenzelm@41603
|
2174 |
commercial applications, the SMT solver CVC3 is provided as fall-back;
|
wenzelm@41603
|
2175 |
changing the SMT solver is done via the configuration option
|
wenzelm@41603
|
2176 |
"smt_solver".
|
boehmes@41432
|
2177 |
|
boehmes@41432
|
2178 |
* Remote SMT solvers need to be referred to by the "remote_" prefix,
|
wenzelm@41571
|
2179 |
i.e. "remote_cvc3" and "remote_z3".
|
wenzelm@41571
|
2180 |
|
wenzelm@41571
|
2181 |
* Added basic SMT support for datatypes, records, and typedefs using
|
wenzelm@41571
|
2182 |
the oracle mode (no proofs). Direct support of pairs has been dropped
|
wenzelm@41571
|
2183 |
in exchange (pass theorems fst_conv snd_conv pair_collapse to the SMT
|
wenzelm@41571
|
2184 |
support for a similar behavior). Minor INCOMPATIBILITY.
|
boehmes@41432
|
2185 |
|
boehmes@40162
|
2186 |
* Changed SMT configuration options:
|
boehmes@40162
|
2187 |
- Renamed:
|
boehmes@41432
|
2188 |
z3_proofs ~> smt_oracle (with inverted meaning)
|
boehmes@40162
|
2189 |
z3_trace_assms ~> smt_trace_used_facts
|
boehmes@40162
|
2190 |
INCOMPATIBILITY.
|
boehmes@40162
|
2191 |
- Added:
|
boehmes@40424
|
2192 |
smt_verbose
|
boehmes@41432
|
2193 |
smt_random_seed
|
boehmes@40424
|
2194 |
smt_datatypes
|
boehmes@41432
|
2195 |
smt_infer_triggers
|
boehmes@41432
|
2196 |
smt_monomorph_limit
|
boehmes@40162
|
2197 |
cvc3_options
|
boehmes@41432
|
2198 |
remote_cvc3_options
|
boehmes@41432
|
2199 |
remote_z3_options
|
boehmes@40162
|
2200 |
yices_options
|
blanchet@39957
|
2201 |
|
wenzelm@40948
|
2202 |
* Boogie output files (.b2i files) need to be declared in the theory
|
wenzelm@40948
|
2203 |
header.
|
boehmes@40580
|
2204 |
|
wenzelm@41594
|
2205 |
* Simplification procedure "list_to_set_comprehension" rewrites list
|
wenzelm@41594
|
2206 |
comprehensions applied to List.set to set comprehensions. Occasional
|
wenzelm@41594
|
2207 |
INCOMPATIBILITY, may be deactivated like this:
|
wenzelm@41594
|
2208 |
|
wenzelm@41594
|
2209 |
declare [[simproc del: list_to_set_comprehension]]
|
wenzelm@41594
|
2210 |
|
wenzelm@41573
|
2211 |
* Removed old version of primrec package. INCOMPATIBILITY.
|
haftmann@41398
|
2212 |
|
haftmann@41398
|
2213 |
* Removed simplifier congruence rule of "prod_case", as has for long
|
haftmann@41398
|
2214 |
been the case with "split". INCOMPATIBILITY.
|
haftmann@41398
|
2215 |
|
haftmann@41398
|
2216 |
* String.literal is a type, but not a datatype. INCOMPATIBILITY.
|
haftmann@41398
|
2217 |
|
krauss@40388
|
2218 |
* Removed [split_format ... and ... and ...] version of
|
krauss@40388
|
2219 |
[split_format]. Potential INCOMPATIBILITY.
|
krauss@40388
|
2220 |
|
wenzelm@41571
|
2221 |
* Predicate "sorted" now defined inductively, with nice induction
|
wenzelm@41571
|
2222 |
rules. INCOMPATIBILITY: former sorted.simps now named sorted_simps.
|
haftmann@41398
|
2223 |
|
haftmann@41398
|
2224 |
* Constant "contents" renamed to "the_elem", to free the generic name
|
haftmann@41398
|
2225 |
contents for other uses. INCOMPATIBILITY.
|
haftmann@41398
|
2226 |
|
haftmann@41398
|
2227 |
* Renamed class eq and constant eq (for code generation) to class
|
haftmann@41398
|
2228 |
equal and constant equal, plus renaming of related facts and various
|
haftmann@41398
|
2229 |
tuning. INCOMPATIBILITY.
|
haftmann@41398
|
2230 |
|
haftmann@41398
|
2231 |
* Dropped type classes mult_mono and mult_mono1. INCOMPATIBILITY.
|
haftmann@41398
|
2232 |
|
wenzelm@41571
|
2233 |
* Removed output syntax "'a ~=> 'b" for "'a => 'b option".
|
wenzelm@41571
|
2234 |
INCOMPATIBILITY.
|
haftmann@41398
|
2235 |
|
haftmann@41398
|
2236 |
* Renamed theory Fset to Cset, type Fset.fset to Cset.set, in order to
|
haftmann@41398
|
2237 |
avoid confusion with finite sets. INCOMPATIBILITY.
|
haftmann@41398
|
2238 |
|
haftmann@41398
|
2239 |
* Abandoned locales equiv, congruent and congruent2 for equivalence
|
haftmann@41398
|
2240 |
relations. INCOMPATIBILITY: use equivI rather than equiv_intro (same
|
haftmann@41398
|
2241 |
for congruent(2)).
|
haftmann@41398
|
2242 |
|
haftmann@41398
|
2243 |
* Some previously unqualified names have been qualified:
|
haftmann@41398
|
2244 |
|
haftmann@41398
|
2245 |
types
|
haftmann@41398
|
2246 |
bool ~> HOL.bool
|
haftmann@41398
|
2247 |
nat ~> Nat.nat
|
haftmann@41398
|
2248 |
|
haftmann@41398
|
2249 |
constants
|
haftmann@41398
|
2250 |
Trueprop ~> HOL.Trueprop
|
haftmann@41398
|
2251 |
True ~> HOL.True
|
haftmann@41398
|
2252 |
False ~> HOL.False
|
haftmann@41398
|
2253 |
op & ~> HOL.conj
|
haftmann@41398
|
2254 |
op | ~> HOL.disj
|
haftmann@41398
|
2255 |
op --> ~> HOL.implies
|
haftmann@41398
|
2256 |
op = ~> HOL.eq
|
haftmann@41398
|
2257 |
Not ~> HOL.Not
|
haftmann@41398
|
2258 |
The ~> HOL.The
|
haftmann@41398
|
2259 |
All ~> HOL.All
|
haftmann@41398
|
2260 |
Ex ~> HOL.Ex
|
haftmann@41398
|
2261 |
Ex1 ~> HOL.Ex1
|
haftmann@41398
|
2262 |
Let ~> HOL.Let
|
haftmann@41398
|
2263 |
If ~> HOL.If
|
haftmann@41398
|
2264 |
Ball ~> Set.Ball
|
haftmann@41398
|
2265 |
Bex ~> Set.Bex
|
haftmann@41398
|
2266 |
Suc ~> Nat.Suc
|
haftmann@41398
|
2267 |
Pair ~> Product_Type.Pair
|
haftmann@41398
|
2268 |
fst ~> Product_Type.fst
|
haftmann@41398
|
2269 |
snd ~> Product_Type.snd
|
haftmann@41398
|
2270 |
curry ~> Product_Type.curry
|
haftmann@41398
|
2271 |
op : ~> Set.member
|
haftmann@41398
|
2272 |
Collect ~> Set.Collect
|
haftmann@41398
|
2273 |
|
haftmann@41398
|
2274 |
INCOMPATIBILITY.
|
haftmann@41398
|
2275 |
|
haftmann@41398
|
2276 |
* More canonical naming convention for some fundamental definitions:
|
haftmann@41398
|
2277 |
|
haftmann@41398
|
2278 |
bot_bool_eq ~> bot_bool_def
|
haftmann@41398
|
2279 |
top_bool_eq ~> top_bool_def
|
haftmann@41398
|
2280 |
inf_bool_eq ~> inf_bool_def
|
haftmann@41398
|
2281 |
sup_bool_eq ~> sup_bool_def
|
haftmann@41398
|
2282 |
bot_fun_eq ~> bot_fun_def
|
haftmann@41398
|
2283 |
top_fun_eq ~> top_fun_def
|
haftmann@41398
|
2284 |
inf_fun_eq ~> inf_fun_def
|
haftmann@41398
|
2285 |
sup_fun_eq ~> sup_fun_def
|
haftmann@41398
|
2286 |
|
haftmann@41398
|
2287 |
INCOMPATIBILITY.
|
haftmann@41398
|
2288 |
|
haftmann@41398
|
2289 |
* More stylized fact names:
|
haftmann@41398
|
2290 |
|
haftmann@41398
|
2291 |
expand_fun_eq ~> fun_eq_iff
|
haftmann@41398
|
2292 |
expand_set_eq ~> set_eq_iff
|
haftmann@41398
|
2293 |
set_ext ~> set_eqI
|
haftmann@41398
|
2294 |
nat_number ~> eval_nat_numeral
|
haftmann@41398
|
2295 |
|
haftmann@41398
|
2296 |
INCOMPATIBILITY.
|
haftmann@41398
|
2297 |
|
wenzelm@41571
|
2298 |
* Refactoring of code-generation specific operations in theory List:
|
haftmann@41398
|
2299 |
|
haftmann@41398
|
2300 |
constants
|
haftmann@41398
|
2301 |
null ~> List.null
|
haftmann@41398
|
2302 |
|
haftmann@41398
|
2303 |
facts
|
haftmann@41398
|
2304 |
mem_iff ~> member_def
|
haftmann@41398
|
2305 |
null_empty ~> null_def
|
haftmann@41398
|
2306 |
|
haftmann@41398
|
2307 |
INCOMPATIBILITY. Note that these were not supposed to be used
|
haftmann@41398
|
2308 |
regularly unless for striking reasons; their main purpose was code
|
haftmann@41398
|
2309 |
generation.
|
haftmann@41398
|
2310 |
|
haftmann@41398
|
2311 |
Various operations from the Haskell prelude are used for generating
|
haftmann@41398
|
2312 |
Haskell code.
|
haftmann@41398
|
2313 |
|
wenzelm@41571
|
2314 |
* Term "bij f" is now an abbreviation of "bij_betw f UNIV UNIV". Term
|
wenzelm@41571
|
2315 |
"surj f" is now an abbreviation of "range f = UNIV". The theorems
|
wenzelm@41571
|
2316 |
bij_def and surj_def are unchanged. INCOMPATIBILITY.
|
haftmann@41398
|
2317 |
|
haftmann@41398
|
2318 |
* Abolished some non-alphabetic type names: "prod" and "sum" replace
|
haftmann@41398
|
2319 |
"*" and "+" respectively. INCOMPATIBILITY.
|
haftmann@41398
|
2320 |
|
haftmann@41398
|
2321 |
* Name "Plus" of disjoint sum operator "<+>" is now hidden. Write
|
wenzelm@41571
|
2322 |
"Sum_Type.Plus" instead.
|
haftmann@41398
|
2323 |
|
haftmann@41398
|
2324 |
* Constant "split" has been merged with constant "prod_case"; names of
|
haftmann@41398
|
2325 |
ML functions, facts etc. involving split have been retained so far,
|
haftmann@41398
|
2326 |
though. INCOMPATIBILITY.
|
haftmann@41398
|
2327 |
|
haftmann@41398
|
2328 |
* Dropped old infix syntax "_ mem _" for List.member; use "_ : set _"
|
haftmann@41398
|
2329 |
instead. INCOMPATIBILITY.
|
haftmann@41398
|
2330 |
|
wenzelm@41571
|
2331 |
* Removed lemma "Option.is_none_none" which duplicates "is_none_def".
|
haftmann@41398
|
2332 |
INCOMPATIBILITY.
|
haftmann@41398
|
2333 |
|
wenzelm@41594
|
2334 |
* Former theory Library/Enum is now part of the HOL-Main image.
|
wenzelm@41594
|
2335 |
INCOMPATIBILITY: all constants of the Enum theory now have to be
|
wenzelm@41594
|
2336 |
referred to by its qualified name.
|
wenzelm@41594
|
2337 |
|
wenzelm@41594
|
2338 |
enum ~> Enum.enum
|
wenzelm@41594
|
2339 |
nlists ~> Enum.nlists
|
wenzelm@41594
|
2340 |
product ~> Enum.product
|
wenzelm@41594
|
2341 |
|
wenzelm@41594
|
2342 |
* Theory Library/Monad_Syntax provides do-syntax for monad types.
|
wenzelm@41594
|
2343 |
Syntax in Library/State_Monad has been changed to avoid ambiguities.
|
wenzelm@41594
|
2344 |
INCOMPATIBILITY.
|
wenzelm@41594
|
2345 |
|
wenzelm@41594
|
2346 |
* Theory Library/SetsAndFunctions has been split into
|
wenzelm@41594
|
2347 |
Library/Function_Algebras and Library/Set_Algebras; canonical names
|
wenzelm@41594
|
2348 |
for instance definitions for functions; various improvements.
|
wenzelm@41594
|
2349 |
INCOMPATIBILITY.
|
wenzelm@41594
|
2350 |
|
wenzelm@41594
|
2351 |
* Theory Library/Multiset provides stable quicksort implementation of
|
wenzelm@41594
|
2352 |
sort_key.
|
wenzelm@41594
|
2353 |
|
wenzelm@41594
|
2354 |
* Theory Library/Multiset: renamed empty_idemp ~> empty_neutral.
|
wenzelm@41594
|
2355 |
INCOMPATIBILITY.
|
wenzelm@41594
|
2356 |
|
wenzelm@41594
|
2357 |
* Session Multivariate_Analysis: introduced a type class for euclidean
|
wenzelm@41594
|
2358 |
space. Most theorems are now stated in terms of euclidean spaces
|
wenzelm@41594
|
2359 |
instead of finite cartesian products.
|
wenzelm@41594
|
2360 |
|
wenzelm@41594
|
2361 |
types
|
wenzelm@41594
|
2362 |
real ^ 'n ~> 'a::real_vector
|
wenzelm@41594
|
2363 |
~> 'a::euclidean_space
|
wenzelm@41594
|
2364 |
~> 'a::ordered_euclidean_space
|
wenzelm@41594
|
2365 |
(depends on your needs)
|
wenzelm@41594
|
2366 |
|
wenzelm@41594
|
2367 |
constants
|
wenzelm@41594
|
2368 |
_ $ _ ~> _ $$ _
|
wenzelm@41594
|
2369 |
\<chi> x. _ ~> \<chi>\<chi> x. _
|
wenzelm@41594
|
2370 |
CARD('n) ~> DIM('a)
|
wenzelm@41594
|
2371 |
|
wenzelm@41594
|
2372 |
Also note that the indices are now natural numbers and not from some
|
wenzelm@41594
|
2373 |
finite type. Finite cartesian products of euclidean spaces, products
|
wenzelm@41594
|
2374 |
of euclidean spaces the real and complex numbers are instantiated to
|
wenzelm@41594
|
2375 |
be euclidean_spaces. INCOMPATIBILITY.
|
wenzelm@41594
|
2376 |
|
wenzelm@41594
|
2377 |
* Session Probability: introduced pextreal as positive extended real
|
wenzelm@41594
|
2378 |
numbers. Use pextreal as value for measures. Introduce the
|
wenzelm@41594
|
2379 |
Radon-Nikodym derivative, product spaces and Fubini's theorem for
|
wenzelm@41594
|
2380 |
arbitrary sigma finite measures. Introduces Lebesgue measure based on
|
wenzelm@41594
|
2381 |
the integral in Multivariate Analysis. INCOMPATIBILITY.
|
wenzelm@41594
|
2382 |
|
wenzelm@41594
|
2383 |
* Session Imperative_HOL: revamped, corrected dozens of inadequacies.
|
wenzelm@41594
|
2384 |
INCOMPATIBILITY.
|
wenzelm@41594
|
2385 |
|
wenzelm@41594
|
2386 |
* Session SPARK (with image HOL-SPARK) provides commands to load and
|
wenzelm@41594
|
2387 |
prove verification conditions generated by the SPARK Ada program
|
wenzelm@41594
|
2388 |
verifier. See also src/HOL/SPARK and src/HOL/SPARK/Examples.
|
berghofe@41567
|
2389 |
|
huffman@40621
|
2390 |
|
ballarin@41433
|
2391 |
*** HOL-Algebra ***
|
ballarin@41433
|
2392 |
|
ballarin@41433
|
2393 |
* Theorems for additive ring operations (locale abelian_monoid and
|
ballarin@41433
|
2394 |
descendants) are generated by interpretation from their multiplicative
|
ballarin@41434
|
2395 |
counterparts. Names (in particular theorem names) have the mandatory
|
ballarin@41434
|
2396 |
qualifier 'add'. Previous theorem names are redeclared for
|
ballarin@41434
|
2397 |
compatibility.
|
ballarin@41434
|
2398 |
|
wenzelm@41571
|
2399 |
* Structure "int_ring" is now an abbreviation (previously a
|
ballarin@41434
|
2400 |
definition). This fits more natural with advanced interpretations.
|
ballarin@41433
|
2401 |
|
ballarin@41433
|
2402 |
|
huffman@40621
|
2403 |
*** HOLCF ***
|
huffman@40621
|
2404 |
|
huffman@40621
|
2405 |
* The domain package now runs in definitional mode by default: The
|
wenzelm@41571
|
2406 |
former command 'new_domain' is now called 'domain'. To use the domain
|
huffman@40621
|
2407 |
package in its original axiomatic mode, use 'domain (unsafe)'.
|
huffman@40621
|
2408 |
INCOMPATIBILITY.
|
huffman@40621
|
2409 |
|
wenzelm@41571
|
2410 |
* The new class "domain" is now the default sort. Class "predomain"
|
wenzelm@41571
|
2411 |
is an unpointed version of "domain". Theories can be updated by
|
wenzelm@41571
|
2412 |
replacing sort annotations as shown below. INCOMPATIBILITY.
|
huffman@40621
|
2413 |
|
huffman@40621
|
2414 |
'a::type ~> 'a::countable
|
huffman@40621
|
2415 |
'a::cpo ~> 'a::predomain
|
huffman@40621
|
2416 |
'a::pcpo ~> 'a::domain
|
huffman@40621
|
2417 |
|
wenzelm@41571
|
2418 |
* The old type class "rep" has been superseded by class "domain".
|
huffman@40621
|
2419 |
Accordingly, users of the definitional package must remove any
|
wenzelm@41571
|
2420 |
"default_sort rep" declarations. INCOMPATIBILITY.
|
huffman@40621
|
2421 |
|
huffman@41401
|
2422 |
* The domain package (definitional mode) now supports unpointed
|
huffman@41401
|
2423 |
predomain argument types, as long as they are marked 'lazy'. (Strict
|
wenzelm@41571
|
2424 |
arguments must be in class "domain".) For example, the following
|
huffman@41401
|
2425 |
domain definition now works:
|
huffman@41401
|
2426 |
|
huffman@41401
|
2427 |
domain natlist = nil | cons (lazy "nat discr") (lazy "natlist")
|
huffman@41401
|
2428 |
|
huffman@41401
|
2429 |
* Theory HOLCF/Library/HOL_Cpo provides cpo and predomain class
|
wenzelm@41571
|
2430 |
instances for types from main HOL: bool, nat, int, char, 'a + 'b,
|
wenzelm@41571
|
2431 |
'a option, and 'a list. Additionally, it configures fixrec and the
|
wenzelm@41571
|
2432 |
domain package to work with these types. For example:
|
huffman@41401
|
2433 |
|
huffman@41401
|
2434 |
fixrec isInl :: "('a + 'b) u -> tr"
|
huffman@41401
|
2435 |
where "isInl$(up$(Inl x)) = TT" | "isInl$(up$(Inr y)) = FF"
|
huffman@41401
|
2436 |
|
huffman@41401
|
2437 |
domain V = VFun (lazy "V -> V") | VCon (lazy "nat") (lazy "V list")
|
huffman@41401
|
2438 |
|
wenzelm@41571
|
2439 |
* The "(permissive)" option of fixrec has been replaced with a
|
wenzelm@41571
|
2440 |
per-equation "(unchecked)" option. See
|
wenzelm@41571
|
2441 |
src/HOL/HOLCF/Tutorial/Fixrec_ex.thy for examples. INCOMPATIBILITY.
|
wenzelm@41571
|
2442 |
|
wenzelm@41571
|
2443 |
* The "bifinite" class no longer fixes a constant "approx"; the class
|
wenzelm@41571
|
2444 |
now just asserts that such a function exists. INCOMPATIBILITY.
|
wenzelm@41571
|
2445 |
|
wenzelm@41571
|
2446 |
* Former type "alg_defl" has been renamed to "defl". HOLCF no longer
|
huffman@41287
|
2447 |
defines an embedding of type 'a defl into udom by default; instances
|
wenzelm@41571
|
2448 |
of "bifinite" and "domain" classes are available in
|
wenzelm@41571
|
2449 |
src/HOL/HOLCF/Library/Defl_Bifinite.thy.
|
wenzelm@41571
|
2450 |
|
wenzelm@41571
|
2451 |
* The syntax "REP('a)" has been replaced with "DEFL('a)".
|
wenzelm@41571
|
2452 |
|
wenzelm@41571
|
2453 |
* The predicate "directed" has been removed. INCOMPATIBILITY.
|
wenzelm@41571
|
2454 |
|
wenzelm@41571
|
2455 |
* The type class "finite_po" has been removed. INCOMPATIBILITY.
|
wenzelm@41571
|
2456 |
|
wenzelm@41571
|
2457 |
* The function "cprod_map" has been renamed to "prod_map".
|
huffman@41401
|
2458 |
INCOMPATIBILITY.
|
huffman@41401
|
2459 |
|
huffman@41401
|
2460 |
* The monadic bind operator on each powerdomain has new binder syntax
|
wenzelm@41571
|
2461 |
similar to sets, e.g. "\<Union>\<sharp>x\<in>xs. t" represents
|
wenzelm@41571
|
2462 |
"upper_bind\<cdot>xs\<cdot>(\<Lambda> x. t)".
|
huffman@41401
|
2463 |
|
huffman@41401
|
2464 |
* The infix syntax for binary union on each powerdomain has changed
|
wenzelm@41571
|
2465 |
from e.g. "+\<sharp>" to "\<union>\<sharp>", for consistency with set
|
wenzelm@41571
|
2466 |
syntax. INCOMPATIBILITY.
|
wenzelm@41571
|
2467 |
|
wenzelm@41571
|
2468 |
* The constant "UU" has been renamed to "bottom". The syntax "UU" is
|
huffman@41429
|
2469 |
still supported as an input translation.
|
huffman@41429
|
2470 |
|
huffman@40621
|
2471 |
* Renamed some theorems (the original names are also still available).
|
wenzelm@41571
|
2472 |
|
huffman@40621
|
2473 |
expand_fun_below ~> fun_below_iff
|
huffman@40621
|
2474 |
below_fun_ext ~> fun_belowI
|
huffman@40621
|
2475 |
expand_cfun_eq ~> cfun_eq_iff
|
huffman@40621
|
2476 |
ext_cfun ~> cfun_eqI
|
huffman@40621
|
2477 |
expand_cfun_below ~> cfun_below_iff
|
huffman@40621
|
2478 |
below_cfun_ext ~> cfun_belowI
|
huffman@40621
|
2479 |
cont2cont_Rep_CFun ~> cont2cont_APP
|
huffman@40621
|
2480 |
|
huffman@40621
|
2481 |
* The Abs and Rep functions for various types have changed names.
|
wenzelm@40948
|
2482 |
Related theorem names have also changed to match. INCOMPATIBILITY.
|
wenzelm@41571
|
2483 |
|
huffman@40621
|
2484 |
Rep_CFun ~> Rep_cfun
|
huffman@40621
|
2485 |
Abs_CFun ~> Abs_cfun
|
huffman@40621
|
2486 |
Rep_Sprod ~> Rep_sprod
|
huffman@40621
|
2487 |
Abs_Sprod ~> Abs_sprod
|
huffman@40621
|
2488 |
Rep_Ssum ~> Rep_ssum
|
huffman@40621
|
2489 |
Abs_Ssum ~> Abs_ssum
|
huffman@40621
|
2490 |
|
huffman@40621
|
2491 |
* Lemmas with names of the form *_defined_iff or *_strict_iff have
|
wenzelm@41571
|
2492 |
been renamed to *_bottom_iff. INCOMPATIBILITY.
|
huffman@40621
|
2493 |
|
huffman@40621
|
2494 |
* Various changes to bisimulation/coinduction with domain package:
|
wenzelm@41571
|
2495 |
|
wenzelm@41571
|
2496 |
- Definitions of "bisim" constants no longer mention definedness.
|
wenzelm@41571
|
2497 |
- With mutual recursion, "bisim" predicate is now curried.
|
huffman@40621
|
2498 |
- With mutual recursion, each type gets a separate coind theorem.
|
huffman@40621
|
2499 |
- Variable names in bisim_def and coinduct rules have changed.
|
wenzelm@41571
|
2500 |
|
huffman@40621
|
2501 |
INCOMPATIBILITY.
|
huffman@40621
|
2502 |
|
wenzelm@41571
|
2503 |
* Case combinators generated by the domain package for type "foo" are
|
wenzelm@41571
|
2504 |
now named "foo_case" instead of "foo_when". INCOMPATIBILITY.
|
huffman@40621
|
2505 |
|
huffman@40771
|
2506 |
* Several theorems have been renamed to more accurately reflect the
|
wenzelm@41571
|
2507 |
names of constants and types involved. INCOMPATIBILITY.
|
wenzelm@41571
|
2508 |
|
huffman@40771
|
2509 |
thelub_const ~> lub_const
|
huffman@40771
|
2510 |
lub_const ~> is_lub_const
|
huffman@40771
|
2511 |
thelubI ~> lub_eqI
|
huffman@40771
|
2512 |
is_lub_lub ~> is_lubD2
|
huffman@40771
|
2513 |
lubI ~> is_lub_lub
|
huffman@40771
|
2514 |
unique_lub ~> is_lub_unique
|
huffman@40771
|
2515 |
is_ub_lub ~> is_lub_rangeD1
|
huffman@40771
|
2516 |
lub_bin_chain ~> is_lub_bin_chain
|
huffman@41030
|
2517 |
lub_fun ~> is_lub_fun
|
huffman@41030
|
2518 |
thelub_fun ~> lub_fun
|
huffman@41031
|
2519 |
thelub_cfun ~> lub_cfun
|
huffman@40771
|
2520 |
thelub_Pair ~> lub_Pair
|
huffman@40771
|
2521 |
lub_cprod ~> is_lub_prod
|
huffman@40771
|
2522 |
thelub_cprod ~> lub_prod
|
huffman@40771
|
2523 |
minimal_cprod ~> minimal_prod
|
huffman@40771
|
2524 |
inst_cprod_pcpo ~> inst_prod_pcpo
|
huffman@41430
|
2525 |
UU_I ~> bottomI
|
huffman@41430
|
2526 |
compact_UU ~> compact_bottom
|
huffman@41430
|
2527 |
deflation_UU ~> deflation_bottom
|
huffman@41430
|
2528 |
finite_deflation_UU ~> finite_deflation_bottom
|
huffman@40771
|
2529 |
|
wenzelm@41571
|
2530 |
* Many legacy theorem names have been discontinued. INCOMPATIBILITY.
|
wenzelm@41571
|
2531 |
|
huffman@40621
|
2532 |
sq_ord_less_eq_trans ~> below_eq_trans
|
huffman@40621
|
2533 |
sq_ord_eq_less_trans ~> eq_below_trans
|
huffman@40621
|
2534 |
refl_less ~> below_refl
|
huffman@40621
|
2535 |
trans_less ~> below_trans
|
huffman@40621
|
2536 |
antisym_less ~> below_antisym
|
huffman@40621
|
2537 |
antisym_less_inverse ~> po_eq_conv [THEN iffD1]
|
huffman@40621
|
2538 |
box_less ~> box_below
|
huffman@40621
|
2539 |
rev_trans_less ~> rev_below_trans
|
huffman@40621
|
2540 |
not_less2not_eq ~> not_below2not_eq
|
huffman@40621
|
2541 |
less_UU_iff ~> below_UU_iff
|
huffman@40621
|
2542 |
flat_less_iff ~> flat_below_iff
|
huffman@40621
|
2543 |
adm_less ~> adm_below
|
huffman@40621
|
2544 |
adm_not_less ~> adm_not_below
|
huffman@40621
|
2545 |
adm_compact_not_less ~> adm_compact_not_below
|
huffman@40621
|
2546 |
less_fun_def ~> below_fun_def
|
huffman@40621
|
2547 |
expand_fun_less ~> fun_below_iff
|
huffman@40621
|
2548 |
less_fun_ext ~> fun_belowI
|
huffman@40621
|
2549 |
less_discr_def ~> below_discr_def
|
huffman@40621
|
2550 |
discr_less_eq ~> discr_below_eq
|
huffman@40621
|
2551 |
less_unit_def ~> below_unit_def
|
huffman@40621
|
2552 |
less_cprod_def ~> below_prod_def
|
huffman@40621
|
2553 |
prod_lessI ~> prod_belowI
|
huffman@40621
|
2554 |
Pair_less_iff ~> Pair_below_iff
|
huffman@40621
|
2555 |
fst_less_iff ~> fst_below_iff
|
huffman@40621
|
2556 |
snd_less_iff ~> snd_below_iff
|
huffman@40621
|
2557 |
expand_cfun_less ~> cfun_below_iff
|
huffman@40621
|
2558 |
less_cfun_ext ~> cfun_belowI
|
huffman@40621
|
2559 |
injection_less ~> injection_below
|
huffman@40621
|
2560 |
less_up_def ~> below_up_def
|
huffman@40621
|
2561 |
not_Iup_less ~> not_Iup_below
|
huffman@40621
|
2562 |
Iup_less ~> Iup_below
|
huffman@40621
|
2563 |
up_less ~> up_below
|
huffman@40621
|
2564 |
Def_inject_less_eq ~> Def_below_Def
|
huffman@40621
|
2565 |
Def_less_is_eq ~> Def_below_iff
|
huffman@40621
|
2566 |
spair_less_iff ~> spair_below_iff
|
huffman@40621
|
2567 |
less_sprod ~> below_sprod
|
huffman@40621
|
2568 |
spair_less ~> spair_below
|
huffman@40621
|
2569 |
sfst_less_iff ~> sfst_below_iff
|
huffman@40621
|
2570 |
ssnd_less_iff ~> ssnd_below_iff
|
huffman@40621
|
2571 |
fix_least_less ~> fix_least_below
|
huffman@40621
|
2572 |
dist_less_one ~> dist_below_one
|
huffman@40621
|
2573 |
less_ONE ~> below_ONE
|
huffman@40621
|
2574 |
ONE_less_iff ~> ONE_below_iff
|
huffman@40621
|
2575 |
less_sinlD ~> below_sinlD
|
huffman@40621
|
2576 |
less_sinrD ~> below_sinrD
|
huffman@40621
|
2577 |
|
huffman@40621
|
2578 |
|
wenzelm@40948
|
2579 |
*** FOL and ZF ***
|
haftmann@38522
|
2580 |
|
wenzelm@41310
|
2581 |
* All constant names are now qualified internally and use proper
|
wenzelm@41310
|
2582 |
identifiers, e.g. "IFOL.eq" instead of "op =". INCOMPATIBILITY.
|
wenzelm@41310
|
2583 |
|
haftmann@38522
|
2584 |
|
wenzelm@37868
|
2585 |
*** ML ***
|
wenzelm@37868
|
2586 |
|
wenzelm@41594
|
2587 |
* Antiquotation @{assert} inlines a function bool -> unit that raises
|
wenzelm@41594
|
2588 |
Fail if the argument is false. Due to inlining the source position of
|
wenzelm@41594
|
2589 |
failed assertions is included in the error output.
|
wenzelm@41594
|
2590 |
|
wenzelm@41594
|
2591 |
* Discontinued antiquotation @{theory_ref}, which is obsolete since ML
|
wenzelm@41594
|
2592 |
text is in practice always evaluated with a stable theory checkpoint.
|
wenzelm@41594
|
2593 |
Minor INCOMPATIBILITY, use (Theory.check_thy @{theory}) instead.
|
wenzelm@41594
|
2594 |
|
wenzelm@41594
|
2595 |
* Antiquotation @{theory A} refers to theory A from the ancestry of
|
wenzelm@41594
|
2596 |
the current context, not any accidental theory loader state as before.
|
wenzelm@41594
|
2597 |
Potential INCOMPATIBILITY, subtle change in semantics.
|
wenzelm@41228
|
2598 |
|
wenzelm@40956
|
2599 |
* Syntax.pretty_priority (default 0) configures the required priority
|
wenzelm@40956
|
2600 |
of pretty-printed output and thus affects insertion of parentheses.
|
wenzelm@40956
|
2601 |
|
wenzelm@40959
|
2602 |
* Syntax.default_root (default "any") configures the inner syntax
|
wenzelm@40959
|
2603 |
category (nonterminal symbol) for parsing of terms.
|
wenzelm@40959
|
2604 |
|
wenzelm@40722
|
2605 |
* Former exception Library.UnequalLengths now coincides with
|
wenzelm@40722
|
2606 |
ListPair.UnequalLengths.
|
wenzelm@40722
|
2607 |
|
wenzelm@41594
|
2608 |
* Renamed structure MetaSimplifier to Raw_Simplifier. Note that the
|
wenzelm@41594
|
2609 |
main functionality is provided by structure Simplifier.
|
wenzelm@41594
|
2610 |
|
wenzelm@40627
|
2611 |
* Renamed raw "explode" function to "raw_explode" to emphasize its
|
wenzelm@40627
|
2612 |
meaning. Note that internally to Isabelle, Symbol.explode is used in
|
wenzelm@40627
|
2613 |
almost all situations.
|
wenzelm@40627
|
2614 |
|
wenzelm@40318
|
2615 |
* Discontinued obsolete function sys_error and exception SYS_ERROR.
|
wenzelm@40318
|
2616 |
See implementation manual for further details on exceptions in
|
wenzelm@40318
|
2617 |
Isabelle/ML.
|
wenzelm@40318
|
2618 |
|
wenzelm@39616
|
2619 |
* Renamed setmp_noncritical to Unsynchronized.setmp to emphasize its
|
wenzelm@39616
|
2620 |
meaning.
|
wenzelm@39616
|
2621 |
|
wenzelm@39557
|
2622 |
* Renamed structure PureThy to Pure_Thy and moved most of its
|
wenzelm@39557
|
2623 |
operations to structure Global_Theory, to emphasize that this is
|
wenzelm@39557
|
2624 |
rarely-used global-only stuff.
|
wenzelm@39557
|
2625 |
|
wenzelm@39513
|
2626 |
* Discontinued Output.debug. Minor INCOMPATIBILITY, use plain writeln
|
wenzelm@39513
|
2627 |
instead (or tracing for high-volume output).
|
wenzelm@39513
|
2628 |
|
wenzelm@38980
|
2629 |
* Configuration option show_question_marks only affects regular pretty
|
wenzelm@38980
|
2630 |
printing of types and terms, not raw Term.string_of_vname.
|
wenzelm@38980
|
2631 |
|
wenzelm@39164
|
2632 |
* ML_Context.thm and ML_Context.thms are no longer pervasive. Rare
|
wenzelm@39164
|
2633 |
INCOMPATIBILITY, superseded by static antiquotations @{thm} and
|
wenzelm@39164
|
2634 |
@{thms} for most purposes.
|
wenzelm@39164
|
2635 |
|
wenzelm@41594
|
2636 |
* ML structure Unsynchronized is never opened, not even in Isar
|
wenzelm@38980
|
2637 |
interaction mode as before. Old Unsynchronized.set etc. have been
|
wenzelm@38980
|
2638 |
discontinued -- use plain := instead. This should be *rare* anyway,
|
wenzelm@38980
|
2639 |
since modern tools always work via official context data, notably
|
wenzelm@38980
|
2640 |
configuration options.
|
wenzelm@38980
|
2641 |
|
wenzelm@39239
|
2642 |
* Parallel and asynchronous execution requires special care concerning
|
wenzelm@39239
|
2643 |
interrupts. Structure Exn provides some convenience functions that
|
wenzelm@39239
|
2644 |
avoid working directly with raw Interrupt. User code must not absorb
|
wenzelm@39239
|
2645 |
interrupts -- intermediate handling (for cleanup etc.) needs to be
|
wenzelm@39239
|
2646 |
followed by re-raising of the original exception. Another common
|
wenzelm@39239
|
2647 |
source of mistakes are "handle _" patterns, which make the meaning of
|
wenzelm@39239
|
2648 |
the program subject to physical effects of the environment.
|
wenzelm@39239
|
2649 |
|
wenzelm@37868
|
2650 |
|
wenzelm@37868
|
2651 |
|
wenzelm@37144
|
2652 |
New in Isabelle2009-2 (June 2010)
|
wenzelm@37144
|
2653 |
---------------------------------
|
haftmann@33993
|
2654 |
|
wenzelm@35260
|
2655 |
*** General ***
|
wenzelm@35260
|
2656 |
|
wenzelm@35436
|
2657 |
* Authentic syntax for *all* logical entities (type classes, type
|
wenzelm@35436
|
2658 |
constructors, term constants): provides simple and robust
|
wenzelm@35436
|
2659 |
correspondence between formal entities and concrete syntax. Within
|
wenzelm@35436
|
2660 |
the parse tree / AST representations, "constants" are decorated by
|
wenzelm@35436
|
2661 |
their category (class, type, const) and spelled out explicitly with
|
wenzelm@35436
|
2662 |
their full internal name.
|
wenzelm@35436
|
2663 |
|
wenzelm@35436
|
2664 |
Substantial INCOMPATIBILITY concerning low-level syntax declarations
|
wenzelm@35436
|
2665 |
and translations (translation rules and translation functions in ML).
|
wenzelm@35436
|
2666 |
Some hints on upgrading:
|
wenzelm@35260
|
2667 |
|
wenzelm@35260
|
2668 |
- Many existing uses of 'syntax' and 'translations' can be replaced
|
wenzelm@35436
|
2669 |
by more modern 'type_notation', 'notation' and 'abbreviation',
|
wenzelm@35436
|
2670 |
which are independent of this issue.
|
wenzelm@35260
|
2671 |
|
wenzelm@35260
|
2672 |
- 'translations' require markup within the AST; the term syntax
|
wenzelm@35260
|
2673 |
provides the following special forms:
|
wenzelm@35260
|
2674 |
|
wenzelm@35260
|
2675 |
CONST c -- produces syntax version of constant c from context
|
wenzelm@35261
|
2676 |
XCONST c -- literally c, checked as constant from context
|
wenzelm@35261
|
2677 |
c -- literally c, if declared by 'syntax'
|
wenzelm@35261
|
2678 |
|
wenzelm@35261
|
2679 |
Plain identifiers are treated as AST variables -- occasionally the
|
wenzelm@35261
|
2680 |
system indicates accidental variables via the error "rhs contains
|
wenzelm@35261
|
2681 |
extra variables".
|
wenzelm@35260
|
2682 |
|
wenzelm@35436
|
2683 |
Type classes and type constructors are marked according to their
|
wenzelm@35436
|
2684 |
concrete syntax. Some old translations rules need to be written
|
wenzelm@35436
|
2685 |
for the "type" category, using type constructor application
|
wenzelm@35436
|
2686 |
instead of pseudo-term application of the default category
|
wenzelm@35436
|
2687 |
"logic".
|
wenzelm@35436
|
2688 |
|
wenzelm@35260
|
2689 |
- 'parse_translation' etc. in ML may use the following
|
wenzelm@35260
|
2690 |
antiquotations:
|
wenzelm@35260
|
2691 |
|
wenzelm@35436
|
2692 |
@{class_syntax c} -- type class c within parse tree / AST
|
wenzelm@35436
|
2693 |
@{term_syntax c} -- type constructor c within parse tree / AST
|
wenzelm@35260
|
2694 |
@{const_syntax c} -- ML version of "CONST c" above
|
wenzelm@35260
|
2695 |
@{syntax_const c} -- literally c (checked wrt. 'syntax' declarations)
|
wenzelm@35260
|
2696 |
|
wenzelm@35436
|
2697 |
- Literal types within 'typed_print_translations', i.e. those *not*
|
wenzelm@35436
|
2698 |
represented as pseudo-terms are represented verbatim. Use @{class
|
wenzelm@35436
|
2699 |
c} or @{type_name c} here instead of the above syntax
|
wenzelm@35436
|
2700 |
antiquotations.
|
wenzelm@35436
|
2701 |
|
wenzelm@35260
|
2702 |
Note that old non-authentic syntax was based on unqualified base
|
wenzelm@35436
|
2703 |
names, so all of the above "constant" names would coincide. Recall
|
wenzelm@35436
|
2704 |
that 'print_syntax' and ML_command "set Syntax.trace_ast" help to
|
wenzelm@35436
|
2705 |
diagnose syntax problems.
|
wenzelm@35260
|
2706 |
|
wenzelm@35351
|
2707 |
* Type constructors admit general mixfix syntax, not just infix.
|
wenzelm@35351
|
2708 |
|
wenzelm@36508
|
2709 |
* Concrete syntax may be attached to local entities without a proof
|
wenzelm@36508
|
2710 |
body, too. This works via regular mixfix annotations for 'fix',
|
wenzelm@36508
|
2711 |
'def', 'obtain' etc. or via the explicit 'write' command, which is
|
wenzelm@36508
|
2712 |
similar to the 'notation' command in theory specifications.
|
|