author | paulson <lp15@cam.ac.uk> |
Tue, 17 Nov 2015 12:32:08 +0000 | |
changeset 61694 | 6571c78c9667 |
parent 61685 | 2b3772ecfdec |
child 61701 | e89cfc004f18 |
permissions | -rw-r--r-- |
57491 | 1 |
Isabelle NEWS -- history of user-relevant changes |
2 |
================================================= |
|
2553 | 3 |
|
60007 | 4 |
(Note: Isabelle/jEdit shows a tree-view of this file in Sidekick.) |
5 |
||
60331 | 6 |
|
60138 | 7 |
New in this Isabelle version |
8 |
---------------------------- |
|
9 |
||
61337 | 10 |
*** General *** |
11 |
||
12 |
* Toplevel theorem statements have been simplified as follows: |
|
13 |
||
14 |
theorems ~> lemmas |
|
15 |
schematic_lemma ~> schematic_goal |
|
16 |
schematic_theorem ~> schematic_goal |
|
17 |
schematic_corollary ~> schematic_goal |
|
18 |
||
19 |
Command-line tool "isabelle update_theorems" updates theory sources |
|
20 |
accordingly. |
|
21 |
||
61338 | 22 |
* Toplevel theorem statement 'proposition' is another alias for |
23 |
'theorem'. |
|
24 |
||
61579 | 25 |
* Syntax for formal comments "-- text" now also supports the symbolic |
26 |
form "\<comment> text". Command-line tool "isabelle update_cartouches -c" helps |
|
27 |
to update old sources. |
|
28 |
||
61337 | 29 |
|
60610
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
30 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
31 |
|
61600
1ca11ddfcc70
clarified completion of explicit symbols (see also f6bd97a587b7, e0e4ac981cf1);
wenzelm
parents:
61597
diff
changeset
|
32 |
* Completion of symbols via prefix of \<name> or \<^name> or \name is |
1ca11ddfcc70
clarified completion of explicit symbols (see also f6bd97a587b7, e0e4ac981cf1);
wenzelm
parents:
61597
diff
changeset
|
33 |
always possible, independently of the language context. It is never |
1ca11ddfcc70
clarified completion of explicit symbols (see also f6bd97a587b7, e0e4ac981cf1);
wenzelm
parents:
61597
diff
changeset
|
34 |
implicit: a popup will show up unconditionally. |
1ca11ddfcc70
clarified completion of explicit symbols (see also f6bd97a587b7, e0e4ac981cf1);
wenzelm
parents:
61597
diff
changeset
|
35 |
|
60610
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
36 |
* Improved scheduling for urgent print tasks (e.g. command state output, |
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
37 |
interactive queries) wrt. long-running background tasks. |
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
38 |
|
60986 | 39 |
* IDE support for the source-level debugger of Poly/ML, to work with |
60984 | 40 |
Isabelle/ML and official Standard ML. Configuration option "ML_debugger" |
41 |
and commands 'ML_file_debug', 'ML_file_no_debug', 'SML_file_debug', |
|
42 |
'SML_file_no_debug' control compilation of sources with debugging |
|
43 |
information. The Debugger panel allows to set breakpoints (via context |
|
44 |
menu), step through stopped threads, evaluate local ML expressions etc. |
|
45 |
At least one Debugger view needs to be active to have any effect on the |
|
46 |
running ML program. |
|
47 |
||
61173 | 48 |
* The main Isabelle executable is managed as single-instance Desktop |
49 |
application uniformly on all platforms: Linux, Windows, Mac OS X. |
|
61170 | 50 |
|
61198 | 51 |
* The text overview column (status of errors, warnings etc.) is updated |
52 |
asynchronously, leading to much better editor reactivity. Moreover, the |
|
53 |
full document node content is taken into account. |
|
54 |
||
61218 | 55 |
* The State panel manages explicit proof state output, with jEdit action |
56 |
"isabelle.update-state" (shortcut S+ENTER) to trigger update according |
|
61604 | 57 |
to cursor position. |
58 |
||
59 |
* The Output panel no longer shows proof state output by default. This |
|
60 |
reduces resource requirements of prover time and GUI space. |
|
61 |
INCOMPATIBILITY, use the State panel instead or enable option |
|
62 |
"editor_output_state". |
|
61215 | 63 |
|
61483 | 64 |
* Action "isabelle-emph" (with keyboard shortcut C+e LEFT) controls |
65 |
emphasized text style; the effect is visible in document output, not in |
|
66 |
the editor. |
|
67 |
||
68 |
* Action "isabelle-reset" now uses keyboard shortcut C+e BACK_SPACE, |
|
69 |
instead of former C+e LEFT. |
|
70 |
||
61512
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
71 |
* New command-line tool "isabelle jedit_client" allows to connect to |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
72 |
already running Isabelle/jEdit process. This achieves the effect of |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
73 |
single-instance applications seen on common GUI desktops. |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
74 |
|
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
75 |
* The command-line tool "isabelle jedit" and the isabelle.Main |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
76 |
application wrapper threat the default $USER_HOME/Scratch.thy more |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
77 |
uniformly, and allow the dummy file argument ":" to open an empty buffer |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
78 |
instead. |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
79 |
|
61530
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
80 |
* The default look-and-feel for Linux is the traditional "Metal", which |
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
81 |
works better with GUI scaling for very high-resolution displays (e.g. |
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
82 |
4K). Moreover, it is generally more robust than "Nimbus". |
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
83 |
|
60610
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
84 |
|
61405 | 85 |
*** Document preparation *** |
86 |
||
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
87 |
* There is a new short form for antiquotations with a single argument |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
88 |
that is a cartouche: \<^name>\<open>...\<close> is equivalent to @{name \<open>...\<close>} and |
61595 | 89 |
\<open>...\<close> without control symbol is equivalent to @{cartouche \<open>...\<close>}. |
90 |
\<^name> without following cartouche is equivalent to @{name}. The |
|
61501 | 91 |
standard Isabelle fonts provide glyphs to render important control |
92 |
symbols, e.g. "\<^verbatim>", "\<^emph>", "\<^bold>". |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
93 |
|
61614 | 94 |
* Antiquotation @{theory_text} prints uninterpreted theory source text |
61653 | 95 |
(outer syntax with command keywords etc.). This may be used in the short |
96 |
form \<^theory_text>\<open>...\<close>. |
|
61614 | 97 |
|
61660
78b371644654
added antiquotation @{doc}, e.g. useful for demonstration purposes;
wenzelm
parents:
61658
diff
changeset
|
98 |
* Antiquotation @{doc ENTRY} provides a reference to the given |
78b371644654
added antiquotation @{doc}, e.g. useful for demonstration purposes;
wenzelm
parents:
61658
diff
changeset
|
99 |
documentation, with a hyperlink in the Prover IDE. |
78b371644654
added antiquotation @{doc}, e.g. useful for demonstration purposes;
wenzelm
parents:
61658
diff
changeset
|
100 |
|
61623 | 101 |
* Antiquotations @{command}, @{method}, @{attribute} print checked |
102 |
entities of the Isar language. |
|
103 |
||
61595 | 104 |
* Antiquotations @{noindent}, @{smallskip}, @{medskip}, @{bigskip} with |
105 |
corresponding control symbols \<^noindent>, \<^smallskip>, \<^medskip>, \<^bigskip> specify spacing formally, using |
|
106 |
standard LaTeX macros of the same names. |
|
107 |
||
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
108 |
* Antiquotation @{cartouche} in Isabelle/Pure is the same as @{text}. |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
109 |
Consequently, \<open>...\<close> without any decoration prints literal quasi-formal |
61492 | 110 |
text. Command-line tool "isabelle update_cartouches -t" helps to update |
111 |
old sources, by approximative patching of the content of string and |
|
112 |
cartouche tokens seen in theory sources. |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
113 |
|
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
114 |
* The @{text} antiquotation now ignores the antiquotation option |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
115 |
"source". The given text content is output unconditionally, without any |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
116 |
surrounding quotes etc. Subtle INCOMPATIBILITY, put quotes into the |
61494 | 117 |
argument where they are really intended, e.g. @{text \<open>"foo"\<close>}. Initial |
118 |
or terminal spaces are ignored. |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
119 |
|
61471 | 120 |
* HTML presentation uses the standard IsabelleText font and Unicode |
121 |
rendering of Isabelle symbols like Isabelle/Scala/jEdit. The former |
|
61488 | 122 |
print mode "HTML" loses its special meaning. |
61471 | 123 |
|
61463 | 124 |
* Commands 'paragraph' and 'subparagraph' provide additional section |
125 |
headings. Thus there are 6 levels of standard headings, as in HTML. |
|
126 |
||
127 |
* Text is structured in paragraphs and nested lists, using notation that |
|
128 |
is similar to Markdown. The control symbols for list items are as |
|
129 |
follows: |
|
130 |
||
131 |
\<^item> itemize |
|
132 |
\<^enum> enumerate |
|
133 |
\<^descr> description |
|
134 |
||
135 |
* Command 'text_raw' has been clarified: input text is processed as in |
|
136 |
'text' (with antiquotations and control symbols). The key difference is |
|
137 |
the lack of the surrounding isabelle markup environment in output. |
|
61405 | 138 |
|
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
139 |
* Document antiquotations @{emph} and @{bold} output LaTeX source |
61653 | 140 |
recursively, adding appropriate text style markup. These may be used in |
141 |
the short form \<^emph>\<open>...\<close> and \<^bold>\<open>...\<close>. |
|
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
142 |
|
61571 | 143 |
* Document antiquotation @{footnote} outputs LaTeX source recursively, |
61653 | 144 |
marked as \footnote{}. This may be used in the short form \<^footnote>\<open>...\<close>. |
61571 | 145 |
|
61405 | 146 |
|
60406 | 147 |
*** Isar *** |
148 |
||
149 |
* Command 'obtain' binds term abbreviations (via 'is' patterns) in the |
|
150 |
proof body as well, abstracted over relevant parameters. |
|
151 |
||
60477
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents:
60460
diff
changeset
|
152 |
* Improved type-inference for theorem statement 'obtains': separate |
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents:
60460
diff
changeset
|
153 |
parameter scope for of each clause. |
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents:
60460
diff
changeset
|
154 |
|
60408
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60406
diff
changeset
|
155 |
* Term abbreviations via 'is' patterns also work for schematic |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60406
diff
changeset
|
156 |
statements: result is abstracted over unknowns. |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60406
diff
changeset
|
157 |
|
60414 | 158 |
* Local goals ('have', 'show', 'hence', 'thus') allow structured |
159 |
statements like fixes/assumes/shows in theorem specifications, but the |
|
60555
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
160 |
notation is postfix with keywords 'if' (or 'when') and 'for'. For |
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
161 |
example: |
60414 | 162 |
|
163 |
have result: "C x y" |
|
164 |
if "A x" and "B y" |
|
165 |
for x :: 'a and y :: 'a |
|
166 |
<proof> |
|
167 |
||
60449 | 168 |
The local assumptions are bound to the name "that". The result is |
169 |
exported from context of the statement as usual. The above roughly |
|
60414 | 170 |
corresponds to a raw proof block like this: |
171 |
||
172 |
{ |
|
173 |
fix x :: 'a and y :: 'a |
|
60449 | 174 |
assume that: "A x" "B y" |
60414 | 175 |
have "C x y" <proof> |
176 |
} |
|
177 |
note result = this |
|
60406 | 178 |
|
60555
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
179 |
The keyword 'when' may be used instead of 'if', to indicate 'presume' |
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
180 |
instead of 'assume' above. |
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
181 |
|
61658 | 182 |
* Assumptions ('assume', 'presume') allow structured statements using |
183 |
'if' and 'for', similar to 'have' etc. above. For example: |
|
184 |
||
185 |
assume result: "C x y" |
|
186 |
if "A x" and "B y" |
|
187 |
for x :: 'a and y :: 'a |
|
188 |
||
189 |
This assumes "\<And>x y::'a. A x \<Longrightarrow> B y \<Longrightarrow> C x y" and produces a general |
|
190 |
result as usual: "A ?x \<Longrightarrow> B ?y \<Longrightarrow> C ?x ?y". |
|
191 |
||
192 |
Vacuous quantification in assumptions is omitted, i.e. a for-context |
|
193 |
only effects propositions according to actual use of variables. For |
|
194 |
example: |
|
195 |
||
196 |
assume "A x" and "B y" for x and y |
|
197 |
||
198 |
is equivalent to: |
|
199 |
||
200 |
assume "\<And>x. A x" and "\<And>y. B y" |
|
201 |
||
60595 | 202 |
* The meaning of 'show' with Pure rule statements has changed: premises |
203 |
are treated in the sense of 'assume', instead of 'presume'. This means, |
|
204 |
a goal like "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" can be solved completely as follows: |
|
205 |
||
206 |
show "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" |
|
207 |
||
208 |
or: |
|
209 |
||
210 |
show "C x" if "A x" "B x" for x |
|
211 |
||
212 |
Rare INCOMPATIBILITY, the old behaviour may be recovered as follows: |
|
213 |
||
214 |
show "C x" when "A x" "B x" for x |
|
215 |
||
60406 | 216 |
* New command 'supply' supports fact definitions during goal refinement |
217 |
('apply' scripts). |
|
218 |
||
60459 | 219 |
* New command 'consider' states rules for generalized elimination and |
220 |
case splitting. This is like a toplevel statement "theorem obtains" used |
|
221 |
within a proof body; or like a multi-branch 'obtain' without activation |
|
222 |
of the local context elements yet. |
|
223 |
||
60455 | 224 |
* Proof method "cases" allows to specify the rule as first entry of |
225 |
chained facts. This is particularly useful with 'consider': |
|
226 |
||
227 |
consider (a) A | (b) B | (c) C <proof> |
|
228 |
then have something |
|
229 |
proof cases |
|
230 |
case a |
|
231 |
then show ?thesis <proof> |
|
232 |
next |
|
233 |
case b |
|
234 |
then show ?thesis <proof> |
|
235 |
next |
|
236 |
case c |
|
237 |
then show ?thesis <proof> |
|
238 |
qed |
|
239 |
||
60565 | 240 |
* Command 'case' allows fact name and attribute specification like this: |
241 |
||
242 |
case a: (c xs) |
|
243 |
case a [attributes]: (c xs) |
|
244 |
||
245 |
Facts that are introduced by invoking the case context are uniformly |
|
246 |
qualified by "a"; the same name is used for the cumulative fact. The old |
|
247 |
form "case (c xs) [attributes]" is no longer supported. Rare |
|
248 |
INCOMPATIBILITY, need to adapt uses of case facts in exotic situations, |
|
249 |
and always put attributes in front. |
|
250 |
||
60618
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
251 |
* The standard proof method of commands 'proof' and '..' is now called |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
252 |
"standard" to make semantically clear what it is; the old name "default" |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
253 |
is still available as legacy for some time. Documentation now explains |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
254 |
'..' more accurately as "by standard" instead of "by rule". |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
255 |
|
60631 | 256 |
* Command 'subgoal' allows to impose some structure on backward |
257 |
refinements, to avoid proof scripts degenerating into long of 'apply' |
|
258 |
sequences. Further explanations and examples are given in the isar-ref |
|
259 |
manual. |
|
260 |
||
61166
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
261 |
* Proof method "goal_cases" turns the current subgoals into cases within |
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
262 |
the context; the conclusion is bound to variable ?case in each case. For |
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
263 |
example: |
60617 | 264 |
|
265 |
lemma "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" |
|
60622 | 266 |
and "\<And>y z. U y \<Longrightarrow> V z \<Longrightarrow> W y z" |
61166
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
267 |
proof goal_cases |
60622 | 268 |
case (1 x) |
269 |
then show ?case using \<open>A x\<close> \<open>B x\<close> sorry |
|
270 |
next |
|
271 |
case (2 y z) |
|
272 |
then show ?case using \<open>U y\<close> \<open>V z\<close> sorry |
|
273 |
qed |
|
274 |
||
275 |
lemma "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" |
|
276 |
and "\<And>y z. U y \<Longrightarrow> V z \<Longrightarrow> W y z" |
|
61166
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
277 |
proof goal_cases |
60617 | 278 |
case prems: 1 |
279 |
then show ?case using prems sorry |
|
280 |
next |
|
281 |
case prems: 2 |
|
282 |
then show ?case using prems sorry |
|
283 |
qed |
|
60578 | 284 |
|
60581 | 285 |
* The undocumented feature of implicit cases goal1, goal2, goal3, etc. |
60617 | 286 |
is marked as legacy, and will be removed eventually. The proof method |
287 |
"goals" achieves a similar effect within regular Isar; often it can be |
|
288 |
done more adequately by other means (e.g. 'consider'). |
|
60581 | 289 |
|
60551 | 290 |
* Nesting of Isar goal structure has been clarified: the context after |
291 |
the initial backwards refinement is retained for the whole proof, within |
|
292 |
all its context sections (as indicated via 'next'). This is e.g. |
|
293 |
relevant for 'using', 'including', 'supply': |
|
294 |
||
295 |
have "A \<and> A" if a: A for A |
|
296 |
supply [simp] = a |
|
297 |
proof |
|
298 |
show A by simp |
|
299 |
next |
|
300 |
show A by simp |
|
301 |
qed |
|
302 |
||
60554 | 303 |
* Method "sleep" succeeds after a real-time delay (in seconds). This is |
304 |
occasionally useful for demonstration and testing purposes. |
|
305 |
||
60406 | 306 |
|
60331 | 307 |
*** Pure *** |
308 |
||
61606
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
309 |
* Qualifiers in locale expressions default to mandatory ('!') regardless |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
310 |
of the command. Previously, for 'locale' and 'sublocale' the default was |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
311 |
optional ('?'). The old synatx '!' has been discontinued. |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
312 |
INCOMPATIBILITY, remove '!' and add '?' as required. |
61565
352c73a689da
Qualifiers in locale expressions default to mandatory regardless of the command.
ballarin
parents:
61552
diff
changeset
|
313 |
|
61566
c3d6e570ccef
Keyword 'rewrites' identifies rewrite morphisms.
ballarin
parents:
61565
diff
changeset
|
314 |
* Keyword 'rewrites' identifies rewrite morphisms in interpretation |
61606
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
315 |
commands. Previously, the keyword was 'where'. INCOMPATIBILITY. |
61566
c3d6e570ccef
Keyword 'rewrites' identifies rewrite morphisms.
ballarin
parents:
61565
diff
changeset
|
316 |
|
61675 | 317 |
* Command 'sublocale' accepts mixin definitions after keyword |
318 |
'defines'. |
|
319 |
||
61670
301e0b4ecd45
coalesce permanent_interpretation.ML with interpretation.ML
haftmann
parents:
61660
diff
changeset
|
320 |
* Command 'permanent_interpretation' is available in Pure, without |
61673
fd4ac1530d63
represent both algebraic and local-theory views on locale interpretation in interfaces
haftmann
parents:
61670
diff
changeset
|
321 |
need to load a separate theory. Keyword 'defines' identifies |
fd4ac1530d63
represent both algebraic and local-theory views on locale interpretation in interfaces
haftmann
parents:
61670
diff
changeset
|
322 |
mixin definitions, keyword 'rewrites' identifies rewrite morphisms. |
fd4ac1530d63
represent both algebraic and local-theory views on locale interpretation in interfaces
haftmann
parents:
61670
diff
changeset
|
323 |
INCOMPATIBILITY. |
61670
301e0b4ecd45
coalesce permanent_interpretation.ML with interpretation.ML
haftmann
parents:
61660
diff
changeset
|
324 |
|
61252 | 325 |
* Command 'print_definitions' prints dependencies of definitional |
326 |
specifications. This functionality used to be part of 'print_theory'. |
|
327 |
||
60489 | 328 |
* The vacuous fact "TERM x" may be established "by fact" or as `TERM x` |
329 |
as well, not just "by this" or "." as before. |
|
330 |
||
60331 | 331 |
* Configuration option rule_insts_schematic has been discontinued |
332 |
(intermediate legacy feature in Isabelle2015). INCOMPATIBILITY. |
|
333 |
||
60349 | 334 |
* Abbreviations in type classes now carry proper sort constraint. |
335 |
Rare INCOMPATIBILITY in situations where the previous misbehaviour |
|
61228 | 336 |
has been exploited. |
60349 | 337 |
|
338 |
* Refinement of user-space type system in type classes: pseudo-local |
|
339 |
operations behave more similar to abbreviations. Potential |
|
340 |
INCOMPATIBILITY in exotic situations. |
|
341 |
||
342 |
||
60171 | 343 |
*** HOL *** |
344 |
||
61424
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
345 |
* Combinator to represent case distinction on products is named "case_prod", |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
346 |
uniformly, discontinuing any input aliasses. Very popular theorem aliasses |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
347 |
have been retained. |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
348 |
Consolidated facts: |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
349 |
PairE ~> prod.exhaust |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
350 |
Pair_eq ~> prod.inject |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
351 |
pair_collapse ~> prod.collapse |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
352 |
Pair_fst_snd_eq ~> prod_eq_iff |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
353 |
split_twice ~> prod.case_distrib |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
354 |
split_weak_cong ~> prod.case_cong_weak |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
355 |
split_split ~> prod.split |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
356 |
split_split_asm ~> prod.split_asm |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
357 |
splitI ~> case_prodI |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
358 |
splitD ~> case_prodD |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
359 |
splitI2 ~> case_prodI2 |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
360 |
splitI2' ~> case_prodI2' |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
361 |
splitE ~> case_prodE |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
362 |
splitE' ~> case_prodE' |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
363 |
split_pair ~> case_prod_Pair |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
364 |
split_eta ~> case_prod_eta |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
365 |
split_comp ~> case_prod_comp |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
366 |
mem_splitI ~> mem_case_prodI |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
367 |
mem_splitI2 ~> mem_case_prodI2 |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
368 |
mem_splitE ~> mem_case_prodE |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
369 |
The_split ~> The_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
370 |
cond_split_eta ~> cond_case_prod_eta |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
371 |
Collect_split_in_rel_leE ~> Collect_case_prod_in_rel_leE |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
372 |
Collect_split_in_rel_leI ~> Collect_case_prod_in_rel_leI |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
373 |
in_rel_Collect_split_eq ~> in_rel_Collect_case_prod_eq |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
374 |
Collect_split_Grp_eqD ~> Collect_case_prod_Grp_eqD |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
375 |
Collect_split_Grp_inD ~> Collect_case_prod_Grp_in |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
376 |
Domain_Collect_split ~> Domain_Collect_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
377 |
Image_Collect_split ~> Image_Collect_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
378 |
Range_Collect_split ~> Range_Collect_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
379 |
Eps_split ~> Eps_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
380 |
Eps_split_eq ~> Eps_case_prod_eq |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
381 |
split_rsp ~> case_prod_rsp |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
382 |
curry_split ~> curry_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
383 |
split_curry ~> case_prod_curry |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
384 |
Changes in structure HOLogic: |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
385 |
split_const ~> case_prod_const |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
386 |
mk_split ~> mk_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
387 |
mk_psplits ~> mk_ptupleabs |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
388 |
strip_psplits ~> strip_ptupleabs |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
389 |
INCOMPATIBILITY. |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
390 |
|
61308 | 391 |
* Commands 'inductive' and 'inductive_set' work better when names for |
392 |
intro rules are omitted: the "cases" and "induct" rules no longer |
|
393 |
declare empty case_names, but no case_names at all. This allows to use |
|
394 |
numbered cases in proofs, without requiring method "goal_cases". |
|
395 |
||
61269
64a5bce1f498
documentation for "Semantic subtype definitions";
wenzelm
parents:
61268
diff
changeset
|
396 |
* The 'typedef' command has been upgraded from a partially checked |
64a5bce1f498
documentation for "Semantic subtype definitions";
wenzelm
parents:
61268
diff
changeset
|
397 |
"axiomatization", to a full definitional specification that takes the |
64a5bce1f498
documentation for "Semantic subtype definitions";
wenzelm
parents:
61268
diff
changeset
|
398 |
global collection of overloaded constant / type definitions into |
64a5bce1f498
documentation for "Semantic subtype definitions";
wenzelm
parents:
61268
diff
changeset
|
399 |
account. Type definitions with open dependencies on overloaded |
64a5bce1f498
documentation for "Semantic subtype definitions";
wenzelm
parents:
61268
diff
changeset
|
400 |
definitions need to be specified as "typedef (overloaded)". This |
64a5bce1f498
documentation for "Semantic subtype definitions";
wenzelm
parents:
61268
diff
changeset
|
401 |
provides extra robustness in theory construction. Rare INCOMPATIBILITY. |
64a5bce1f498
documentation for "Semantic subtype definitions";
wenzelm
parents:
61268
diff
changeset
|
402 |
|
61118 | 403 |
* Qualification of various formal entities in the libraries is done more |
404 |
uniformly via "context begin qualified definition ... end" instead of |
|
405 |
old-style "hide_const (open) ...". Consequently, both the defined |
|
406 |
constant and its defining fact become qualified, e.g. Option.is_none and |
|
407 |
Option.is_none_def. Occasional INCOMPATIBILITY in applications. |
|
408 |
||
61694
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
409 |
* The coercions to type 'real' have been reorganised. The function 'real' |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
410 |
is no longer overloaded, but has type 'nat => real' and abbreviates |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
411 |
of_nat for that type. Also 'real_of_int :: int => real' abbreviates |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
412 |
of_int for that type. Other overloaded instances of 'real' have been |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
413 |
replaced by 'real_of_ereal' and 'real_of_float'. |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
414 |
Consolidated facts (among others): |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
415 |
real_of_nat_le_iff -> of_nat_le_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
416 |
real_of_nat_numeral of_nat_numeral |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
417 |
real_of_int_zero of_int_0 |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
418 |
real_of_nat_zero of_nat_0 |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
419 |
real_of_one of_int_1 |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
420 |
real_of_int_add of_int_add |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
421 |
real_of_nat_add of_nat_add |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
422 |
real_of_int_diff of_int_diff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
423 |
real_of_nat_diff of_nat_diff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
424 |
floor_subtract floor_diff_of_int |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
425 |
real_of_int_inject of_int_eq_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
426 |
real_of_int_gt_zero_cancel_iff of_int_0_less_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
427 |
real_of_int_ge_zero_cancel_iff of_int_0_le_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
428 |
real_of_nat_ge_zero of_nat_0_le_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
429 |
real_of_int_ceiling_ge le_of_int_ceiling |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
430 |
ceiling_less_eq ceiling_less_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
431 |
ceiling_le_eq ceiling_le_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
432 |
less_floor_eq less_floor_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
433 |
floor_less_eq floor_less_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
434 |
floor_divide_eq_div floor_divide_of_int_eq |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
435 |
real_of_int_zero_cancel of_nat_eq_0_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
436 |
ceiling_real_of_int ceiling_of_int |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
437 |
INCOMPATIBILITY. |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
438 |
|
61069 | 439 |
* Some old and rarely used ASCII replacement syntax has been removed. |
440 |
INCOMPATIBILITY, standard syntax with symbols should be used instead. |
|
441 |
The subsequent commands help to reproduce the old forms, e.g. to |
|
442 |
simplify porting old theories: |
|
443 |
||
444 |
type_notation Map.map (infixr "~=>" 0) |
|
445 |
notation Map.map_comp (infixl "o'_m" 55) |
|
446 |
||
61384 | 447 |
type_notation FinFun.finfun ("(_ =>f /_)" [22, 21] 21) |
448 |
||
449 |
notation FuncSet.funcset (infixr "->" 60) |
|
450 |
notation FuncSet.extensional_funcset (infixr "->\<^sub>E" 60) |
|
451 |
||
452 |
notation Omega_Words_Fun.conc (infixr "conc" 65) |
|
453 |
||
454 |
notation Preorder.equiv ("op ~~") |
|
455 |
and Preorder.equiv ("(_/ ~~ _)" [51, 51] 50) |
|
456 |
||
61143 | 457 |
* The alternative notation "\<Colon>" for type and sort constraints has been |
458 |
removed: in LaTeX document output it looks the same as "::". |
|
459 |
INCOMPATIBILITY, use plain "::" instead. |
|
460 |
||
60841 | 461 |
* Theory Map: lemma map_of_is_SomeD was a clone of map_of_SomeD and has |
462 |
been removed. INCOMPATIBILITY. |
|
463 |
||
60712
3ba16d28449d
Quickcheck setup for finite sets
Lars Hupel <lars.hupel@mytum.de>
parents:
60707
diff
changeset
|
464 |
* Quickcheck setup for finite sets. |
3ba16d28449d
Quickcheck setup for finite sets
Lars Hupel <lars.hupel@mytum.de>
parents:
60707
diff
changeset
|
465 |
|
60171 | 466 |
* Discontinued simp_legacy_precond. Potential INCOMPATIBILITY. |
60138 | 467 |
|
60306
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
468 |
* Sledgehammer: |
61318 | 469 |
- The MaSh relevance filter has been sped up. |
60306
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
470 |
- Proof reconstruction has been improved, to minimize the incidence of |
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
471 |
cases where Sledgehammer gives a proof that does not work. |
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
472 |
- Auto Sledgehammer now minimizes and preplays the results. |
61030 | 473 |
- Handle Vampire 4.0 proof output without raising exception. |
61043 | 474 |
- Eliminated "MASH" environment variable. Use the "MaSh" option in |
475 |
Isabelle/jEdit instead. INCOMPATIBILITY. |
|
61317 | 476 |
- Eliminated obsolete "blocking" option and related subcommands. |
60306
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
477 |
|
60310 | 478 |
* Nitpick: |
61325
1cfc476198c9
avoid too aggressive optimization of 'finite' predicate
blanchet
parents:
61324
diff
changeset
|
479 |
- Fixed soundness bug in translation of "finite" predicate. |
61324
d4ec7594f558
avoid unsound simplification of (C (s x)) when s is a selector but not C's
blanchet
parents:
61318
diff
changeset
|
480 |
- Fixed soundness bug in "destroy_constrs" optimization. |
60310 | 481 |
- Removed "check_potential" and "check_genuine" options. |
61317 | 482 |
- Eliminated obsolete "blocking" option. |
60310 | 483 |
|
61345 | 484 |
* New (co)datatype package: |
485 |
- New commands "lift_bnf" and "copy_bnf" for lifting (copying) a BNF |
|
486 |
structure on the raw type to an abstract type defined using typedef. |
|
487 |
- Always generate "case_transfer" theorem. |
|
61552 | 488 |
- Allow discriminators and selectors with the same name as the type |
489 |
being defined. |
|
490 |
- Avoid various internal name clashes (e.g., 'datatype f = f'). |
|
60920 | 491 |
|
61370 | 492 |
* Transfer: |
61426
d53db136e8fd
new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents:
61424
diff
changeset
|
493 |
- new methods for interactive debugging of 'transfer' and |
61370 | 494 |
'transfer_prover': 'transfer_start', 'transfer_step', 'transfer_end', |
495 |
'transfer_prover_start' and 'transfer_prover_end'. |
|
496 |
||
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60841
diff
changeset
|
497 |
* Division on integers is bootstrapped directly from division on |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60841
diff
changeset
|
498 |
naturals and uses generic numeral algorithm for computations. |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60841
diff
changeset
|
499 |
Slight INCOMPATIBILITY, simproc numeral_divmod replaces and generalizes |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60841
diff
changeset
|
500 |
former simprocs binary_int_div and binary_int_mod |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60841
diff
changeset
|
501 |
|
60516
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
haftmann
parents:
60515
diff
changeset
|
502 |
* Tightened specification of class semiring_no_zero_divisors. Slight |
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
haftmann
parents:
60515
diff
changeset
|
503 |
INCOMPATIBILITY. |
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
haftmann
parents:
60515
diff
changeset
|
504 |
|
60688
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
505 |
* Class algebraic_semidom introduces common algebraic notions of |
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
506 |
integral (semi)domains, particularly units. Although |
60517
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
haftmann
parents:
60516
diff
changeset
|
507 |
logically subsumed by fields, is is not a super class of these |
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
haftmann
parents:
60516
diff
changeset
|
508 |
in order not to burden fields with notions that are trivial there. |
60688
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
509 |
|
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
510 |
* Class normalization_semidom specifies canonical representants |
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
511 |
for equivalence classes of associated elements in an integral |
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
512 |
(semi)domain. This formalizes associated elements as well. |
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
513 |
|
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
514 |
* Abstract specification of gcd/lcm operations in classes semiring_gcd, |
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
515 |
semiring_Gcd, semiring_Lcd. Minor INCOMPATIBILITY: facts gcd_nat.commute |
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
516 |
and gcd_int.commute are subsumed by gcd.commute, as well as gcd_nat.assoc |
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
517 |
and gcd_int.assoc by gcd.assoc. |
60517
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
haftmann
parents:
60516
diff
changeset
|
518 |
|
60429
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
haftmann
parents:
60418
diff
changeset
|
519 |
* Former constants Fields.divide (_ / _) and Divides.div (_ div _) |
60354
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
haftmann
parents:
60349
diff
changeset
|
520 |
are logically unified to Rings.divide in syntactic type class |
60429
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
haftmann
parents:
60418
diff
changeset
|
521 |
Rings.divide, with infix syntax (_ div _). Infix syntax (_ / _) |
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
haftmann
parents:
60418
diff
changeset
|
522 |
for field division is added later as abbreviation in class Fields.inverse. |
60516
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
haftmann
parents:
60515
diff
changeset
|
523 |
INCOMPATIBILITY, instantiations must refer to Rings.divide rather |
60429
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
haftmann
parents:
60418
diff
changeset
|
524 |
than the former separate constants, hence infix syntax (_ / _) is usually |
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
haftmann
parents:
60418
diff
changeset
|
525 |
not available during instantiation. |
60354
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
haftmann
parents:
60349
diff
changeset
|
526 |
|
61628
90f54d9e63f2
cancel complementary terms as arguments to sup/inf in boolean algebras
Andreas Lochbihler
parents:
61623
diff
changeset
|
527 |
* New cancellation simprocs for boolean algebras to cancel |
90f54d9e63f2
cancel complementary terms as arguments to sup/inf in boolean algebras
Andreas Lochbihler
parents:
61623
diff
changeset
|
528 |
complementary terms for sup and inf. For example, "sup x (sup y (- x))" |
90f54d9e63f2
cancel complementary terms as arguments to sup/inf in boolean algebras
Andreas Lochbihler
parents:
61623
diff
changeset
|
529 |
simplifies to "top". INCOMPATIBILITY. |
90f54d9e63f2
cancel complementary terms as arguments to sup/inf in boolean algebras
Andreas Lochbihler
parents:
61623
diff
changeset
|
530 |
|
60397
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
531 |
* Library/Multiset: |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
532 |
- Renamed multiset inclusion operators: |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
533 |
< ~> <# |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
534 |
\<subset> ~> \<subset># |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
535 |
<= ~> <=# |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
536 |
\<le> ~> \<le># |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
537 |
\<subseteq> ~> \<subseteq># |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
538 |
INCOMPATIBILITY. |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
539 |
- "'a multiset" is no longer an instance of the "order", |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
540 |
"ordered_ab_semigroup_add_imp_le", "ordered_cancel_comm_monoid_diff", |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
541 |
"semilattice_inf", and "semilattice_sup" type classes. The theorems |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
542 |
previously provided by these type classes (directly or indirectly) |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
543 |
are now available through the "subset_mset" interpretation |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
544 |
(e.g. add_mono ~> subset_mset.add_mono). |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
545 |
INCOMPATIBILITY. |
60497 | 546 |
- Renamed conversions: |
60515 | 547 |
multiset_of ~> mset |
548 |
multiset_of_set ~> mset_set |
|
60497 | 549 |
set_of ~> set_mset |
550 |
INCOMPATIBILITY |
|
60398 | 551 |
- Renamed lemmas: |
552 |
mset_le_def ~> subseteq_mset_def |
|
553 |
mset_less_def ~> subset_mset_def |
|
60400 | 554 |
less_eq_multiset.rep_eq ~> subseteq_mset_def |
555 |
INCOMPATIBILITY |
|
556 |
- Removed lemmas generated by lift_definition: |
|
557 |
less_eq_multiset.abs_eq, less_eq_multiset.rsp less_eq_multiset.transfer |
|
558 |
less_eq_multiset_def |
|
559 |
INCOMPATIBILITY |
|
60007 | 560 |
|
61520
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61512
diff
changeset
|
561 |
* Multivariate_Analysis/Cauchy_Integral_Thm: Complex path integrals, Cauchy's |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61512
diff
changeset
|
562 |
integral theorem, winding numbers and Cauchy's integral formula, ported from HOL Light |
61426
d53db136e8fd
new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents:
61424
diff
changeset
|
563 |
|
d53db136e8fd
new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents:
61424
diff
changeset
|
564 |
* Multivariate_Analysis: Added topological concepts such as connected components |
d53db136e8fd
new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents:
61424
diff
changeset
|
565 |
and the inside or outside of a set. |
60809
457abb82fb9e
the Cauchy integral theorem and related material
paulson <lp15@cam.ac.uk>
parents:
60802
diff
changeset
|
566 |
|
60523 | 567 |
* Theory Library/Old_Recdef: discontinued obsolete 'defer_recdef' |
568 |
command. Minor INCOMPATIBILITY, use 'function' instead. |
|
569 |
||
61681
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61660
diff
changeset
|
570 |
* Inductive definitions ('inductive', 'coinductive', etc.) expose |
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61660
diff
changeset
|
571 |
low-level facts of the internal construction only if the option |
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61660
diff
changeset
|
572 |
"inductive_defs" is enabled. This refers to the internal predicate |
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61660
diff
changeset
|
573 |
definition and its monotonicity result. Rare INCOMPATIBILITY. |
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61660
diff
changeset
|
574 |
|
61121
efe8b18306b7
do not expose low-level "_def" facts of 'function' definitions, to avoid potential confusion with the situation of plain 'definition';
wenzelm
parents:
61119
diff
changeset
|
575 |
* Recursive function definitions ('fun', 'function', 'partial_function') |
61681
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61660
diff
changeset
|
576 |
expose low-level facts of the internal construction only if the option |
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61660
diff
changeset
|
577 |
"function_defs" is enabled. Rare INCOMPATIBILITY. |
61121
efe8b18306b7
do not expose low-level "_def" facts of 'function' definitions, to avoid potential confusion with the situation of plain 'definition';
wenzelm
parents:
61119
diff
changeset
|
578 |
|
61685 | 579 |
* Data_Structures: new and growing session of standard data structures. |
580 |
||
61119 | 581 |
* Imperative_HOL: obsolete theory Legacy_Mrec has been removed. |
582 |
||
61606
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
583 |
* Library/Omega_Words_Fun: Infinite words modeled as functions nat => |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
584 |
'a. |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
585 |
|
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
586 |
* HOL-Statespace: command 'statespace' uses mandatory qualifier for |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
587 |
import of parent, as for general 'locale' expressions. INCOMPATIBILITY, |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
588 |
remove '!' and add '?' as required. |
61178
0b071f72f330
Omega_Words_Fun: Infinite words as functions from nat.
lammich <lammich@in.tum.de>
parents:
61174
diff
changeset
|
589 |
|
60479 | 590 |
|
60793 | 591 |
*** ML *** |
592 |
||
61597
53e32a9b66b8
added @{undefined} with somewhat undefined symbol;
wenzelm
parents:
61595
diff
changeset
|
593 |
* Antiquotation @{undefined} or \<^undefined> inlines (raise Match). |
53e32a9b66b8
added @{undefined} with somewhat undefined symbol;
wenzelm
parents:
61595
diff
changeset
|
594 |
|
61268 | 595 |
* The auxiliary module Pure/display.ML has been eliminated. Its |
596 |
elementary thm print operations are now in Pure/more_thm.ML and thus |
|
597 |
called Thm.pretty_thm, Thm.string_of_thm etc. INCOMPATIBILITY. |
|
598 |
||
61144 | 599 |
* Simproc programming interfaces have been simplified: |
600 |
Simplifier.make_simproc and Simplifier.define_simproc supersede various |
|
601 |
forms of Simplifier.mk_simproc, Simplifier.simproc_global etc. Note that |
|
602 |
term patterns for the left-hand sides are specified with implicitly |
|
603 |
fixed variables, like top-level theorem statements. INCOMPATIBILITY. |
|
604 |
||
60802 | 605 |
* Instantiation rules have been re-organized as follows: |
606 |
||
607 |
Thm.instantiate (*low-level instantiation with named arguments*) |
|
608 |
Thm.instantiate' (*version with positional arguments*) |
|
609 |
||
610 |
Drule.infer_instantiate (*instantiation with type inference*) |
|
611 |
Drule.infer_instantiate' (*version with positional arguments*) |
|
612 |
||
613 |
The LHS only requires variable specifications, instead of full terms. |
|
614 |
Old cterm_instantiate is superseded by infer_instantiate. |
|
615 |
INCOMPATIBILITY, need to re-adjust some ML names and types accordingly. |
|
616 |
||
60793 | 617 |
* Old tactic shorthands atac, rtac, etac, dtac, ftac have been |
618 |
discontinued. INCOMPATIBILITY, use regular assume_tac, resolve_tac etc. |
|
619 |
instead (with proper context). |
|
60642
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
620 |
|
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
621 |
* Thm.instantiate (and derivatives) no longer require the LHS of the |
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
622 |
instantiation to be certified: plain variables are given directly. |
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
623 |
|
60707
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
624 |
* Subgoal.SUBPROOF and Subgoal.FOCUS combinators use anonymous |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
625 |
quasi-bound variables (like the Simplifier), instead of accidentally |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
626 |
named local fixes. This has the potential to improve stability of proof |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
627 |
tools, but can also cause INCOMPATIBILITY for tools that don't observe |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
628 |
the proof context discipline. |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
629 |
|
60642
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
630 |
|
60983
ff4a67c65084
updated to polyml-5.5.3-20150820, with native x86-windows support;
wenzelm
parents:
60922
diff
changeset
|
631 |
*** System *** |
ff4a67c65084
updated to polyml-5.5.3-20150820, with native x86-windows support;
wenzelm
parents:
60922
diff
changeset
|
632 |
|
61602 | 633 |
* Global session timeout is multiplied by timeout_scale factor. This |
634 |
allows to adjust large-scale tests (e.g. AFP) to overall hardware |
|
635 |
performance. |
|
636 |
||
61174 | 637 |
* Property values in etc/symbols may contain spaces, if written with the |
638 |
replacement character "␣" (Unicode point 0x2324). For example: |
|
639 |
||
61602 | 640 |
\<star> code: 0x0022c6 group: operator font: Deja␣Vu␣Sans␣Mono |
61174 | 641 |
|
61216 | 642 |
* Command-line tool "isabelle update_then" expands old Isar command |
643 |
conflations: |
|
644 |
||
645 |
hence ~> then have |
|
646 |
thus ~> then show |
|
647 |
||
648 |
This syntax is more orthogonal and improves readability and |
|
649 |
maintainability of proofs. |
|
650 |
||
61158
ea6a4c8bc722
convenient change of ML system architecture via system option ML_preference_64, which is grepped off-line from stored preferences during bootstrap;
wenzelm
parents:
61149
diff
changeset
|
651 |
* Poly/ML default platform architecture may be changed from 32bit to |
ea6a4c8bc722
convenient change of ML system architecture via system option ML_preference_64, which is grepped off-line from stored preferences during bootstrap;
wenzelm
parents:
61149
diff
changeset
|
652 |
64bit via system option ML_system_64. A system restart (and rebuild) |
ea6a4c8bc722
convenient change of ML system architecture via system option ML_preference_64, which is grepped off-line from stored preferences during bootstrap;
wenzelm
parents:
61149
diff
changeset
|
653 |
is required after change. |
ea6a4c8bc722
convenient change of ML system architecture via system option ML_preference_64, which is grepped off-line from stored preferences during bootstrap;
wenzelm
parents:
61149
diff
changeset
|
654 |
|
61074 | 655 |
* Poly/ML 5.5.3 runs natively on x86-windows and x86_64-windows, |
656 |
which both allow larger heap space than former x86-cygwin. |
|
60983
ff4a67c65084
updated to polyml-5.5.3-20150820, with native x86-windows support;
wenzelm
parents:
60922
diff
changeset
|
657 |
|
60996
5176de8f90db
updated to jdk-8u60, with support for x86_64-windows;
wenzelm
parents:
60986
diff
changeset
|
658 |
* Java runtime environment for x86_64-windows allows to use larger heap |
5176de8f90db
updated to jdk-8u60, with support for x86_64-windows;
wenzelm
parents:
60986
diff
changeset
|
659 |
space. |
5176de8f90db
updated to jdk-8u60, with support for x86_64-windows;
wenzelm
parents:
60986
diff
changeset
|
660 |
|
61135
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
661 |
* Java runtime options are determined separately for 32bit vs. 64bit |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
662 |
platforms as follows. |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
663 |
|
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
664 |
- Isabelle desktop application: platform-specific files that are |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
665 |
associated with the main app bundle |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
666 |
|
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
667 |
- isabelle jedit: settings |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
668 |
JEDIT_JAVA_SYSTEM_OPTIONS |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
669 |
JEDIT_JAVA_OPTIONS32 vs. JEDIT_JAVA_OPTIONS64 |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
670 |
|
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
671 |
- isabelle build: settings |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
672 |
ISABELLE_BUILD_JAVA_OPTIONS32 vs. ISABELLE_BUILD_JAVA_OPTIONS64 |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
673 |
|
61294 | 674 |
* Bash shell function "jvmpath" has been renamed to "platform_path": it |
675 |
is relevant both for Poly/ML and JVM processes. |
|
676 |
||
61567 | 677 |
* Heap images are 10-15% smaller due to less wasteful persistent theory |
678 |
content (using ML type theory_id instead of theory); |
|
679 |
||
60983
ff4a67c65084
updated to polyml-5.5.3-20150820, with native x86-windows support;
wenzelm
parents:
60922
diff
changeset
|
680 |
|
60479 | 681 |
|
60010 | 682 |
New in Isabelle2015 (May 2015) |
683 |
------------------------------ |
|
57695 | 684 |
|
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
685 |
*** General *** |
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
686 |
|
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59936
diff
changeset
|
687 |
* Local theory specification commands may have a 'private' or |
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59967
diff
changeset
|
688 |
'qualified' modifier to restrict name space accesses to the local scope, |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59936
diff
changeset
|
689 |
as provided by some "context begin ... end" block. For example: |
59926 | 690 |
|
691 |
context |
|
692 |
begin |
|
693 |
||
694 |
private definition ... |
|
695 |
private lemma ... |
|
696 |
||
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59967
diff
changeset
|
697 |
qualified definition ... |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59967
diff
changeset
|
698 |
qualified lemma ... |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59967
diff
changeset
|
699 |
|
59926 | 700 |
lemma ... |
701 |
theorem ... |
|
702 |
||
703 |
end |
|
704 |
||
59901 | 705 |
* Command 'experiment' opens an anonymous locale context with private |
706 |
naming policy. |
|
707 |
||
59951 | 708 |
* Command 'notepad' requires proper nesting of begin/end and its proof |
709 |
structure in the body: 'oops' is no longer supported here. Minor |
|
710 |
INCOMPATIBILITY, use 'sorry' instead. |
|
711 |
||
712 |
* Command 'named_theorems' declares a dynamic fact within the context, |
|
713 |
together with an attribute to maintain the content incrementally. This |
|
714 |
supersedes functor Named_Thms in Isabelle/ML, but with a subtle change |
|
715 |
of semantics due to external visual order vs. internal reverse order. |
|
716 |
||
717 |
* 'find_theorems': search patterns which are abstractions are |
|
718 |
schematically expanded before search. Search results match the naive |
|
719 |
expectation more closely, particularly wrt. abbreviations. |
|
720 |
INCOMPATIBILITY. |
|
59648 | 721 |
|
59569 | 722 |
* Commands 'method_setup' and 'attribute_setup' now work within a local |
723 |
theory context. |
|
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
724 |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58872
diff
changeset
|
725 |
* Outer syntax commands are managed authentically within the theory |
59569 | 726 |
context, without implicit global state. Potential for accidental |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58872
diff
changeset
|
727 |
INCOMPATIBILITY, make sure that required theories are really imported. |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58872
diff
changeset
|
728 |
|
60116 | 729 |
* Historical command-line terminator ";" is no longer accepted (and |
730 |
already used differently in Isar). Minor INCOMPATIBILITY, use "isabelle |
|
731 |
update_semicolons" to remove obsolete semicolons from old theory |
|
732 |
sources. |
|
733 |
||
59951 | 734 |
* Structural composition of proof methods (meth1; meth2) in Isar |
735 |
corresponds to (tac1 THEN_ALL_NEW tac2) in ML. |
|
59105 | 736 |
|
60119
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60116
diff
changeset
|
737 |
* The Eisbach proof method language allows to define new proof methods |
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60116
diff
changeset
|
738 |
by combining existing ones with their usual syntax. The "match" proof |
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60116
diff
changeset
|
739 |
method provides basic fact/term matching in addition to |
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60116
diff
changeset
|
740 |
premise/conclusion matching through Subgoal.focus, and binds fact names |
60288
d7f636331176
added Eisbach manual, using version 8845c4cb28b6 of its Bitbucket repository;
wenzelm
parents:
60273
diff
changeset
|
741 |
from matches as well as term patterns within matches. The Isabelle |
d7f636331176
added Eisbach manual, using version 8845c4cb28b6 of its Bitbucket repository;
wenzelm
parents:
60273
diff
changeset
|
742 |
documentation provides an entry "eisbach" for the Eisbach User Manual. |
d7f636331176
added Eisbach manual, using version 8845c4cb28b6 of its Bitbucket repository;
wenzelm
parents:
60273
diff
changeset
|
743 |
Sources and various examples are in ~~/src/HOL/Eisbach/. |
60119
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60116
diff
changeset
|
744 |
|
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
745 |
|
58524 | 746 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
747 |
||
59569 | 748 |
* Improved folding mode "isabelle" based on Isar syntax. Alternatively, |
749 |
the "sidekick" mode may be used for document structure. |
|
750 |
||
751 |
* Extended bracket matching based on Isar language structure. System |
|
752 |
option jedit_structure_limit determines maximum number of lines to scan |
|
753 |
in the buffer. |
|
58758 | 754 |
|
58540 | 755 |
* Support for BibTeX files: context menu, context-sensitive token |
756 |
marker, SideKick parser. |
|
58524 | 757 |
|
58551 | 758 |
* Document antiquotation @{cite} provides formal markup, which is |
60265 | 759 |
interpreted semi-formally based on .bib files that happen to be open in |
760 |
the editor (hyperlinks, completion etc.). |
|
58551 | 761 |
|
58785 | 762 |
* Less waste of vertical space via negative line spacing (see Global |
763 |
Options / Text Area). |
|
764 |
||
60091
8bd5999133d4
let the system choose Graph_Display.display_graph_old: thm_deps needs tree hierarchy, code_deps needs cycles (!?);
wenzelm
parents:
60085
diff
changeset
|
765 |
* Improved graphview panel with optional output of PNG or PDF, for |
60273
83de10e27007
use display_graph_old for locale_deps, to show a bit more than nothing for cyclic graphs;
wenzelm
parents:
60265
diff
changeset
|
766 |
display of 'thy_deps', 'class_deps' etc. |
60010 | 767 |
|
60116 | 768 |
* The commands 'thy_deps' and 'class_deps' allow optional bounds to |
769 |
restrict the visualized hierarchy. |
|
60095 | 770 |
|
60072 | 771 |
* Improved scheduling for asynchronous print commands (e.g. provers |
772 |
managed by the Sledgehammer panel) wrt. ongoing document processing. |
|
773 |
||
58524 | 774 |
|
59951 | 775 |
*** Document preparation *** |
776 |
||
777 |
* Document markup commands 'chapter', 'section', 'subsection', |
|
778 |
'subsubsection', 'text', 'txt', 'text_raw' work uniformly in any |
|
779 |
context, even before the initial 'theory' command. Obsolete proof |
|
780 |
commands 'sect', 'subsect', 'subsubsect', 'txt_raw' have been |
|
781 |
discontinued, use 'section', 'subsection', 'subsubsection', 'text_raw' |
|
782 |
instead. The old 'header' command is still retained for some time, but |
|
783 |
should be replaced by 'chapter', 'section' etc. (using "isabelle |
|
784 |
update_header"). Minor INCOMPATIBILITY. |
|
785 |
||
60010 | 786 |
* Official support for "tt" style variants, via \isatt{...} or |
787 |
\begin{isabellett}...\end{isabellett}. The somewhat fragile \verb or |
|
788 |
verbatim environment of LaTeX is no longer used. This allows @{ML} etc. |
|
789 |
as argument to other macros (such as footnotes). |
|
790 |
||
791 |
* Document antiquotation @{verbatim} prints ASCII text literally in "tt" |
|
792 |
style. |
|
793 |
||
794 |
* Discontinued obsolete option "document_graph": session_graph.pdf is |
|
795 |
produced unconditionally for HTML browser_info and PDF-LaTeX document. |
|
796 |
||
59951 | 797 |
* Diagnostic commands and document markup commands within a proof do not |
798 |
affect the command tag for output. Thus commands like 'thm' are subject |
|
799 |
to proof document structure, and no longer "stick out" accidentally. |
|
800 |
Commands 'text' and 'txt' merely differ in the LaTeX style, not their |
|
801 |
tags. Potential INCOMPATIBILITY in exotic situations. |
|
802 |
||
803 |
* System option "pretty_margin" is superseded by "thy_output_margin", |
|
804 |
which is also accessible via document antiquotation option "margin". |
|
805 |
Only the margin for document output may be changed, but not the global |
|
806 |
pretty printing: that is 76 for plain console output, and adapted |
|
807 |
dynamically in GUI front-ends. Implementations of document |
|
808 |
antiquotations need to observe the margin explicitly according to |
|
809 |
Thy_Output.string_of_margin. Minor INCOMPATIBILITY. |
|
810 |
||
60299
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
811 |
* Specification of 'document_files' in the session ROOT file is |
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
812 |
mandatory for document preparation. The legacy mode with implicit |
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
813 |
copying of the document/ directory is no longer supported. Minor |
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
814 |
INCOMPATIBILITY. |
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
815 |
|
59951 | 816 |
|
58202 | 817 |
*** Pure *** |
818 |
||
59835
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
819 |
* Proof methods with explicit instantiation ("rule_tac", "subgoal_tac" |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
820 |
etc.) allow an optional context of local variables ('for' declaration): |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
821 |
these variables become schematic in the instantiated theorem; this |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
822 |
behaviour is analogous to 'for' in attributes "where" and "of". |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
823 |
Configuration option rule_insts_schematic (default false) controls use |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
824 |
of schematic variables outside the context. Minor INCOMPATIBILITY, |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
825 |
declare rule_insts_schematic = true temporarily and update to use local |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
826 |
variable declarations or dummy patterns instead. |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
827 |
|
60010 | 828 |
* Explicit instantiation via attributes "where", "of", and proof methods |
829 |
"rule_tac" with derivatives like "subgoal_tac" etc. admit dummy patterns |
|
830 |
("_") that stand for anonymous local variables. |
|
831 |
||
59951 | 832 |
* Generated schematic variables in standard format of exported facts are |
833 |
incremented to avoid material in the proof context. Rare |
|
834 |
INCOMPATIBILITY, explicit instantiation sometimes needs to refer to |
|
835 |
different index. |
|
836 |
||
60011 | 837 |
* Lexical separation of signed and unsigned numerals: categories "num" |
838 |
and "float" are unsigned. INCOMPATIBILITY: subtle change in precedence |
|
839 |
of numeral signs, particularly in expressions involving infix syntax |
|
840 |
like "(- 1) ^ n". |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58374
diff
changeset
|
841 |
|
58421 | 842 |
* Old inner token category "xnum" has been discontinued. Potential |
843 |
INCOMPATIBILITY for exotic syntax: may use mixfix grammar with "num" |
|
844 |
token category instead. |
|
845 |
||
58202 | 846 |
|
57737 | 847 |
*** HOL *** |
848 |
||
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
849 |
* New (co)datatype package: |
58374 | 850 |
- The 'datatype_new' command has been renamed 'datatype'. The old |
851 |
command of that name is now called 'old_datatype' and is provided |
|
852 |
by "~~/src/HOL/Library/Old_Datatype.thy". See |
|
853 |
'isabelle doc datatypes' for information on porting. |
|
854 |
INCOMPATIBILITY. |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
855 |
- Renamed theorems: |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
856 |
disc_corec ~> corec_disc |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
857 |
disc_corec_iff ~> corec_disc_iff |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
858 |
disc_exclude ~> distinct_disc |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
859 |
disc_exhaust ~> exhaust_disc |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
860 |
disc_map_iff ~> map_disc_iff |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
861 |
sel_corec ~> corec_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
862 |
sel_exhaust ~> exhaust_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
863 |
sel_map ~> map_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
864 |
sel_set ~> set_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
865 |
sel_split ~> split_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
866 |
sel_split_asm ~> split_sel_asm |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
867 |
strong_coinduct ~> coinduct_strong |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
868 |
weak_case_cong ~> case_cong_weak |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
869 |
INCOMPATIBILITY. |
58192 | 870 |
- The "no_code" option to "free_constructors", "datatype_new", and |
871 |
"codatatype" has been renamed "plugins del: code". |
|
872 |
INCOMPATIBILITY. |
|
58044 | 873 |
- The rules "set_empty" have been removed. They are easy |
874 |
consequences of other set rules "by auto". |
|
875 |
INCOMPATIBILITY. |
|
876 |
- The rule "set_cases" is now registered with the "[cases set]" |
|
57990 | 877 |
attribute. This can influence the behavior of the "cases" proof |
878 |
method when more than one case rule is applicable (e.g., an |
|
879 |
assumption is of the form "w : set ws" and the method "cases w" |
|
880 |
is invoked). The solution is to specify the case rule explicitly |
|
881 |
(e.g. "cases w rule: widget.exhaust"). |
|
882 |
INCOMPATIBILITY. |
|
59675 | 883 |
- Renamed theories: |
884 |
BNF_Comp ~> BNF_Composition |
|
885 |
BNF_FP_Base ~> BNF_Fixpoint_Base |
|
886 |
BNF_GFP ~> BNF_Greatest_Fixpoint |
|
887 |
BNF_LFP ~> BNF_Least_Fixpoint |
|
888 |
BNF_Constructions_on_Wellorders ~> BNF_Wellorder_Constructions |
|
889 |
Cardinals/Constructions_on_Wellorders ~> Cardinals/Wellorder_Constructions |
|
890 |
INCOMPATIBILITY. |
|
60115 | 891 |
- Lifting and Transfer setup for basic HOL types sum and prod (also |
892 |
option) is now performed by the BNF package. Theories Lifting_Sum, |
|
893 |
Lifting_Product and Lifting_Option from Main became obsolete and |
|
894 |
were removed. Changed definitions of the relators rel_prod and |
|
895 |
rel_sum (using inductive). |
|
60112 | 896 |
INCOMPATIBILITY: use rel_prod.simps and rel_sum.simps instead |
60115 | 897 |
of rel_prod_def and rel_sum_def. |
898 |
Minor INCOMPATIBILITY: (rarely used by name) transfer theorem names |
|
899 |
changed (e.g. map_prod_transfer ~> prod.map_transfer). |
|
60261 | 900 |
- Parametricity theorems for map functions, relators, set functions, |
901 |
constructors, case combinators, discriminators, selectors and |
|
902 |
(co)recursors are automatically proved and registered as transfer |
|
903 |
rules. |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
904 |
|
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
905 |
* Old datatype package: |
58310 | 906 |
- The old 'datatype' command has been renamed 'old_datatype', and |
58374 | 907 |
'rep_datatype' has been renamed 'old_rep_datatype'. They are |
908 |
provided by "~~/src/HOL/Library/Old_Datatype.thy". See |
|
58310 | 909 |
'isabelle doc datatypes' for information on porting. |
58374 | 910 |
INCOMPATIBILITY. |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
911 |
- Renamed theorems: |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
912 |
weak_case_cong ~> case_cong_weak |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
913 |
INCOMPATIBILITY. |
58374 | 914 |
- Renamed theory: |
915 |
~~/src/HOL/Datatype.thy ~> ~~/src/HOL/Library/Old_Datatype.thy |
|
916 |
INCOMPATIBILITY. |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
917 |
|
59039 | 918 |
* Nitpick: |
60011 | 919 |
- Fixed soundness bug related to the strict and non-strict subset |
59039 | 920 |
operations. |
921 |
||
57737 | 922 |
* Sledgehammer: |
59511 | 923 |
- CVC4 is now included with Isabelle instead of CVC3 and run by |
924 |
default. |
|
59965 | 925 |
- Z3 is now always enabled by default, now that it is fully open |
926 |
source. The "z3_non_commercial" option is discontinued. |
|
57737 | 927 |
- Minimization is now always enabled by default. |
60011 | 928 |
Removed sub-command: |
57737 | 929 |
min |
59967 | 930 |
- Proof reconstruction, both one-liners and Isar, has been |
59039 | 931 |
dramatically improved. |
932 |
- Improved support for CVC4 and veriT. |
|
57737 | 933 |
|
58062 | 934 |
* Old and new SMT modules: |
58067 | 935 |
- The old 'smt' method has been renamed 'old_smt' and moved to |
59569 | 936 |
'src/HOL/Library/Old_SMT.thy'. It is provided for compatibility, |
937 |
until applications have been ported to use the new 'smt' method. For |
|
938 |
the method to work, an older version of Z3 (e.g. Z3 3.2 or 4.0) must |
|
939 |
be installed, and the environment variable "OLD_Z3_SOLVER" must |
|
940 |
point to it. |
|
58062 | 941 |
INCOMPATIBILITY. |
58067 | 942 |
- The 'smt2' method has been renamed 'smt'. |
58060 | 943 |
INCOMPATIBILITY. |
59569 | 944 |
- New option 'smt_reconstruction_step_timeout' to limit the |
945 |
reconstruction time of Z3 proof steps in the new 'smt' method. |
|
59216 | 946 |
- New option 'smt_statistics' to display statistics of the new 'smt' |
947 |
method, especially runtime statistics of Z3 proof reconstruction. |
|
58060 | 948 |
|
60261 | 949 |
* Lifting: command 'lift_definition' allows to execute lifted constants |
950 |
that have as a return type a datatype containing a subtype. This |
|
951 |
overcomes long-time limitations in the area of code generation and |
|
952 |
lifting, and avoids tedious workarounds. |
|
60258 | 953 |
|
60010 | 954 |
* Command and antiquotation "value" provide different evaluation slots |
955 |
(again), where the previous strategy (NBE after ML) serves as default. |
|
956 |
Minor INCOMPATIBILITY. |
|
957 |
||
958 |
* Add NO_MATCH-simproc, allows to check for syntactic non-equality. |
|
959 |
||
960 |
* field_simps: Use NO_MATCH-simproc for distribution rules, to avoid |
|
961 |
non-termination in case of distributing a division. With this change |
|
962 |
field_simps is in some cases slightly less powerful, if it fails try to |
|
963 |
add algebra_simps, or use divide_simps. Minor INCOMPATIBILITY. |
|
964 |
||
965 |
* Separate class no_zero_divisors has been given up in favour of fully |
|
966 |
algebraic semiring_no_zero_divisors. INCOMPATIBILITY. |
|
967 |
||
968 |
* Class linordered_semidom really requires no zero divisors. |
|
969 |
INCOMPATIBILITY. |
|
970 |
||
971 |
* Classes division_ring, field and linordered_field always demand |
|
972 |
"inverse 0 = 0". Given up separate classes division_ring_inverse_zero, |
|
973 |
field_inverse_zero and linordered_field_inverse_zero. INCOMPATIBILITY. |
|
974 |
||
975 |
* Classes cancel_ab_semigroup_add / cancel_monoid_add specify explicit |
|
976 |
additive inverse operation. INCOMPATIBILITY. |
|
977 |
||
60020
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
paulson <lp15@cam.ac.uk>
parents:
60011
diff
changeset
|
978 |
* Complex powers and square roots. The functions "ln" and "powr" are now |
60025 | 979 |
overloaded for types real and complex, and 0 powr y = 0 by definition. |
980 |
INCOMPATIBILITY: type constraints may be necessary. |
|
60020
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
paulson <lp15@cam.ac.uk>
parents:
60011
diff
changeset
|
981 |
|
60010 | 982 |
* The functions "sin" and "cos" are now defined for any type of sort |
983 |
"{real_normed_algebra_1,banach}" type, so in particular on "real" and |
|
984 |
"complex" uniformly. Minor INCOMPATIBILITY: type constraints may be |
|
985 |
needed. |
|
986 |
||
987 |
* New library of properties of the complex transcendental functions sin, |
|
988 |
cos, tan, exp, Ln, Arctan, Arcsin, Arccos. Ported from HOL Light. |
|
989 |
||
990 |
* The factorial function, "fact", now has type "nat => 'a" (of a sort |
|
991 |
that admits numeric types including nat, int, real and complex. |
|
992 |
INCOMPATIBILITY: an expression such as "fact 3 = 6" may require a type |
|
993 |
constraint, and the combination "real (fact k)" is likely to be |
|
994 |
unsatisfactory. If a type conversion is still necessary, then use |
|
995 |
"of_nat (fact k)" or "real_of_nat (fact k)". |
|
996 |
||
997 |
* Removed functions "natfloor" and "natceiling", use "nat o floor" and |
|
998 |
"nat o ceiling" instead. A few of the lemmas have been retained and |
|
999 |
adapted: in their names "natfloor"/"natceiling" has been replaced by |
|
1000 |
"nat_floor"/"nat_ceiling". |
|
1001 |
||
1002 |
* Qualified some duplicated fact names required for boostrapping the |
|
1003 |
type class hierarchy: |
|
1004 |
ab_add_uminus_conv_diff ~> diff_conv_add_uminus |
|
1005 |
field_inverse_zero ~> inverse_zero |
|
1006 |
field_divide_inverse ~> divide_inverse |
|
1007 |
field_inverse ~> left_inverse |
|
1008 |
Minor INCOMPATIBILITY. |
|
1009 |
||
1010 |
* Eliminated fact duplicates: |
|
1011 |
mult_less_imp_less_right ~> mult_right_less_imp_less |
|
1012 |
mult_less_imp_less_left ~> mult_left_less_imp_less |
|
1013 |
Minor INCOMPATIBILITY. |
|
1014 |
||
1015 |
* Fact consolidation: even_less_0_iff is subsumed by |
|
1016 |
double_add_less_zero_iff_single_add_less_zero (simp by default anyway). |
|
1017 |
||
1018 |
* Generalized and consolidated some theorems concerning divsibility: |
|
1019 |
dvd_reduce ~> dvd_add_triv_right_iff |
|
1020 |
dvd_plus_eq_right ~> dvd_add_right_iff |
|
1021 |
dvd_plus_eq_left ~> dvd_add_left_iff |
|
1022 |
Minor INCOMPATIBILITY. |
|
1023 |
||
1024 |
* "even" and "odd" are mere abbreviations for "2 dvd _" and "~ 2 dvd _" |
|
1025 |
and part of theory Main. |
|
1026 |
even_def ~> even_iff_mod_2_eq_zero |
|
1027 |
INCOMPATIBILITY. |
|
1028 |
||
1029 |
* Lemma name consolidation: divide_Numeral1 ~> divide_numeral_1. Minor |
|
1030 |
INCOMPATIBILITY. |
|
1031 |
||
1032 |
* Bootstrap of listsum as special case of abstract product over lists. |
|
1033 |
Fact rename: |
|
1034 |
listsum_def ~> listsum.eq_foldr |
|
1035 |
INCOMPATIBILITY. |
|
1036 |
||
1037 |
* Product over lists via constant "listprod". |
|
1038 |
||
1039 |
* Theory List: renamed drop_Suc_conv_tl and nth_drop' to |
|
1040 |
Cons_nth_drop_Suc. |
|
58247
98d0f85d247f
enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
nipkow
parents:
58202
diff
changeset
|
1041 |
|
58626 | 1042 |
* New infrastructure for compiling, running, evaluating and testing |
59569 | 1043 |
generated code in target languages in HOL/Library/Code_Test. See |
1044 |
HOL/Codegenerator_Test/Code_Test* for examples. |
|
58008 | 1045 |
|
60010 | 1046 |
* Library/Multiset: |
59813 | 1047 |
- Introduced "replicate_mset" operation. |
1048 |
- Introduced alternative characterizations of the multiset ordering in |
|
1049 |
"Library/Multiset_Order". |
|
59958
4538d41e8e54
renamed multiset ordering to free up nice <# etc. symbols for the standard subset
blanchet
parents:
59951
diff
changeset
|
1050 |
- Renamed multiset ordering: |
4538d41e8e54
renamed multiset ordering to free up nice <# etc. symbols for the standard subset
blanchet
parents:
59951
diff
changeset
|
1051 |
<# ~> #<# |
4538d41e8e54
renamed multiset ordering to free up nice <# etc. symbols for the standard subset
blanchet
parents:
59951
diff
changeset
|
1052 |
<=# ~> #<=# |
4538d41e8e54
renamed multiset ordering to free up nice <# etc. symbols for the standard subset
blanchet
parents:
59951
diff
changeset
|
1053 |
\<subset># ~> #\<subset># |
4538d41e8e54
renamed multiset ordering to free up nice <# etc. symbols for the standard subset
blanchet
parents:
59951
diff
changeset
|
1054 |
\<subseteq># ~> #\<subseteq># |
4538d41e8e54
renamed multiset ordering to free up nice <# etc. symbols for the standard subset
blanchet
parents:
59951
diff
changeset
|
1055 |
INCOMPATIBILITY. |
59986
f38b94549dc8
introduced new abbreviations for multiset operations (in the hope of getting rid of the old names <, <=, etc.)
blanchet
parents:
59967
diff
changeset
|
1056 |
- Introduced abbreviations for ill-named multiset operations: |
f38b94549dc8
introduced new abbreviations for multiset operations (in the hope of getting rid of the old names <, <=, etc.)
blanchet
parents:
59967
diff
changeset
|
1057 |
<#, \<subset># abbreviate < (strict subset) |
f38b94549dc8
introduced new abbreviations for multiset operations (in the hope of getting rid of the old names <, <=, etc.)
blanchet
parents:
59967
diff
changeset
|
1058 |
<=#, \<le>#, \<subseteq># abbreviate <= (subset or equal) |
f38b94549dc8
introduced new abbreviations for multiset operations (in the hope of getting rid of the old names <, <=, etc.)
blanchet
parents:
59967
diff
changeset
|
1059 |
INCOMPATIBILITY. |
59813 | 1060 |
- Renamed |
1061 |
in_multiset_of ~> in_multiset_in_set |
|
59998
c54d36be22ef
renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents:
59991
diff
changeset
|
1062 |
Multiset.fold ~> fold_mset |
c54d36be22ef
renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents:
59991
diff
changeset
|
1063 |
Multiset.filter ~> filter_mset |
59813 | 1064 |
INCOMPATIBILITY. |
59949 | 1065 |
- Removed mcard, is equal to size. |
59813 | 1066 |
- Added attributes: |
1067 |
image_mset.id [simp] |
|
1068 |
image_mset_id [simp] |
|
1069 |
elem_multiset_of_set [simp, intro] |
|
1070 |
comp_fun_commute_plus_mset [simp] |
|
1071 |
comp_fun_commute.fold_mset_insert [OF comp_fun_commute_plus_mset, simp] |
|
1072 |
in_mset_fold_plus_iff [iff] |
|
1073 |
set_of_Union_mset [simp] |
|
1074 |
in_Union_mset_iff [iff] |
|
1075 |
INCOMPATIBILITY. |
|
1076 |
||
60010 | 1077 |
* Library/Sum_of_Squares: simplified and improved "sos" method. Always |
1078 |
use local CSDP executable, which is much faster than the NEOS server. |
|
1079 |
The "sos_cert" functionality is invoked as "sos" with additional |
|
1080 |
argument. Minor INCOMPATIBILITY. |
|
1081 |
||
1082 |
* HOL-Decision_Procs: New counterexample generator quickcheck |
|
1083 |
[approximation] for inequalities of transcendental functions. Uses |
|
1084 |
hardware floating point arithmetic to randomly discover potential |
|
60011 | 1085 |
counterexamples. Counterexamples are certified with the "approximation" |
60010 | 1086 |
method. See HOL/Decision_Procs/ex/Approximation_Quickcheck_Ex.thy for |
1087 |
examples. |
|
58990 | 1088 |
|
59354 | 1089 |
* HOL-Probability: Reworked measurability prover |
60011 | 1090 |
- applies destructor rules repeatedly |
59354 | 1091 |
- removed application splitting (replaced by destructor rule) |
59569 | 1092 |
- added congruence rules to rewrite measure spaces under the sets |
1093 |
projection |
|
1094 |
||
60010 | 1095 |
* New proof method "rewrite" (in theory ~~/src/HOL/Library/Rewrite) for |
1096 |
single-step rewriting with subterm selection based on patterns. |
|
1097 |
||
58630 | 1098 |
|
58066 | 1099 |
*** ML *** |
1100 |
||
60010 | 1101 |
* Subtle change of name space policy: undeclared entries are now |
1102 |
considered inaccessible, instead of accessible via the fully-qualified |
|
1103 |
internal name. This mainly affects Name_Space.intern (and derivatives), |
|
1104 |
which may produce an unexpected Long_Name.hidden prefix. Note that |
|
60011 | 1105 |
contemporary applications use the strict Name_Space.check (and |
60010 | 1106 |
derivatives) instead, which is not affected by the change. Potential |
1107 |
INCOMPATIBILITY in rare applications of Name_Space.intern. |
|
59951 | 1108 |
|
60096 | 1109 |
* Subtle change of error semantics of Toplevel.proof_of: regular user |
1110 |
ERROR instead of internal Toplevel.UNDEF. |
|
1111 |
||
59951 | 1112 |
* Basic combinators map, fold, fold_map, split_list, apply are available |
1113 |
as parameterized antiquotations, e.g. @{map 4} for lists of quadruples. |
|
1114 |
||
1115 |
* Renamed "pairself" to "apply2", in accordance to @{apply 2}. |
|
1116 |
INCOMPATIBILITY. |
|
1117 |
||
1118 |
* Former combinators NAMED_CRITICAL and CRITICAL for central critical |
|
1119 |
sections have been discontinued, in favour of the more elementary |
|
1120 |
Multithreading.synchronized and its high-level derivative |
|
1121 |
Synchronized.var (which is usually sufficient in applications). Subtle |
|
1122 |
INCOMPATIBILITY: synchronized access needs to be atomic and cannot be |
|
1123 |
nested. |
|
1124 |
||
60010 | 1125 |
* Synchronized.value (ML) is actually synchronized (as in Scala): subtle |
1126 |
change of semantics with minimal potential for INCOMPATIBILITY. |
|
59899 | 1127 |
|
59621
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
1128 |
* The main operations to certify logical entities are Thm.ctyp_of and |
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
1129 |
Thm.cterm_of with a local context; old-style global theory variants are |
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
1130 |
available as Thm.global_ctyp_of and Thm.global_cterm_of. |
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
1131 |
INCOMPATIBILITY. |
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
1132 |
|
59582 | 1133 |
* Elementary operations in module Thm are no longer pervasive. |
1134 |
INCOMPATIBILITY, need to use qualified Thm.prop_of, Thm.cterm_of, |
|
1135 |
Thm.term_of etc. |
|
1136 |
||
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58957
diff
changeset
|
1137 |
* Proper context for various elementary tactics: assume_tac, |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59480
diff
changeset
|
1138 |
resolve_tac, eresolve_tac, dresolve_tac, forward_tac, match_tac, |
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59480
diff
changeset
|
1139 |
compose_tac, Splitter.split_tac etc. INCOMPATIBILITY. |
58956
a816aa3ff391
proper context for compose_tac, Splitter.split_tac (relevant for unify trace options);
wenzelm
parents:
58928
diff
changeset
|
1140 |
|
58066 | 1141 |
* Tactical PARALLEL_ALLGOALS is the most common way to refer to |
1142 |
PARALLEL_GOALS. |
|
1143 |
||
59564
fdc03c8daacc
Goal.prove_multi is superseded by the fully general Goal.prove_common;
wenzelm
parents:
59557
diff
changeset
|
1144 |
* Goal.prove_multi is superseded by the fully general Goal.prove_common, |
fdc03c8daacc
Goal.prove_multi is superseded by the fully general Goal.prove_common;
wenzelm
parents:
59557
diff
changeset
|
1145 |
which also allows to specify a fork priority. |
fdc03c8daacc
Goal.prove_multi is superseded by the fully general Goal.prove_common;
wenzelm
parents:
59557
diff
changeset
|
1146 |
|
59936
b8ffc3dc9e24
@{command_spec} is superseded by @{command_keyword};
wenzelm
parents:
59926
diff
changeset
|
1147 |
* Antiquotation @{command_spec "COMMAND"} is superseded by |
b8ffc3dc9e24
@{command_spec} is superseded by @{command_keyword};
wenzelm
parents:
59926
diff
changeset
|
1148 |
@{command_keyword COMMAND} (usually without quotes and with PIDE |
b8ffc3dc9e24
@{command_spec} is superseded by @{command_keyword};
wenzelm
parents:
59926
diff
changeset
|
1149 |
markup). Minor INCOMPATIBILITY. |
b8ffc3dc9e24
@{command_spec} is superseded by @{command_keyword};
wenzelm
parents:
59926
diff
changeset
|
1150 |
|
60010 | 1151 |
* Cartouches within ML sources are turned into values of type |
1152 |
Input.source (with formal position information). |
|
1153 |
||
58066 | 1154 |
|
58610 | 1155 |
*** System *** |
1156 |
||
59951 | 1157 |
* The Isabelle tool "update_cartouches" changes theory files to use |
1158 |
cartouches instead of old-style {* verbatim *} or `alt_string` tokens. |
|
1159 |
||
60108 | 1160 |
* The Isabelle tool "build" provides new options -X, -k, -x. |
59951 | 1161 |
|
1162 |
* Discontinued old-fashioned "codegen" tool. Code generation can always |
|
1163 |
be externally triggered using an appropriate ROOT file plus a |
|
1164 |
corresponding theory. Parametrization is possible using environment |
|
1165 |
variables, or ML snippets in the most extreme cases. Minor |
|
1166 |
INCOMPATIBILITY. |
|
58842 | 1167 |
|
59200 | 1168 |
* JVM system property "isabelle.threads" determines size of Scala thread |
1169 |
pool, like Isabelle system option "threads" for ML. |
|
1170 |
||
59201
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59200
diff
changeset
|
1171 |
* JVM system property "isabelle.laf" determines the default Swing |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59200
diff
changeset
|
1172 |
look-and-feel, via internal class name or symbolic name as in the jEdit |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59200
diff
changeset
|
1173 |
menu Global Options / Appearance. |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59200
diff
changeset
|
1174 |
|
59951 | 1175 |
* Support for Proof General and Isar TTY loop has been discontinued. |
60010 | 1176 |
Minor INCOMPATIBILITY, use standard PIDE infrastructure instead. |
59891
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
wenzelm
parents:
59849
diff
changeset
|
1177 |
|
58610 | 1178 |
|
57695 | 1179 |
|
57452 | 1180 |
New in Isabelle2014 (August 2014) |
1181 |
--------------------------------- |
|
54055 | 1182 |
|
54702
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
54688
diff
changeset
|
1183 |
*** General *** |
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
54688
diff
changeset
|
1184 |
|
57452 | 1185 |
* Support for official Standard ML within the Isabelle context. |
1186 |
Command 'SML_file' reads and evaluates the given Standard ML file. |
|
1187 |
Toplevel bindings are stored within the theory context; the initial |
|
1188 |
environment is restricted to the Standard ML implementation of |
|
1189 |
Poly/ML, without the add-ons of Isabelle/ML. Commands 'SML_import' |
|
1190 |
and 'SML_export' allow to exchange toplevel bindings between the two |
|
1191 |
separate environments. See also ~~/src/Tools/SML/Examples.thy for |
|
1192 |
some examples. |
|
56499
7e0178c84994
allow text cartouches in regular outer syntax categories "text" and "altstring";
wenzelm
parents:
56450
diff
changeset
|
1193 |
|
57504 | 1194 |
* Standard tactics and proof methods such as "clarsimp", "auto" and |
1195 |
"safe" now preserve equality hypotheses "x = expr" where x is a free |
|
1196 |
variable. Locale assumptions and chained facts containing "x" |
|
1197 |
continue to be useful. The new method "hypsubst_thin" and the |
|
1198 |
configuration option "hypsubst_thin" (within the attribute name space) |
|
1199 |
restore the previous behavior. INCOMPATIBILITY, especially where |
|
1200 |
induction is done after these methods or when the names of free and |
|
1201 |
bound variables clash. As first approximation, old proofs may be |
|
1202 |
repaired by "using [[hypsubst_thin = true]]" in the critical spot. |
|
1203 |
||
56232 | 1204 |
* More static checking of proof methods, which allows the system to |
1205 |
form a closure over the concrete syntax. Method arguments should be |
|
1206 |
processed in the original proof context as far as possible, before |
|
1207 |
operating on the goal state. In any case, the standard discipline for |
|
1208 |
subgoal-addressing needs to be observed: no subgoals or a subgoal |
|
1209 |
number that is out of range produces an empty result sequence, not an |
|
1210 |
exception. Potential INCOMPATIBILITY for non-conformant tactical |
|
1211 |
proof tools. |
|
1212 |
||
57452 | 1213 |
* Lexical syntax (inner and outer) supports text cartouches with |
1214 |
arbitrary nesting, and without escapes of quotes etc. The Prover IDE |
|
1215 |
supports input via ` (backquote). |
|
1216 |
||
1217 |
* The outer syntax categories "text" (for formal comments and document |
|
1218 |
markup commands) and "altstring" (for literal fact references) allow |
|
1219 |
cartouches as well, in addition to the traditional mix of quotations. |
|
1220 |
||
1221 |
* Syntax of document antiquotation @{rail} now uses \<newline> instead |
|
1222 |
of "\\", to avoid the optical illusion of escaped backslash within |
|
57491 | 1223 |
string token. General renovation of its syntax using text cartouches. |
57452 | 1224 |
Minor INCOMPATIBILITY. |
1225 |
||
1226 |
* Discontinued legacy_isub_isup, which was a temporary workaround for |
|
1227 |
Isabelle/ML in Isabelle2013-1. The prover process no longer accepts |
|
1228 |
old identifier syntax with \<^isub> or \<^isup>. Potential |
|
1229 |
INCOMPATIBILITY. |
|
1230 |
||
1231 |
* Document antiquotation @{url} produces markup for the given URL, |
|
1232 |
which results in an active hyperlink within the text. |
|
1233 |
||
1234 |
* Document antiquotation @{file_unchecked} is like @{file}, but does |
|
1235 |
not check existence within the file-system. |
|
1236 |
||
1237 |
* Updated and extended manuals: codegen, datatypes, implementation, |
|
1238 |
isar-ref, jedit, system. |
|
57423
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1239 |
|
54702
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
54688
diff
changeset
|
1240 |
|
54533 | 1241 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
1242 |
||
57650 | 1243 |
* Improved Document panel: simplified interaction where every single |
57452 | 1244 |
mouse click (re)opens document via desktop environment or as jEdit |
1245 |
buffer. |
|
1246 |
||
1247 |
* Support for Navigator plugin (with toolbar buttons), with connection |
|
1248 |
to PIDE hyperlinks. |
|
1249 |
||
1250 |
* Auxiliary files ('ML_file' etc.) are managed by the Prover IDE. |
|
1251 |
Open text buffers take precedence over copies within the file-system. |
|
1252 |
||
1253 |
* Improved support for Isabelle/ML, with jEdit mode "isabelle-ml" for |
|
1254 |
auxiliary ML files. |
|
57423
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1255 |
|
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1256 |
* Improved syntactic and semantic completion mechanism, with simple |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1257 |
templates, completion language context, name-space completion, |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1258 |
file-name completion, spell-checker completion. |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1259 |
|
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1260 |
* Refined GUI popup for completion: more robust key/mouse event |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1261 |
handling and propagation to enclosing text area -- avoid loosing |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1262 |
keystrokes with slow / remote graphics displays. |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1263 |
|
57833
2c2bae3da1c2
completion popup supports both ENTER and TAB (default);
wenzelm
parents:
57826
diff
changeset
|
1264 |
* Completion popup supports both ENTER and TAB (default) to select an |
2c2bae3da1c2
completion popup supports both ENTER and TAB (default);
wenzelm
parents:
57826
diff
changeset
|
1265 |
item, depending on Isabelle options. |
2c2bae3da1c2
completion popup supports both ENTER and TAB (default);
wenzelm
parents:
57826
diff
changeset
|
1266 |
|
57423
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1267 |
* Refined insertion of completion items wrt. jEdit text: multiple |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1268 |
selections, rectangular selections, rectangular selection as "tall |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1269 |
caret". |
56342 | 1270 |
|
56580 | 1271 |
* Integrated spell-checker for document text, comments etc. with |
57423
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
1272 |
completion popup and context-menu. |
56554 | 1273 |
|
56879
ee2b61f37ad9
renamed "Find" to "Query", with more general operations;
wenzelm
parents:
56851
diff
changeset
|
1274 |
* More general "Query" panel supersedes "Find" panel, with GUI access |
ee2b61f37ad9
renamed "Find" to "Query", with more general operations;
wenzelm
parents:
56851
diff
changeset
|
1275 |
to commands 'find_theorems' and 'find_consts', as well as print |
ee2b61f37ad9
renamed "Find" to "Query", with more general operations;
wenzelm
parents:
56851
diff
changeset
|
1276 |
operations for the context. Minor incompatibility in keyboard |
ee2b61f37ad9
renamed "Find" to "Query", with more general operations;
wenzelm
parents:
56851
diff
changeset
|
1277 |
shortcuts etc.: replace action isabelle-find by isabelle-query. |
56761 | 1278 |
|
56901 | 1279 |
* Search field for all output panels ("Output", "Query", "Info" etc.) |
1280 |
to highlight text via regular expression. |
|
1281 |
||
54881 | 1282 |
* Option "jedit_print_mode" (see also "Plugin Options / Isabelle / |
1283 |
General") allows to specify additional print modes for the prover |
|
1284 |
process, without requiring old-fashioned command-line invocation of |
|
1285 |
"isabelle jedit -m MODE". |
|
1286 |
||
56505 | 1287 |
* More support for remote files (e.g. http) using standard Java |
1288 |
networking operations instead of jEdit virtual file-systems. |
|
1289 |
||
57822 | 1290 |
* Empty editors buffers that are no longer required (e.g.\ via theory |
1291 |
imports) are automatically removed from the document model. |
|
1292 |
||
57869 | 1293 |
* Improved monitor panel. |
1294 |
||
56838 | 1295 |
* Improved Console/Scala plugin: more uniform scala.Console output, |
1296 |
more robust treatment of threads and interrupts. |
|
1297 |
||
56939 | 1298 |
* Improved management of dockable windows: clarified keyboard focus |
1299 |
and window placement wrt. main editor view; optional menu item to |
|
1300 |
"Detach" a copy where this makes sense. |
|
1301 |
||
57452 | 1302 |
* New Simplifier Trace panel provides an interactive view of the |
57594
8c095aef6769
clarified "simp_trace_new" and corresponding isar-ref section;
wenzelm
parents:
57532
diff
changeset
|
1303 |
simplification process, enabled by the "simp_trace_new" attribute |
57452 | 1304 |
within the context. |
1305 |
||
1306 |
||
55001 | 1307 |
*** Pure *** |
1308 |
||
57504 | 1309 |
* Low-level type-class commands 'classes', 'classrel', 'arities' have |
1310 |
been discontinued to avoid the danger of non-trivial axiomatization |
|
1311 |
that is not immediately visible. INCOMPATIBILITY, use regular |
|
1312 |
'instance' command with proof. The required OFCLASS(...) theorem |
|
1313 |
might be postulated via 'axiomatization' beforehand, or the proof |
|
1314 |
finished trivially if the underlying class definition is made vacuous |
|
1315 |
(without any assumptions). See also Isabelle/ML operations |
|
1316 |
Axclass.class_axiomatization, Axclass.classrel_axiomatization, |
|
1317 |
Axclass.arity_axiomatization. |
|
1318 |
||
56245 | 1319 |
* Basic constants of Pure use more conventional names and are always |
1320 |
qualified. Rare INCOMPATIBILITY, but with potentially serious |
|
1321 |
consequences, notably for tools in Isabelle/ML. The following |
|
1322 |
renaming needs to be applied: |
|
1323 |
||
1324 |
== ~> Pure.eq |
|
1325 |
==> ~> Pure.imp |
|
1326 |
all ~> Pure.all |
|
1327 |
TYPE ~> Pure.type |
|
1328 |
dummy_pattern ~> Pure.dummy_pattern |
|
1329 |
||
1330 |
Systematic porting works by using the following theory setup on a |
|
1331 |
*previous* Isabelle version to introduce the new name accesses for the |
|
1332 |
old constants: |
|
1333 |
||
1334 |
setup {* |
|
1335 |
fn thy => thy |
|
1336 |
|> Sign.root_path |
|
1337 |
|> Sign.const_alias (Binding.qualify true "Pure" @{binding eq}) "==" |
|
1338 |
|> Sign.const_alias (Binding.qualify true "Pure" @{binding imp}) "==>" |
|
1339 |
|> Sign.const_alias (Binding.qualify true "Pure" @{binding all}) "all" |
|
1340 |
|> Sign.restore_naming thy |
|
1341 |
*} |
|
1342 |
||
1343 |
Thus ML antiquotations like @{const_name Pure.eq} may be used already. |
|
1344 |
Later the application is moved to the current Isabelle version, and |
|
1345 |
the auxiliary aliases are deleted. |
|
1346 |
||
55143
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
55139
diff
changeset
|
1347 |
* Attributes "where" and "of" allow an optional context of local |
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
55139
diff
changeset
|
1348 |
variables ('for' declaration): these variables become schematic in the |
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
55139
diff
changeset
|
1349 |
instantiated theorem. |
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
55139
diff
changeset
|
1350 |
|
55152 | 1351 |
* Obsolete attribute "standard" has been discontinued (legacy since |
1352 |
Isabelle2012). Potential INCOMPATIBILITY, use explicit 'for' context |
|
1353 |
where instantiations with schematic variables are intended (for |
|
1354 |
declaration commands like 'lemmas' or attributes like "of"). The |
|
1355 |
following temporary definition may help to port old applications: |
|
1356 |
||
1357 |
attribute_setup standard = |
|
1358 |
"Scan.succeed (Thm.rule_attribute (K Drule.export_without_context))" |
|
1359 |
||
55001 | 1360 |
* More thorough check of proof context for goal statements and |
55006 | 1361 |
attributed fact expressions (concerning background theory, declared |
1362 |
hyps). Potential INCOMPATIBILITY, tools need to observe standard |
|
1363 |
context discipline. See also Assumption.add_assumes and the more |
|
1364 |
primitive Thm.assume_hyps. |
|
55001 | 1365 |
|
55108
0b7a0c1fdf7e
inner syntax token language allows regular quoted strings;
wenzelm
parents:
55049
diff
changeset
|
1366 |
* Inner syntax token language allows regular quoted strings "..." |
0b7a0c1fdf7e
inner syntax token language allows regular quoted strings;
wenzelm
parents:
55049
diff
changeset
|
1367 |
(only makes sense in practice, if outer syntax is delimited |
57452 | 1368 |
differently, e.g. via cartouches). |
1369 |
||
57504 | 1370 |
* Command 'print_term_bindings' supersedes 'print_binds' for clarity, |
1371 |
but the latter is retained some time as Proof General legacy. |
|
1372 |
||
57452 | 1373 |
* Code generator preprocessor: explicit control of simp tracing on a |
1374 |
per-constant basis. See attribute "code_preproc". |
|
57430
020cea57eaa4
tracing facilities for the code generator preprocessor
haftmann
parents:
57423
diff
changeset
|
1375 |
|
55001 | 1376 |
|
54227
63b441f49645
moving generic lemmas out of theory parity, disregarding some unused auxiliary lemmas;
haftmann
parents:
54055
diff
changeset
|
1377 |
*** HOL *** |
63b441f49645
moving generic lemmas out of theory parity, disregarding some unused auxiliary lemmas;
haftmann
parents:
54055
diff
changeset
|
1378 |
|
57504 | 1379 |
* Code generator: enforce case of identifiers only for strict target |
1380 |
language requirements. INCOMPATIBILITY. |
|
1381 |
||
1382 |
* Code generator: explicit proof contexts in many ML interfaces. |
|
1383 |
INCOMPATIBILITY. |
|
1384 |
||
1385 |
* Code generator: minimize exported identifiers by default. Minor |
|
1386 |
INCOMPATIBILITY. |
|
1387 |
||