author | wenzelm |
Mon, 10 Feb 2020 23:04:45 +0100 | |
changeset 71434 | 6c52b1d71f8b |
parent 71433 | 49fb95d04d43 |
child 71436 | 2e1b0ee920f5 |
permissions | -rw-r--r-- |
57491 | 1 |
Isabelle NEWS -- history of user-relevant changes |
2 |
================================================= |
|
2553 | 3 |
|
62114
a7cf464933f7
generate HTML version of NEWS, with proper symbol rendering;
wenzelm
parents:
62111
diff
changeset
|
4 |
(Note: Isabelle/jEdit shows a tree-view of the NEWS file in Sidekick.) |
60006 | 5 |
|
64603 | 6 |
|
70265 | 7 |
New in this Isabelle version |
8 |
---------------------------- |
|
9 |
||
70562 | 10 |
*** General *** |
11 |
||
70677 | 12 |
* Session ROOT files need to specify explicit 'directories' for import |
70681 | 13 |
of theory files. Directories cannot be shared by different sessions. |
14 |
(Recall that import of theories from other sessions works via |
|
15 |
session-qualified theory names, together with suitable 'sessions' |
|
16 |
declarations in the ROOT.) |
|
70677 | 17 |
|
70562 | 18 |
* Internal derivations record dependencies on oracles and other theorems |
19 |
accurately, including the implicit type-class reasoning wrt. proven |
|
20 |
class relations and type arities. In particular, the formal tagging with |
|
21 |
"Pure.skip_proofs" of results stemming from "instance ... sorry" is now |
|
22 |
propagated properly to theorems depending on such type instances. |
|
23 |
||
24 |
* Command 'sorry' (oracle "Pure.skip_proofs") is more precise about the |
|
25 |
actual proposition that is assumed in the goal and proof context. This |
|
26 |
requires at least Proofterm.proofs = 1 to show up in theorem |
|
27 |
dependencies. |
|
28 |
||
29 |
* Command 'thm_oracles' prints all oracles used in given theorems, |
|
30 |
covering the full graph of transitive dependencies. |
|
31 |
||
70605 | 32 |
* Command 'thm_deps' prints immediate theorem dependencies of the given |
33 |
facts. The former graph visualization has been discontinued, because it |
|
34 |
was hardly usable. |
|
35 |
||
70562 | 36 |
|
70522 | 37 |
*** Isar *** |
38 |
||
39 |
* The proof method combinator (subproofs m) applies the method |
|
40 |
expression m consecutively to each subgoal, constructing individual |
|
41 |
subproofs internally. This impacts the internal construction of proof |
|
42 |
terms: it makes a cascade of let-expressions within the derivation tree |
|
43 |
and may thus improve scalability. |
|
44 |
||
71427 | 45 |
* Attribute "trace_locales" activates tracing of locale instances during |
46 |
roundup. It replaces the diagnostic command 'print_dependencies', which |
|
47 |
has been discontinued. |
|
70608 | 48 |
|
70522 | 49 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
50 |
*** Isabelle/jEdit Prover IDE *** |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
51 |
|
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
52 |
* Prover IDE startup is now much faster, because theory dependencies are |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
53 |
no longer explored in advance. The overall session structure with its |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
54 |
declarations of 'directories' is sufficient to locate theory files. Thus |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
55 |
the "session focus" of option "isabelle jedit -S" has become obsolete |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
56 |
(likewise for "isabelle vscode_server -S"). Existing option "-R" is both |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
57 |
sufficient and more convenient to start editing a particular session. |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
58 |
|
71430 | 59 |
* Support more brackets: \<llangle> \<rrangle> (intended for implicit argument syntax). |
60 |
||
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
61 |
|
70337
48609a6af1a0
removed relics of ASCII syntax for indexed big operators
haftmann
parents:
70300
diff
changeset
|
62 |
*** HOL *** |
48609a6af1a0
removed relics of ASCII syntax for indexed big operators
haftmann
parents:
70300
diff
changeset
|
63 |
|
71427 | 64 |
* Improvements of the 'lift_bnf' command: |
71264 | 65 |
- Add support for quotient types. |
71427 | 66 |
- Generate transfer rules for the lifted map/set/rel/pred constants |
67 |
(theorems "<type>.<constant>_transfer_raw"). |
|
71264 | 68 |
|
70784
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70686
diff
changeset
|
69 |
* Term_XML.Encode/Decode.term uses compact representation of Const |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70686
diff
changeset
|
70 |
"typargs" from the given declaration environment. This also makes more |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70686
diff
changeset
|
71 |
sense for translations to lambda-calculi with explicit polymorphism. |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70686
diff
changeset
|
72 |
INCOMPATIBILITY, use Term_XML.Encode/Decode.term_raw in special |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70686
diff
changeset
|
73 |
applications. |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70686
diff
changeset
|
74 |
|
70524 | 75 |
* ASCII membership syntax concerning big operators for infimum and |
71427 | 76 |
supremum has been discontinued. INCOMPATIBILITY. |
70524 | 77 |
|
78 |
* Clear distinction between types for bits (False / True) and Z2 (0 / |
|
71427 | 79 |
1): theory HOL-Library.Bit has been renamed accordingly. |
80 |
INCOMPATIBILITY. |
|
81 |
||
82 |
* Dynamic facts "algebra_split_simps" and "field_split_simps" correspond |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70784
diff
changeset
|
83 |
to algebra_simps and field_simps but contain more aggressive rules |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70784
diff
changeset
|
84 |
potentially splitting goals; algebra_split_simps roughly replaces |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70784
diff
changeset
|
85 |
sign_simps and field_split_simps can be used instead of divide_simps. |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70784
diff
changeset
|
86 |
INCOMPATIBILITY. |
70524 | 87 |
|
71428 | 88 |
* Theory HOL.Complete_Lattices: |
89 |
renamed Inf_Sup -> Inf_eq_Sup and Sup_Inf -> Sup_eq_Inf |
|
90 |
||
71434 | 91 |
* Theory HOL-Library.Monad_Syntax: infix operation "bind" (\<bind>) |
70524 | 92 |
associates to the left now as is customary. |
93 |
||
71259
09aee7f5b447
Ramsey with multiple colours and arbitrary exponents
paulson <lp15@cam.ac.uk>
parents:
71166
diff
changeset
|
94 |
* Theory HOL-Library.Ramsey: full finite Ramsey's theorem with |
09aee7f5b447
Ramsey with multiple colours and arbitrary exponents
paulson <lp15@cam.ac.uk>
parents:
71166
diff
changeset
|
95 |
multiple colours and arbitrary exponents. |
09aee7f5b447
Ramsey with multiple colours and arbitrary exponents
paulson <lp15@cam.ac.uk>
parents:
71166
diff
changeset
|
96 |
|
71147 | 97 |
* Session HOL-Analysis: proof method "metric" implements a decision |
98 |
procedure for simple linear statements in metric spaces. |
|
99 |
||
71427 | 100 |
* Session HOL-Word: Bitwise NOT-operator has proper prefix syntax. Minor |
71149 | 101 |
INCOMPATIBILITY. |
102 |
||
71150 | 103 |
|
70525 | 104 |
*** ML *** |
105 |
||
106 |
* Theory construction may be forked internally, the operation |
|
107 |
Theory.join_theory recovers a single result theory. See also the example |
|
108 |
in theory "HOL-ex.Join_Theory". |
|
109 |
||
70565 | 110 |
* Antiquotation @{oracle_name} inlines a formally checked oracle name. |
111 |
||
70525 | 112 |
|
70599 | 113 |
*** System *** |
114 |
||
71433 | 115 |
* Standard rendering for more Isabelle symbols: \<llangle> \<rrangle> \<bbar> \<sqdot> |
116 |
||
71378
820cf124dced
added "isabelle scala_project" to support e.g. IntelliJ IDEA;
wenzelm
parents:
71343
diff
changeset
|
117 |
* The command-line tool "isabelle scala_project" creates a Gradle |
820cf124dced
added "isabelle scala_project" to support e.g. IntelliJ IDEA;
wenzelm
parents:
71343
diff
changeset
|
118 |
project configuration for Isabelle/Scala/jEdit, to support Scala IDEs |
820cf124dced
added "isabelle scala_project" to support e.g. IntelliJ IDEA;
wenzelm
parents:
71343
diff
changeset
|
119 |
such as IntelliJ IDEA. |
820cf124dced
added "isabelle scala_project" to support e.g. IntelliJ IDEA;
wenzelm
parents:
71343
diff
changeset
|
120 |
|
71293 | 121 |
* The command-line tool "isabelle phabricator_setup" facilitates |
122 |
self-hosting of the Phabricator software-development platform, with |
|
123 |
support for Git, Mercurial, Subversion repositories. This helps to avoid |
|
124 |
monoculture and to escape the gravity of centralized version control by |
|
125 |
Github and/or Bitbucket. For further documentation, see chapter |
|
126 |
"Phabricator server administration" in the "system" manual. A notable |
|
127 |
example installation is https://isabelle-dev.sketis.net/. |
|
71134 | 128 |
|
71325 | 129 |
* The command-line tool "isabelle hg_setup" simplifies the setup of |
130 |
Mercurial repositories, with hosting via Phabricator or SSH file server |
|
131 |
access. |
|
132 |
||
70686
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70683
diff
changeset
|
133 |
* The command-line tool "isabelle imports" has been discontinued: strict |
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70683
diff
changeset
|
134 |
checking of session directories enforces session-qualified theory names |
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70683
diff
changeset
|
135 |
in applications -- users are responsible to specify session ROOT entries |
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70683
diff
changeset
|
136 |
properly. |
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70683
diff
changeset
|
137 |
|
71429 | 138 |
* The command-line tool "isabelle dump" and its underlying |
139 |
Isabelle/Scala module isabelle.Dump has become more scalable, by |
|
140 |
splitting sessions and supporting a base logic image. Minor |
|
141 |
INCOMPATIBILITY in options and parameters. |
|
142 |
||
70599 | 143 |
* Theory export via Isabelle/Scala has been reworked. The former "fact" |
144 |
name space is now split into individual "thm" items: names are |
|
145 |
potentially indexed, such as "foo" for singleton facts, or "bar(1)", |
|
146 |
"bar(2)", "bar(3)" for multi-facts. Theorem dependencies are now |
|
147 |
exported as well: this spans an overall dependency graph of internal |
|
148 |
inferences; it might help to reconstruct the formal structure of theory |
|
149 |
libraries. See also the module Export_Theory in Isabelle/Scala. |
|
150 |
||
71428 | 151 |
* Old settings variables ISABELLE_PLATFORM and ISABELLE_WINDOWS_PLATFORM |
152 |
have been discontinued -- deprecated since Isabelle2018. |
|
153 |
||
70265 | 154 |
|
70784
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70686
diff
changeset
|
155 |
|
70023 | 156 |
New in Isabelle2019 (June 2019) |
157 |
------------------------------- |
|
68683 | 158 |
|
69042 | 159 |
*** General *** |
160 |
||
70032 | 161 |
* The font collection "Isabelle DejaVu" is systematically derived from |
162 |
the existing "DejaVu" fonts, with variants "Sans Mono", "Sans", "Serif" |
|
69343
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
163 |
and styles "Normal", "Bold", "Italic/Oblique", "Bold-Italic/Oblique". |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
164 |
The DejaVu base fonts are retricted to well-defined Unicode ranges and |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
165 |
augmented by special Isabelle symbols, taken from the former |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
166 |
"IsabelleText" font (which is no longer provided separately). The line |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
167 |
metrics and overall rendering quality is closer to original DejaVu. |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
168 |
INCOMPATIBILITY with display configuration expecting the old |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
169 |
"IsabelleText" font: use e.g. "Isabelle DejaVu Sans Mono" instead. |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
170 |
|
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
171 |
* The Isabelle fonts render "\<inverse>" properly as superscript "-1". |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69316
diff
changeset
|
172 |
|
69042 | 173 |
* Old-style inner comments (* ... *) within the term language are no |
174 |
longer supported (legacy feature in Isabelle2018). |
|
175 |
||
70023 | 176 |
* Old-style {* verbatim *} tokens are explicitly marked as legacy |
177 |
feature and will be removed soon. Use \<open>cartouche\<close> syntax instead, e.g. |
|
178 |
via "isabelle update_cartouches -t" (available since Isabelle2015). |
|
179 |
||
70297 | 180 |
* Infix operators that begin or end with a "*" are now parenthesized |
181 |
without additional spaces, e.g. "(*)" instead of "( * )". Minor |
|
70023 | 182 |
INCOMPATIBILITY. |
69066 | 183 |
|
69580 | 184 |
* Mixfix annotations may use cartouches instead of old-style double |
69586
9171d1ce5a35
support for "isabelle update -u mixfix_cartouches";
wenzelm
parents:
69585
diff
changeset
|
185 |
quotes, e.g. (infixl \<open>+\<close> 60). The command-line tool "isabelle update -u |
9171d1ce5a35
support for "isabelle update -u mixfix_cartouches";
wenzelm
parents:
69585
diff
changeset
|
186 |
mixfix_cartouches" allows to update existing theory sources |
9171d1ce5a35
support for "isabelle update -u mixfix_cartouches";
wenzelm
parents:
69585
diff
changeset
|
187 |
automatically. |
69580 | 188 |
|
69216
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
wenzelm
parents:
69213
diff
changeset
|
189 |
* ML setup commands (e.g. 'setup', 'method_setup', 'parse_translation') |
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
wenzelm
parents:
69213
diff
changeset
|
190 |
need to provide a closed expression -- without trailing semicolon. Minor |
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
wenzelm
parents:
69213
diff
changeset
|
191 |
INCOMPATIBILITY. |
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
wenzelm
parents:
69213
diff
changeset
|
192 |
|
70057 | 193 |
* Commands 'generate_file', 'export_generated_files', and |
194 |
'compile_generated_files' support a stateless (PIDE-conformant) model |
|
195 |
for generated sources and compiled binaries of other languages. The |
|
70060 | 196 |
compilation process is managed in Isabelle/ML, and results exported to |
70057 | 197 |
the session database for further use (e.g. with "isabelle export" or |
198 |
"isabelle build -e"). |
|
199 |
||
69042 | 200 |
|
69189 | 201 |
*** Isabelle/jEdit Prover IDE *** |
202 |
||
70023 | 203 |
* Fonts for the text area, gutter, GUI elements etc. use the "Isabelle |
204 |
DejaVu" collection by default, which provides uniform rendering quality |
|
205 |
with the usual Isabelle symbols. Line spacing no longer needs to be |
|
206 |
adjusted: properties for the old IsabelleText font had "Global Options / |
|
70069 | 207 |
Text Area / Extra vertical line spacing (in pixels): -2", it now |
208 |
defaults to 1, but 0 works as well. |
|
70023 | 209 |
|
69780 | 210 |
* The jEdit File Browser is more prominent in the default GUI layout of |
211 |
Isabelle/jEdit: various virtual file-systems provide access to Isabelle |
|
212 |
resources, notably via "favorites:" (or "Edit Favorites"). |
|
213 |
||
70061 | 214 |
* Further markup and rendering for "plain text" (e.g. informal prose) |
215 |
and "raw text" (e.g. verbatim sources). This improves the visual |
|
216 |
appearance of formal comments inside the term language, or in general |
|
217 |
for repeated alternation of formal and informal text. |
|
218 |
||
69643 | 219 |
* Action "isabelle-export-browser" points the File Browser to the theory |
69764 | 220 |
exports of the current buffer, based on the "isabelle-export:" virtual |
221 |
file-system. The directory view needs to be reloaded manually to follow |
|
222 |
ongoing document processing. |
|
223 |
||
224 |
* Action "isabelle-session-browser" points the File Browser to session |
|
225 |
information, based on the "isabelle-session:" virtual file-system. Its |
|
226 |
entries are structured according to chapter / session names, the open |
|
227 |
operation is redirected to the session ROOT file. |
|
69643 | 228 |
|
69273 | 229 |
* Support for user-defined file-formats via class isabelle.File_Format |
69277
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69273
diff
changeset
|
230 |
in Isabelle/Scala (e.g. see isabelle.Bibtex.File_Format), configured via |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69273
diff
changeset
|
231 |
the shell function "isabelle_file_format" in etc/settings (e.g. of an |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69273
diff
changeset
|
232 |
Isabelle component). |
69273 | 233 |
|
70023 | 234 |
* System option "jedit_text_overview" allows to disable the text |
235 |
overview column. |
|
236 |
||
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69829
diff
changeset
|
237 |
* Command-line options "-s" and "-u" of "isabelle jedit" override the |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69829
diff
changeset
|
238 |
default for system option "system_heaps" that determines the heap |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69829
diff
changeset
|
239 |
storage directory for "isabelle build". Option "-n" is now clearly |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69829
diff
changeset
|
240 |
separated from option "-s". |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69829
diff
changeset
|
241 |
|
70105 | 242 |
* The Isabelle/jEdit desktop application uses the same options as |
243 |
"isabelle jedit" for its internal "isabelle build" process: the implicit |
|
244 |
option "-o system_heaps" (or "-s") has been discontinued. This reduces |
|
245 |
the potential for surprise wrt. command-line tools. |
|
246 |
||
247 |
* The official download of the Isabelle/jEdit application already |
|
248 |
contains heap images for Isabelle/HOL within its main directory: thus |
|
249 |
the first encounter becomes faster and more robust (e.g. when run from a |
|
250 |
read-only directory). |
|
251 |
||
70072 | 252 |
* Isabelle DejaVu fonts are available with hinting by default, which is |
253 |
relevant for low-resolution displays. This may be disabled via system |
|
254 |
option "isabelle_fonts_hinted = false" in |
|
70075 | 255 |
$ISABELLE_HOME_USER/etc/preferences -- it occasionally yields better |
70072 | 256 |
results. |
257 |
||
70031 | 258 |
* OpenJDK 11 has quite different font rendering, with better glyph |
259 |
shapes and improved sub-pixel anti-aliasing. In some situations results |
|
70072 | 260 |
might be *worse* than Oracle Java 8, though -- a proper HiDPI / UHD |
261 |
display is recommended. |
|
70023 | 262 |
|
70258 | 263 |
* OpenJDK 11 supports GTK version 2.2 and 3 (according to system |
264 |
property jdk.gtk.version). The factory default is version 3, but |
|
265 |
ISABELLE_JAVA_SYSTEM_OPTIONS includes "-Djdk.gtk.version=2.2" to make |
|
266 |
this more conservative (as in Java 8). Depending on the GTK theme |
|
267 |
configuration, "-Djdk.gtk.version=3" might work better or worse. |
|
268 |
||
69189 | 269 |
|
69962
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
270 |
*** Document preparation *** |
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
271 |
|
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
272 |
* Document markers are formal comments of the form \<^marker>\<open>marker_body\<close> that |
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
273 |
are stripped from document output: the effect is to modify the semantic |
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
274 |
presentation context or to emit markup to the PIDE document. Some |
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
275 |
predefined markers are taken from the Dublin Core Metadata Initiative, |
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
276 |
e.g. \<^marker>\<open>contributor arg\<close> or \<^marker>\<open>license arg\<close> and produce PIDE markup that |
70281 | 277 |
can be retrieved from the document database. |
69962
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
278 |
|
70140 | 279 |
* Old-style command tags %name are re-interpreted as markers with |
280 |
proof-scope \<^marker>\<open>tag (proof) name\<close> and produce LaTeX environments as |
|
281 |
before. Potential INCOMPATIBILITY: multiple markers are composed in |
|
282 |
canonical order, resulting in a reversed list of tags in the |
|
283 |
presentation context. |
|
284 |
||
285 |
* Marker \<^marker>\<open>tag name\<close> does not apply to the proof of a top-level goal |
|
286 |
statement by default (e.g. 'theorem', 'lemma'). This is a subtle change |
|
287 |
of semantics wrt. old-style %name. |
|
69962
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
288 |
|
70143 | 289 |
* In Isabelle/jEdit, the string "\tag" may be completed to a "\<^marker>\<open>tag \<close>" |
290 |
template. |
|
291 |
||
70121 | 292 |
* Document antiquotation option "cartouche" indicates if the output |
293 |
should be delimited as cartouche; this takes precedence over the |
|
294 |
analogous option "quotes". |
|
295 |
||
70122
a0b21b4b7a4a
strip cartouches from arguments of "embedded" document antiquotations, corresponding to automated update via "isabelle update -u control_cartouches" -- e.g. relevant for documents with thy_output_source (e.g. doc "isar-ref", "jedit", "system");
wenzelm
parents:
70121
diff
changeset
|
296 |
* Many document antiquotations are internally categorized as "embedded" |
a0b21b4b7a4a
strip cartouches from arguments of "embedded" document antiquotations, corresponding to automated update via "isabelle update -u control_cartouches" -- e.g. relevant for documents with thy_output_source (e.g. doc "isar-ref", "jedit", "system");
wenzelm
parents:
70121
diff
changeset
|
297 |
and expect one cartouche argument, which is typically used with the |
a0b21b4b7a4a
strip cartouches from arguments of "embedded" document antiquotations, corresponding to automated update via "isabelle update -u control_cartouches" -- e.g. relevant for documents with thy_output_source (e.g. doc "isar-ref", "jedit", "system");
wenzelm
parents:
70121
diff
changeset
|
298 |
\<^control>\<open>cartouche\<close> notation (e.g. \<^term>\<open>\<lambda>x y. x\<close>). The cartouche |
a0b21b4b7a4a
strip cartouches from arguments of "embedded" document antiquotations, corresponding to automated update via "isabelle update -u control_cartouches" -- e.g. relevant for documents with thy_output_source (e.g. doc "isar-ref", "jedit", "system");
wenzelm
parents:
70121
diff
changeset
|
299 |
delimiters are stripped in output of the source (antiquotation option |
a0b21b4b7a4a
strip cartouches from arguments of "embedded" document antiquotations, corresponding to automated update via "isabelle update -u control_cartouches" -- e.g. relevant for documents with thy_output_source (e.g. doc "isar-ref", "jedit", "system");
wenzelm
parents:
70121
diff
changeset
|
300 |
"source"), but it is possible to enforce delimiters via option |
a0b21b4b7a4a
strip cartouches from arguments of "embedded" document antiquotations, corresponding to automated update via "isabelle update -u control_cartouches" -- e.g. relevant for documents with thy_output_source (e.g. doc "isar-ref", "jedit", "system");
wenzelm
parents:
70121
diff
changeset
|
301 |
"source_cartouche", e.g. @{term [source_cartouche] \<open>\<lambda>x y. x\<close>}. |
a0b21b4b7a4a
strip cartouches from arguments of "embedded" document antiquotations, corresponding to automated update via "isabelle update -u control_cartouches" -- e.g. relevant for documents with thy_output_source (e.g. doc "isar-ref", "jedit", "system");
wenzelm
parents:
70121
diff
changeset
|
302 |
|
69962
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
69960
diff
changeset
|
303 |
|
68879 | 304 |
*** Isar *** |
305 |
||
69045 | 306 |
* Implicit cases goal1, goal2, goal3, etc. have been discontinued |
307 |
(legacy feature since Isabelle2016). |
|
308 |
||
70023 | 309 |
* More robust treatment of structural errors: begin/end blocks take |
310 |
precedence over goal/proof. This is particularly relevant for the |
|
311 |
headless PIDE session and server. |
|
312 |
||
313 |
* Command keywords of kind thy_decl / thy_goal may be more specifically |
|
314 |
fit into the traditional document model of "definition-statement-proof" |
|
315 |
via thy_defn / thy_stmt / thy_goal_defn / thy_goal_stmt. |
|
316 |
||
69045 | 317 |
|
68796
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
318 |
*** HOL *** |
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
319 |
|
70009
435fb018e8ee
"export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents:
69962
diff
changeset
|
320 |
* Command 'export_code' produces output as logical files within the |
70011 | 321 |
theory context, as well as formal session exports that can be |
322 |
materialized via command-line tools "isabelle export" or "isabelle build |
|
323 |
-e" (with 'export_files' in the session ROOT). Isabelle/jEdit also |
|
324 |
provides a virtual file-system "isabelle-export:" that can be explored |
|
325 |
in the regular file-browser. A 'file_prefix' argument allows to specify |
|
326 |
an explicit name prefix for the target file (SML, OCaml, Scala) or |
|
327 |
directory (Haskell); the default is "export" with a consecutive number |
|
328 |
within each theory. |
|
70009
435fb018e8ee
"export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents:
69962
diff
changeset
|
329 |
|
435fb018e8ee
"export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents:
69962
diff
changeset
|
330 |
* Command 'export_code': the 'file' argument is now legacy and will be |
435fb018e8ee
"export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents:
69962
diff
changeset
|
331 |
removed soon: writing to the physical file-system is not well-defined in |
70011 | 332 |
a reactive/parallel application like Isabelle. The empty 'file' argument |
333 |
has been discontinued already: it is superseded by the file-browser in |
|
334 |
Isabelle/jEdit on "isabelle-export:". Minor INCOMPATIBILITY. |
|
69624 | 335 |
|
70022
49e178cbf923
'code_reflect' only supports new-style 'file_prefix';
wenzelm
parents:
70011
diff
changeset
|
336 |
* Command 'code_reflect' no longer supports the 'file' argument: it has |
49e178cbf923
'code_reflect' only supports new-style 'file_prefix';
wenzelm
parents:
70011
diff
changeset
|
337 |
been superseded by 'file_prefix' for stateless file management as in |
49e178cbf923
'code_reflect' only supports new-style 'file_prefix';
wenzelm
parents:
70011
diff
changeset
|
338 |
'export_code'. Minor INCOMPATIBILITY. |
49e178cbf923
'code_reflect' only supports new-style 'file_prefix';
wenzelm
parents:
70011
diff
changeset
|
339 |
|
69743 | 340 |
* Code generation for OCaml: proper strings are used for literals. |
341 |
Minor INCOMPATIBILITY. |
|
342 |
||
69926
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
343 |
* Code generation for OCaml: Zarith supersedes Nums as library for |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
344 |
proper integer arithmetic. The library is located via standard |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
345 |
invocations of "ocamlfind" (via ISABELLE_OCAMLFIND settings variable). |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
346 |
The environment provided by "isabelle ocaml_setup" already contains this |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
347 |
tool and the required packages. Minor INCOMPATIBILITY. |
69906
55534affe445
migrated from Nums to Zarith as library for OCaml integer arithmetic
haftmann
parents:
69903
diff
changeset
|
348 |
|
69690 | 349 |
* Code generation for Haskell: code includes for Haskell must contain |
350 |
proper module frame, nothing is added magically any longer. |
|
351 |
INCOMPATIBILITY. |
|
352 |
||
70023 | 353 |
* Code generation: slightly more conventional syntax for 'code_stmts' |
354 |
antiquotation. Minor INCOMPATIBILITY. |
|
355 |
||
356 |
* Theory List: the precedence of the list_update operator has changed: |
|
357 |
"f a [n := x]" now needs to be written "(f a)[n := x]". |
|
358 |
||
359 |
* The functions \<Union>, \<Inter>, \<Squnion>, \<Sqinter> (not the corresponding binding operators) |
|
360 |
now have the same precedence as any other prefix function symbol. Minor |
|
361 |
INCOMPATIBILITY. |
|
69861
62e47f06d22c
avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
haftmann
parents:
69854
diff
changeset
|
362 |
|
68796
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
363 |
* Simplified syntax setup for big operators under image. In rare |
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
364 |
situations, type conversions are not inserted implicitly any longer |
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
365 |
and need to be given explicitly. Auxiliary abbreviations INFIMUM, |
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
366 |
SUPREMUM, UNION, INTER should now rarely occur in output and are just |
70237 | 367 |
retained as migration auxiliary. Abbreviations MINIMUM and MAXIMUM |
368 |
are gone INCOMPATIBILITY. |
|
68796
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
369 |
|
70023 | 370 |
* The simplifier uses image_cong_simp as a congruence rule. The historic |
371 |
and not really well-formed congruence rules INF_cong*, SUP_cong*, are |
|
372 |
not used by default any longer. INCOMPATIBILITY; consider using declare |
|
373 |
image_cong_simp [cong del] in extreme situations. |
|
374 |
||
375 |
* INF_image and SUP_image are no default simp rules any longer. |
|
376 |
INCOMPATIBILITY, prefer image_comp as simp rule if needed. |
|
68938 | 377 |
|
69164 | 378 |
* Strong congruence rules (with =simp=> in the premises) for constant f |
69546
27dae626822b
prefer naming convention from datatype package for strong congruence rules
haftmann
parents:
69506
diff
changeset
|
379 |
are now uniformly called f_cong_simp, in accordance with congruence |
27dae626822b
prefer naming convention from datatype package for strong congruence rules
haftmann
parents:
69506
diff
changeset
|
380 |
rules produced for mappers by the datatype package. INCOMPATIBILITY. |
69164 | 381 |
|
70023 | 382 |
* Retired lemma card_Union_image; use the simpler card_UN_disjoint |
383 |
instead. INCOMPATIBILITY. |
|
384 |
||
385 |
* Facts sum_mset.commute and prod_mset.commute have been renamed to |
|
386 |
sum_mset.swap and prod_mset.swap, similarly to sum.swap and prod.swap. |
|
387 |
INCOMPATIBILITY. |
|
388 |
||
389 |
* ML structure Inductive: slightly more conventional naming schema. |
|
390 |
Minor INCOMPATIBILITY. |
|
391 |
||
392 |
* ML: Various _global variants of specification tools have been removed. |
|
393 |
Minor INCOMPATIBILITY, prefer combinators |
|
394 |
Named_Target.theory_map[_result] to lift specifications to the global |
|
395 |
theory level. |
|
396 |
||
397 |
* Theory HOL-Library.Simps_Case_Conv: 'case_of_simps' now supports |
|
398 |
overlapping and non-exhaustive patterns and handles arbitrarily nested |
|
399 |
patterns. It uses on the same algorithm as HOL-Library.Code_Lazy, which |
|
400 |
assumes sequential left-to-right pattern matching. The generated |
|
69568
de09a7261120
new implementation for case_of_simps based on Code_Lazy's pattern matching elimination algorithm
Andreas Lochbihler
parents:
69506
diff
changeset
|
401 |
equation no longer tuples the arguments on the right-hand side. |
de09a7261120
new implementation for case_of_simps based on Code_Lazy's pattern matching elimination algorithm
Andreas Lochbihler
parents:
69506
diff
changeset
|
402 |
INCOMPATIBILITY. |
de09a7261120
new implementation for case_of_simps based on Code_Lazy's pattern matching elimination algorithm
Andreas Lochbihler
parents:
69506
diff
changeset
|
403 |
|
70297 | 404 |
* Theory HOL-Library.Multiset: the \<Union># operator now has the same |
70023 | 405 |
precedence as any other prefix function symbol. |
406 |
||
70080 | 407 |
* Theory HOL-Library.Cardinal_Notations has been discontinued in favor |
70168 | 408 |
of the bundle cardinal_syntax (available in theory Main). Minor |
409 |
INCOMPATIBILITY. |
|
70080 | 410 |
|
70023 | 411 |
* Session HOL-Library and HOL-Number_Theory: Exponentiation by squaring, |
412 |
used for computing powers in class "monoid_mult" and modular |
|
413 |
exponentiation. |
|
414 |
||
415 |
* Session HOL-Computational_Algebra: Formal Laurent series and overhaul |
|
416 |
of Formal power series. |
|
417 |
||
418 |
* Session HOL-Number_Theory: More material on residue rings in |
|
419 |
Carmichael's function, primitive roots, more properties for "ord". |
|
420 |
||
70125
b601c2c87076
type instantiations for poly_mapping as a real_normed_vector
paulson <lp15@cam.ac.uk>
parents:
70106
diff
changeset
|
421 |
* Session HOL-Analysis: Better organization and much more material |
b601c2c87076
type instantiations for poly_mapping as a real_normed_vector
paulson <lp15@cam.ac.uk>
parents:
70106
diff
changeset
|
422 |
at the level of abstract topological spaces. |
b601c2c87076
type instantiations for poly_mapping as a real_normed_vector
paulson <lp15@cam.ac.uk>
parents:
70106
diff
changeset
|
423 |
|
70164
1f163f772da3
Group theory developments towards proving algebraic closure (by de Vilhena and Baillon)
paulson <lp15@cam.ac.uk>
parents:
70143
diff
changeset
|
424 |
* Session HOL-Algebra: Free abelian groups, etc., ported from HOL Light; |
70215
8371a25ca177
Algebraic closure: moving more theorems into their rightful places
paulson <lp15@cam.ac.uk>
parents:
70175
diff
changeset
|
425 |
algebraic closure of a field by de Vilhena and Baillon. |
70032 | 426 |
|
70168 | 427 |
* Session HOL-Homology has been added. It is a port of HOL Light's |
428 |
homology library, with new proofs of "invariance of domain" and related |
|
429 |
results. |
|
430 |
||
69099
d44cb8a3e5e0
HOL-SPARK .prv files are no longer written to the file-system;
wenzelm
parents:
69094
diff
changeset
|
431 |
* Session HOL-SPARK: .prv files are no longer written to the |
d44cb8a3e5e0
HOL-SPARK .prv files are no longer written to the file-system;
wenzelm
parents:
69094
diff
changeset
|
432 |
file-system, but exported to the session database. Results may be |
70026 | 433 |
retrieved via "isabelle build -e HOL-SPARK-Examples" on the |
434 |
command-line. |
|
69099
d44cb8a3e5e0
HOL-SPARK .prv files are no longer written to the file-system;
wenzelm
parents:
69094
diff
changeset
|
435 |
|
70023 | 436 |
* Sledgehammer: |
437 |
- The URL for SystemOnTPTP, which is used by remote provers, has been |
|
438 |
updated. |
|
439 |
- The machine-learning-based filter MaSh has been optimized to take |
|
440 |
less time (in most cases). |
|
441 |
||
442 |
* SMT: reconstruction is now possible using the SMT solver veriT. |
|
443 |
||
70174 | 444 |
* Session HOL-Word: |
445 |
* New theory More_Word as comprehensive entrance point. |
|
70175 | 446 |
* Merged type class bitss into type class bits. |
70174 | 447 |
INCOMPATIBILITY. |
448 |
||
68796
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
449 |
|
68803 | 450 |
*** ML *** |
451 |
||
70023 | 452 |
* Command 'generate_file' allows to produce sources for other languages, |
453 |
with antiquotations in the Isabelle context (only the control-cartouche |
|
454 |
form). The default "cartouche" antiquotation evaluates an ML expression |
|
455 |
of type string and inlines the result as a string literal of the target |
|
456 |
language. For example, this works for Haskell as follows: |
|
457 |
||
458 |
generate_file "Pure.hs" = \<open> |
|
459 |
module Isabelle.Pure where |
|
460 |
allConst, impConst, eqConst :: String |
|
461 |
allConst = \<open>\<^const_name>\<open>Pure.all\<close>\<close> |
|
462 |
impConst = \<open>\<^const_name>\<open>Pure.imp\<close>\<close> |
|
463 |
eqConst = \<open>\<^const_name>\<open>Pure.eq\<close>\<close> |
|
464 |
\<close> |
|
465 |
||
70082
4f936de6d9b8
tuned -- prefer Isar command 'compile_generated_files';
wenzelm
parents:
70080
diff
changeset
|
466 |
See also commands 'export_generated_files' and 'compile_generated_files' |
4f936de6d9b8
tuned -- prefer Isar command 'compile_generated_files';
wenzelm
parents:
70080
diff
changeset
|
467 |
to use the results. |
68803 | 468 |
|
70260 | 469 |
* ML evaluation (notably via command 'ML' or 'ML_file') is subject to |
68824 | 470 |
option ML_environment to select a named environment, such as "Isabelle" |
70260 | 471 |
for Isabelle/ML, or "SML" for official Standard ML. |
68803 | 472 |
|
69381
4c9b4e2c5460
more general command 'generate_file' for registered file types, notably Haskell;
wenzelm
parents:
69377
diff
changeset
|
473 |
* ML antiquotation @{master_dir} refers to the master directory of the |
4c9b4e2c5460
more general command 'generate_file' for registered file types, notably Haskell;
wenzelm
parents:
69377
diff
changeset
|
474 |
underlying theory, i.e. the directory of the theory file. |
4c9b4e2c5460
more general command 'generate_file' for registered file types, notably Haskell;
wenzelm
parents:
69377
diff
changeset
|
475 |
|
69470 | 476 |
* ML antiquotation @{verbatim} inlines its argument as string literal, |
477 |
preserving newlines literally. The short form \<^verbatim>\<open>abc\<close> is particularly |
|
478 |
useful. |
|
479 |
||
70023 | 480 |
* Local_Theory.reset is no longer available in user space. Regular |
481 |
definitional packages should use balanced blocks of |
|
482 |
Local_Theory.open_target versus Local_Theory.close_target instead, or |
|
483 |
the Local_Theory.subtarget(_result) combinator. Rare INCOMPATIBILITY. |
|
484 |
||
485 |
* Original PolyML.pointerEq is retained as a convenience for tools that |
|
486 |
don't use Isabelle/ML (where this is called "pointer_eq"). |
|
69381
4c9b4e2c5460
more general command 'generate_file' for registered file types, notably Haskell;
wenzelm
parents:
69377
diff
changeset
|
487 |
|
69282 | 488 |
|
68883
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
489 |
*** System *** |
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
490 |
|
70031 | 491 |
* Update to OpenJDK 11: the current long-term support version of Java. |
70023 | 492 |
|
493 |
* Update to Poly/ML 5.8 allows to use the native x86_64 platform without |
|
494 |
the full overhead of 64-bit values everywhere. This special x86_64_32 |
|
495 |
mode provides up to 16GB ML heap, while program code and stacks are |
|
496 |
allocated elsewhere. Thus approx. 5 times more memory is available for |
|
497 |
applications compared to old x86 mode (which is no longer used by |
|
498 |
Isabelle). The switch to the x86_64 CPU architecture also avoids |
|
499 |
compatibility problems with Linux and macOS, where 32-bit applications |
|
500 |
are gradually phased out. |
|
501 |
||
502 |
* System option "checkpoint" has been discontinued: obsolete thanks to |
|
503 |
improved memory management in Poly/ML. |
|
504 |
||
505 |
* System option "system_heaps" determines where to store the session |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69829
diff
changeset
|
506 |
image of "isabelle build" (and other tools using that internally). |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69829
diff
changeset
|
507 |
Former option "-s" is superseded by option "-o system_heaps". |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69829
diff
changeset
|
508 |
INCOMPATIBILITY in command-line syntax. |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69829
diff
changeset
|
509 |
|
70023 | 510 |
* Session directory $ISABELLE_HOME/src/Tools/Haskell provides some |
511 |
source modules for Isabelle tools implemented in Haskell, notably for |
|
512 |
Isabelle/PIDE. |
|
513 |
||
514 |
* The command-line tool "isabelle build -e" retrieves theory exports |
|
515 |
from the session build database, using 'export_files' in session ROOT |
|
516 |
entries. |
|
517 |
||
69585 | 518 |
* The command-line tool "isabelle update" uses Isabelle/PIDE in |
519 |
batch-mode to update theory sources based on semantic markup produced in |
|
69609 | 520 |
Isabelle/ML. Actual updates depend on system options that may be enabled |
69588 | 521 |
via "-u OPT" (for "update_OPT"), see also $ISABELLE_HOME/etc/options |
522 |
section "Theory update". Theory sessions are specified as in "isabelle |
|
69585 | 523 |
dump". |
524 |
||
69592
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69588
diff
changeset
|
525 |
* The command-line tool "isabelle update -u control_cartouches" changes |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69588
diff
changeset
|
526 |
antiquotations into control-symbol format (where possible): @{NAME} |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69588
diff
changeset
|
527 |
becomes \<^NAME> and @{NAME ARG} becomes \<^NAME>\<open>ARG\<close>. |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69588
diff
changeset
|
528 |
|
69277
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69273
diff
changeset
|
529 |
* Support for Isabelle command-line tools defined in Isabelle/Scala. |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69273
diff
changeset
|
530 |
Instances of class Isabelle_Scala_Tools may be configured via the shell |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69273
diff
changeset
|
531 |
function "isabelle_scala_tools" in etc/settings (e.g. of an Isabelle |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69273
diff
changeset
|
532 |
component). |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69273
diff
changeset
|
533 |
|
70023 | 534 |
* Isabelle Server command "use_theories" supports "nodes_status_delay" |
69044 | 535 |
for continuous output of node status information. The time interval is |
536 |
specified in seconds; a negative value means it is disabled (default). |
|
537 |
||
538 |
* Isabelle Server command "use_theories" terminates more robustly in the |
|
68883
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
539 |
presence of structurally broken sources: full consolidation of theories |
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
540 |
is no longer required. |
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
541 |
|
69926
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
542 |
* OCaml tools and libraries are now accesed via ISABELLE_OCAMLFIND, |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
543 |
which needs to point to a suitable version of "ocamlfind" (e.g. via |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
544 |
OPAM, see below). INCOMPATIBILITY: settings variables ISABELLE_OCAML and |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
545 |
ISABELLE_OCAMLC are no longer supported. |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
546 |
|
69268
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
547 |
* Support for managed installations of Glasgow Haskell Compiler and |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
548 |
OCaml via the following command-line tools: |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
549 |
|
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
550 |
isabelle ghc_setup |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
551 |
isabelle ghc_stack |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
552 |
|
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
553 |
isabelle ocaml_setup |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
554 |
isabelle ocaml_opam |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
555 |
|
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
556 |
The global installation state is determined by the following settings |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
557 |
(and corresponding directory contents): |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
558 |
|
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
559 |
ISABELLE_STACK_ROOT |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
560 |
ISABELLE_STACK_RESOLVER |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
561 |
ISABELLE_GHC_VERSION |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
562 |
|
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
563 |
ISABELLE_OPAM_ROOT |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
564 |
ISABELLE_OCAML_VERSION |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
565 |
|
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
566 |
After setup, the following Isabelle settings are automatically |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
567 |
redirected (overriding existing user settings): |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
568 |
|
69269 | 569 |
ISABELLE_GHC |
570 |
||
69926
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
571 |
ISABELLE_OCAMLFIND |
69268
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
572 |
|
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
573 |
The old meaning of these settings as locally installed executables may |
c1a27fce2076
clarified tool setup for GHC / OCaml: discontinued "isabelle ghc", "isabelle ocaml", "isabelle ocamlc" to avoid confusion with traditional settings variables for executables (these are still required in existing applications, notably in session options [condition = ISABELLE_GHC] etc. and codegen setup;
wenzelm
parents:
69230
diff
changeset
|
574 |
be recovered by purging the directories ISABELLE_STACK_ROOT / |
69926
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
575 |
ISABELLE_OPAM_ROOT, or by resetting these variables in |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
69914
diff
changeset
|
576 |
$ISABELLE_HOME_USER/etc/settings. |
69189 | 577 |
|
69822
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
wenzelm
parents:
69811
diff
changeset
|
578 |
|
68883
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
579 |
|
68391 | 580 |
New in Isabelle2018 (August 2018) |
581 |
--------------------------------- |
|
66651 | 582 |
|
66712 | 583 |
*** General *** |
584 |
||
68393 | 585 |
* Session-qualified theory names are mandatory: it is no longer possible |
586 |
to refer to unqualified theories from the parent session. |
|
587 |
INCOMPATIBILITY for old developments that have not been updated to |
|
588 |
Isabelle2017 yet (using the "isabelle imports" tool). |
|
589 |
||
590 |
* Only the most fundamental theory names are global, usually the entry |
|
591 |
points to major logic sessions: Pure, Main, Complex_Main, HOLCF, IFOL, |
|
592 |
FOL, ZF, ZFC etc. INCOMPATIBILITY, need to use qualified names for |
|
593 |
formerly global "HOL-Probability.Probability" and "HOL-SPARK.SPARK". |
|
594 |
||
68558
7aae213d9e69
discontinued pending_shyps: too much complication due to lazy facts;
wenzelm
parents:
68548
diff
changeset
|
595 |
* Global facts need to be closed: no free variables and no hypotheses. |
7aae213d9e69
discontinued pending_shyps: too much complication due to lazy facts;
wenzelm
parents:
68548
diff
changeset
|
596 |
Rare INCOMPATIBILITY. |
68540 | 597 |
|
68661 | 598 |
* Facts stemming from locale interpretation are subject to lazy |
599 |
evaluation for improved performance. Rare INCOMPATIBILITY: errors |
|
600 |
stemming from interpretation morphisms might be deferred and thus |
|
601 |
difficult to locate; enable system option "strict_facts" temporarily to |
|
602 |
avoid this. |
|
603 |
||
67446 | 604 |
* Marginal comments need to be written exclusively in the new-style form |
605 |
"\<comment> \<open>text\<close>", old ASCII variants like "-- {* ... *}" are no longer |
|
606 |
supported. INCOMPATIBILITY, use the command-line tool "isabelle |
|
607 |
update_comments" to update existing theory files. |
|
608 |
||
67507 | 609 |
* Old-style inner comments (* ... *) within the term language are legacy |
610 |
and will be discontinued soon: use formal comments "\<comment> \<open>...\<close>" or "\<^cancel>\<open>...\<close>" |
|
611 |
instead. |
|
612 |
||
67402 | 613 |
* The "op <infix-op>" syntax for infix operators has been replaced by |
67400 | 614 |
"(<infix-op>)". If <infix-op> begins or ends with a "*", there needs to |
615 |
be a space between the "*" and the corresponding parenthesis. |
|
68543 | 616 |
INCOMPATIBILITY, use the command-line tool "isabelle update_op" to |
617 |
convert theory and ML files to the new syntax. Because it is based on |
|
618 |
regular expression matching, the result may need a bit of manual |
|
619 |
postprocessing. Invoking "isabelle update_op" converts all files in the |
|
620 |
current directory (recursively). In case you want to exclude conversion |
|
621 |
of ML files (because the tool frequently also converts ML's "op" |
|
622 |
syntax), use option "-m". |
|
67398 | 623 |
|
67013
335a7dce7cb3
more uniform header syntax, in contrast to the former etc/abbrevs file-format (see 73939a9b70a3);
wenzelm
parents:
66994
diff
changeset
|
624 |
* Theory header 'abbrevs' specifications need to be separated by 'and'. |
335a7dce7cb3
more uniform header syntax, in contrast to the former etc/abbrevs file-format (see 73939a9b70a3);
wenzelm
parents:
66994
diff
changeset
|
625 |
INCOMPATIBILITY. |
335a7dce7cb3
more uniform header syntax, in contrast to the former etc/abbrevs file-format (see 73939a9b70a3);
wenzelm
parents:
66994
diff
changeset
|
626 |
|
66757 | 627 |
* Command 'external_file' declares the formal dependency on the given |
628 |
file name, such that the Isabelle build process knows about it, but |
|
629 |
without specific Prover IDE management. |
|
630 |
||
66759 | 631 |
* Session ROOT entries no longer allow specification of 'files'. Rare |
632 |
INCOMPATIBILITY, use command 'external_file' within a proper theory |
|
633 |
context. |
|
634 |
||
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
635 |
* Session root directories may be specified multiple times: each |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
636 |
accessible ROOT file is processed only once. This facilitates |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
637 |
specification of $ISABELLE_HOME_USER/ROOTS or command-line options like |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
638 |
-d or -D for "isabelle build" and "isabelle jedit". Example: |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
639 |
|
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
640 |
isabelle build -D '~~/src/ZF' |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
641 |
|
67263 | 642 |
* The command 'display_drafts' has been discontinued. INCOMPATIBILITY, |
643 |
use action "isabelle.draft" (or "print") in Isabelle/jEdit instead. |
|
644 |
||
68393 | 645 |
* In HTML output, the Isabelle symbol "\<hyphen>" is rendered as explicit |
646 |
Unicode hyphen U+2010, to avoid unclear meaning of the old "soft hyphen" |
|
647 |
U+00AD. Rare INCOMPATIBILITY, e.g. copy-paste of historic Isabelle HTML |
|
648 |
output. |
|
67305
ecb74607063f
more robust hyphen (see also "Soft hyphen (SHY) – a hard problem?" http://jkorpela.fi/shy.html);
wenzelm
parents:
67304
diff
changeset
|
649 |
|
66712 | 650 |
|
67261 | 651 |
*** Isabelle/jEdit Prover IDE *** |
66768 | 652 |
|
68393 | 653 |
* The command-line tool "isabelle jedit" provides more flexible options |
654 |
for session management: |
|
655 |
||
68472 | 656 |
- option -R builds an auxiliary logic image with all theories from |
657 |
other sessions that are not already present in its parent |
|
68393 | 658 |
|
659 |
- option -S is like -R, with a focus on the selected session and its |
|
660 |
descendants (this reduces startup time for big projects like AFP) |
|
661 |
||
68472 | 662 |
- option -A specifies an alternative ancestor session for options -R |
663 |
and -S |
|
664 |
||
68541 | 665 |
- option -i includes additional sessions into the name-space of |
666 |
theories |
|
667 |
||
68393 | 668 |
Examples: |
669 |
isabelle jedit -R HOL-Number_Theory |
|
670 |
isabelle jedit -R HOL-Number_Theory -A HOL |
|
671 |
isabelle jedit -d '$AFP' -S Formal_SSA -A HOL |
|
672 |
isabelle jedit -d '$AFP' -S Formal_SSA -A HOL-Analysis |
|
68541 | 673 |
isabelle jedit -d '$AFP' -S Formal_SSA -A HOL-Analysis -i CryptHOL |
68393 | 674 |
|
675 |
* PIDE markup for session ROOT files: allows to complete session names, |
|
676 |
follow links to theories and document files etc. |
|
677 |
||
678 |
* Completion supports theory header imports, using theory base name. |
|
679 |
E.g. "Prob" may be completed to "HOL-Probability.Probability". |
|
680 |
||
681 |
* Named control symbols (without special Unicode rendering) are shown as |
|
682 |
bold-italic keyword. This is particularly useful for the short form of |
|
683 |
antiquotations with control symbol: \<^name>\<open>argument\<close>. The action |
|
684 |
"isabelle.antiquoted_cartouche" turns an antiquotation with 0 or 1 |
|
685 |
arguments into this format. |
|
686 |
||
687 |
* Completion provides templates for named symbols with arguments, |
|
688 |
e.g. "\<comment> \<open>ARGUMENT\<close>" or "\<^emph>\<open>ARGUMENT\<close>". |
|
689 |
||
68368 | 690 |
* Slightly more parallel checking, notably for high priority print |
691 |
functions (e.g. State output). |
|
692 |
||
68080 | 693 |
* The view title is set dynamically, according to the Isabelle |
694 |
distribution and the logic session name. The user can override this via |
|
695 |
set-view-title (stored persistently in $JEDIT_SETTINGS/perspective.xml). |
|
696 |
||
67395
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67381
diff
changeset
|
697 |
* System options "spell_checker_include" and "spell_checker_exclude" |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67381
diff
changeset
|
698 |
supersede former "spell_checker_elements" to determine regions of text |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67381
diff
changeset
|
699 |
that are subject to spell-checking. Minor INCOMPATIBILITY. |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67381
diff
changeset
|
700 |
|
67248
68177abb2988
isabelle.preview presents bibtex database files as well;
wenzelm
parents:
67246
diff
changeset
|
701 |
* Action "isabelle.preview" is able to present more file formats, |
67266 | 702 |
notably bibtex database files and ML files. |
67246
4cedf44f2af1
isabelle.preview presents auxiliary text files as well;
wenzelm
parents:
67224
diff
changeset
|
703 |
|
67262 | 704 |
* Action "isabelle.draft" is similar to "isabelle.preview", but shows a |
68067 | 705 |
plain-text document draft. Both are available via the menu "Plugins / |
706 |
Isabelle". |
|
67262 | 707 |
|
67304
3cf05d7cf174
more robust treatment of conflicts with existing Unicode text;
wenzelm
parents:
67303
diff
changeset
|
708 |
* When loading text files, the Isabelle symbols encoding UTF-8-Isabelle |
3cf05d7cf174
more robust treatment of conflicts with existing Unicode text;
wenzelm
parents:
67303
diff
changeset
|
709 |
is only used if there is no conflict with existing Unicode sequences in |
3cf05d7cf174
more robust treatment of conflicts with existing Unicode text;
wenzelm
parents:
67303
diff
changeset
|
710 |
the file. Otherwise, the fallback encoding is plain UTF-8 and Isabelle |
3cf05d7cf174
more robust treatment of conflicts with existing Unicode text;
wenzelm
parents:
67303
diff
changeset
|
711 |
symbols remain in literal \<symbol> form. This avoids accidental loss of |
3cf05d7cf174
more robust treatment of conflicts with existing Unicode text;
wenzelm
parents:
67303
diff
changeset
|
712 |
Unicode content when saving the file. |
3cf05d7cf174
more robust treatment of conflicts with existing Unicode text;
wenzelm
parents:
67303
diff
changeset
|
713 |
|
68545 | 714 |
* Bibtex database files (.bib) are semantically checked. |
715 |
||
67993 | 716 |
* Update to jedit-5.5.0, the latest release. |
717 |
||
67246
4cedf44f2af1
isabelle.preview presents auxiliary text files as well;
wenzelm
parents:
67224
diff
changeset
|
718 |
|
67261 | 719 |
*** Isabelle/VSCode Prover IDE *** |
720 |
||
721 |
* HTML preview of theories and other file-formats similar to |
|
722 |
Isabelle/jEdit. |
|
723 |
||
68690
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
724 |
* Command-line tool "isabelle vscode_server" accepts the same options |
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
725 |
-A, -R, -S, -i for session selection as "isabelle jedit". This is |
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
726 |
relevant for isabelle.args configuration settings in VSCode. The former |
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
727 |
option -A (explore all known session files) has been discontinued: it is |
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
728 |
enabled by default, unless option -S is used to focus on a particular |
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
729 |
spot in the session structure. INCOMPATIBILITY. |
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
730 |
|
66768 | 731 |
|
67140 | 732 |
*** Document preparation *** |
733 |
||
67448 | 734 |
* Formal comments work uniformly in outer syntax, inner syntax (term |
735 |
language), Isabelle/ML and some other embedded languages of Isabelle. |
|
736 |
See also "Document comments" in the isar-ref manual. The following forms |
|
737 |
are supported: |
|
738 |
||
739 |
- marginal text comment: \<comment> \<open>\<dots>\<close> |
|
740 |
- canceled source: \<^cancel>\<open>\<dots>\<close> |
|
741 |
- raw LaTeX: \<^latex>\<open>\<dots>\<close> |
|
67413 | 742 |
|
67381 | 743 |
* Outside of the inner theory body, the default presentation context is |
744 |
theory Pure. Thus elementary antiquotations may be used in markup |
|
745 |
commands (e.g. 'chapter', 'section', 'text') and formal comments. |
|
746 |
||
68513 | 747 |
* System option "document_tags" specifies alternative command tags. This |
748 |
is occasionally useful to control the global visibility of commands via |
|
749 |
session options (e.g. in ROOT). |
|
67140 | 750 |
|
751 |
* Document markup commands ('section', 'text' etc.) are implicitly |
|
752 |
tagged as "document" and visible by default. This avoids the application |
|
753 |
of option "document_tags" to these commands. |
|
754 |
||
67145 | 755 |
* Isabelle names are mangled into LaTeX macro names to allow the full |
756 |
identifier syntax with underscore, prime, digits. This is relevant for |
|
757 |
antiquotations in control symbol notation, e.g. \<^const_name> becomes |
|
758 |
\isactrlconstUNDERSCOREname. |
|
759 |
||
68393 | 760 |
* Document preparation with skip_proofs option now preserves the content |
761 |
more accurately: only terminal proof steps ('by' etc.) are skipped. |
|
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67295
diff
changeset
|
762 |
|
68484 | 763 |
* Document antiquotation @{theory name} requires the long |
764 |
session-qualified theory name: this is what users reading the text |
|
765 |
normally need to import. |
|
766 |
||
67219 | 767 |
* Document antiquotation @{session name} checks and prints the given |
768 |
session name verbatim. |
|
769 |
||
68393 | 770 |
* Document antiquotation @{cite} now checks the given Bibtex entries |
771 |
against the Bibtex database files -- only in batch-mode session builds. |
|
67157 | 772 |
|
67176
13b5c3ff1954
re-implemented "isabelle document" in Isabelle/Scala, include latex_errors here;
wenzelm
parents:
67173
diff
changeset
|
773 |
* Command-line tool "isabelle document" has been re-implemented in |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
774 |
Isabelle/Scala, with simplified arguments and explicit errors from the |
67203 | 775 |
latex and bibtex process. Minor INCOMPATIBILITY. |
67173 | 776 |
|
68393 | 777 |
* Session ROOT entry: empty 'document_files' means there is no document |
778 |
for this session. There is no need to specify options [document = false] |
|
779 |
anymore. |
|
780 |
||
67140 | 781 |
|
67702
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67616
diff
changeset
|
782 |
*** Isar *** |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67616
diff
changeset
|
783 |
|
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67616
diff
changeset
|
784 |
* Command 'interpret' no longer exposes resulting theorems as literal |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67616
diff
changeset
|
785 |
facts, notably for the \<open>prop\<close> notation or the "fact" proof method. This |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67616
diff
changeset
|
786 |
improves modularity of proofs and scalability of locale interpretation. |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67616
diff
changeset
|
787 |
Rare INCOMPATIBILITY, need to refer to explicitly named facts instead |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67616
diff
changeset
|
788 |
(e.g. use 'find_theorems' or 'try' to figure this out). |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67616
diff
changeset
|
789 |
|
68393 | 790 |
* The old 'def' command has been discontinued (legacy since |
791 |
Isbelle2016-1). INCOMPATIBILITY, use 'define' instead -- usually with |
|
792 |
object-logic equality or equivalence. |
|
793 |
||
68543 | 794 |
|
795 |
*** Pure *** |
|
796 |
||
797 |
* The inner syntax category "sort" now includes notation "_" for the |
|
798 |
dummy sort: it is effectively ignored in type-inference. |
|
799 |
||
67740 | 800 |
* Rewrites clauses (keyword 'rewrites') were moved into the locale |
68393 | 801 |
expression syntax, where they are part of locale instances. In |
802 |
interpretation commands rewrites clauses now need to occur before 'for' |
|
68469
aad109fde9ec
In interpretation commands, clarify what to do with definitions immediately subject to rewriting.
ballarin
parents:
68466
diff
changeset
|
803 |
and 'defines'. Rare INCOMPATIBILITY; definitions immediately subject to |
aad109fde9ec
In interpretation commands, clarify what to do with definitions immediately subject to rewriting.
ballarin
parents:
68466
diff
changeset
|
804 |
rewriting may need to be pulled up into the surrounding theory. |
68393 | 805 |
|
806 |
* For 'rewrites' clauses, if activating a locale instance fails, fall |
|
807 |
back to reading the clause first. This helps avoid qualification of |
|
67764 | 808 |
locale instances where the qualifier's sole purpose is avoiding |
809 |
duplicate constant declarations. |
|
67741
d5a7f2c54655
Fall back to reading rewrite morphism first if activation fails without it.
ballarin
parents:
67740
diff
changeset
|
810 |
|
68543 | 811 |
* Proof method "simp" now supports a new modifier "flip:" followed by a |
812 |
list of theorems. Each of these theorems is removed from the simpset |
|
813 |
(without warning if it is not there) and the symmetric version of the |
|
814 |
theorem (i.e. lhs and rhs exchanged) is added to the simpset. For "auto" |
|
815 |
and friends the modifier is "simp flip:". |
|
67718 | 816 |
|
817 |
||
66661 | 818 |
*** HOL *** |
819 |
||
68568 | 820 |
* Sledgehammer: bundled version of "vampire" (for non-commercial users) |
821 |
helps to avoid fragility of "remote_vampire" service. |
|
822 |
||
68028 | 823 |
* Clarified relationship of characters, strings and code generation: |
824 |
||
68393 | 825 |
- Type "char" is now a proper datatype of 8-bit values. |
826 |
||
827 |
- Conversions "nat_of_char" and "char_of_nat" are gone; use more |
|
828 |
general conversions "of_char" and "char_of" with suitable type |
|
829 |
constraints instead. |
|
830 |
||
831 |
- The zero character is just written "CHR 0x00", not "0" any longer. |
|
832 |
||
833 |
- Type "String.literal" (for code generation) is now isomorphic to |
|
834 |
lists of 7-bit (ASCII) values; concrete values can be written as |
|
835 |
"STR ''...''" for sequences of printable characters and "STR 0x..." |
|
836 |
for one single ASCII code point given as hexadecimal numeral. |
|
837 |
||
838 |
- Type "String.literal" supports concatenation "... + ..." for all |
|
839 |
standard target languages. |
|
840 |
||
841 |
- Theory HOL-Library.Code_Char is gone; study the explanations |
|
842 |
concerning "String.literal" in the tutorial on code generation to |
|
843 |
get an idea how target-language string literals can be converted to |
|
844 |
HOL string values and vice versa. |
|
845 |
||
846 |
- Session Imperative-HOL: operation "raise" directly takes a value of |
|
847 |
type "String.literal" as argument, not type "string". |
|
848 |
||
849 |
INCOMPATIBILITY. |
|
850 |
||
851 |
* Code generation: Code generation takes an explicit option |
|
852 |
"case_insensitive" to accomodate case-insensitive file systems. |
|
853 |
||
854 |
* Abstract bit operations as part of Main: push_bit, take_bit, drop_bit. |
|
855 |
||
856 |
* New, more general, axiomatization of complete_distrib_lattice. The |
|
857 |
former axioms: |
|
858 |
||
859 |
"sup x (Inf X) = Inf (sup x ` X)" and "inf x (Sup X) = Sup (inf x ` X)" |
|
860 |
||
861 |
are replaced by: |
|
862 |
||
863 |
"Inf (Sup ` A) <= Sup (Inf ` {f ` A | f . (! Y \<in> A . f Y \<in> Y)})" |
|
864 |
||
865 |
The instantiations of sets and functions as complete_distrib_lattice are |
|
866 |
moved to Hilbert_Choice.thy because their proofs need the Hilbert choice |
|
867 |
operator. The dual of this property is also proved in theory |
|
868 |
HOL.Hilbert_Choice. |
|
67831
07f5588f2735
Removed stray 'sledgehammer' invocation
Manuel Eberl <eberlm@in.tum.de>
parents:
67830
diff
changeset
|
869 |
|
67999
1b05f74f2e5f
tidying up including contributions from Paulo EmÃlio de Vilhena
paulson <lp15@cam.ac.uk>
parents:
67993
diff
changeset
|
870 |
* New syntax for the minimum/maximum of a function over a finite set: |
68393 | 871 |
MIN x\<in>A. B and even MIN x. B (only useful for finite types), also MAX. |
67999
1b05f74f2e5f
tidying up including contributions from Paulo EmÃlio de Vilhena
paulson <lp15@cam.ac.uk>
parents:
67993
diff
changeset
|
872 |
|
67525
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
873 |
* Clarifed theorem names: |
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
874 |
|
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
875 |
Min.antimono ~> Min.subset_imp |
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
876 |
Max.antimono ~> Max.subset_imp |
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
877 |
|
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
878 |
Minor INCOMPATIBILITY. |
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
879 |
|
66661 | 880 |
* SMT module: |
68393 | 881 |
|
66661 | 882 |
- The 'smt_oracle' option is now necessary when using the 'smt' method |
66662 | 883 |
with a solver other than Z3. INCOMPATIBILITY. |
68393 | 884 |
|
66844 | 885 |
- The encoding to first-order logic is now more complete in the |
886 |
presence of higher-order quantifiers. An 'smt_explicit_application' |
|
887 |
option has been added to control this. INCOMPATIBILITY. |
|
888 |
||
66804
3f9bb52082c4
avoid name clashes on interpretation of abstract locales
haftmann
parents:
66803
diff
changeset
|
889 |
* Facts sum.commute(_restrict) and prod.commute(_restrict) renamed to |
66844 | 890 |
sum.swap(_restrict) and prod.swap(_restrict), to avoid name clashes on |
891 |
interpretation of abstract locales. INCOMPATIBILITY. |
|
66804
3f9bb52082c4
avoid name clashes on interpretation of abstract locales
haftmann
parents:
66803
diff
changeset
|
892 |
|
68393 | 893 |
* Predicate coprime is now a real definition, not a mere abbreviation. |
894 |
INCOMPATIBILITY. |
|
895 |
||
66803 | 896 |
* Predicate pairwise_coprime abolished, use "pairwise coprime" instead. |
897 |
INCOMPATIBILITY. |
|
898 |
||
68373 | 899 |
* The relator rel_filter on filters has been strengthened to its |
68393 | 900 |
canonical categorical definition with better properties. |
901 |
INCOMPATIBILITY. |
|
67616
1d005f514417
strengthen filter relator to canonical categorical definition with better properties
Andreas Lochbihler
parents:
67591
diff
changeset
|
902 |
|
68072
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67999
diff
changeset
|
903 |
* Generalized linear algebra involving linear, span, dependent, dim |
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67999
diff
changeset
|
904 |
from type class real_vector to locales module and vector_space. |
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67999
diff
changeset
|
905 |
Renamed: |
68393 | 906 |
|
907 |
span_inc ~> span_superset |
|
908 |
span_superset ~> span_base |
|
909 |
span_eq ~> span_eq_iff |
|
910 |
||
911 |
INCOMPATIBILITY. |
|
66844 | 912 |
|
66937 | 913 |
* Class linordered_semiring_1 covers zero_less_one also, ruling out |
914 |
pathologic instances. Minor INCOMPATIBILITY. |
|
915 |
||
68393 | 916 |
* Theory HOL.List: functions "sorted_wrt" and "sorted" now compare every |
917 |
element in a list to all following elements, not just the next one. |
|
918 |
||
919 |
* Theory HOL.List syntax: |
|
920 |
||
921 |
- filter-syntax "[x <- xs. P]" is no longer output syntax, but only |
|
922 |
input syntax |
|
923 |
||
924 |
- list comprehension syntax now supports tuple patterns in "pat <- xs" |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68246
diff
changeset
|
925 |
|
68450 | 926 |
* Theory Map: "empty" must now be qualified as "Map.empty". |
927 |
||
67051 | 928 |
* Removed nat-int transfer machinery. Rare INCOMPATIBILITY. |
929 |
||
68100 | 930 |
* Fact mod_mult_self4 (on nat) renamed to Suc_mod_mult_self3, to avoid |
931 |
clash with fact mod_mult_self4 (on more generic semirings). |
|
932 |
INCOMPATIBILITY. |
|
933 |
||
934 |
* Eliminated some theorem aliasses: |
|
935 |
even_times_iff ~> even_mult_iff |
|
936 |
mod_2_not_eq_zero_eq_one_nat ~> not_mod_2_eq_0_eq_1 |
|
937 |
even_of_nat ~> even_int_iff |
|
938 |
||
939 |
INCOMPATIBILITY. |
|
940 |
||
68157 | 941 |
* Eliminated some theorem duplicate variations: |
68393 | 942 |
|
943 |
- dvd_eq_mod_eq_0_numeral can be replaced by dvd_eq_mod_eq_0 |
|
944 |
- mod_Suc_eq_Suc_mod can be replaced by mod_Suc |
|
945 |
- mod_Suc_eq_Suc_mod [symmetrict] can be replaced by mod_simps |
|
946 |
- mod_eq_0_iff can be replaced by mod_eq_0_iff_dvd and dvd_def |
|
947 |
- the witness of mod_eqD can be given directly as "_ div _" |
|
68157 | 948 |
|
949 |
INCOMPATIBILITY. |
|
950 |
||
68260 | 951 |
* Classical setup: Assumption "m mod d = 0" (for m d :: nat) is no |
68393 | 952 |
longer aggresively destroyed to "\<exists>q. m = d * q". INCOMPATIBILITY, adding |
953 |
"elim!: dvd" to classical proof methods in most situations restores |
|
954 |
broken proofs. |
|
955 |
||
956 |
* Theory HOL-Library.Conditional_Parametricity provides command |
|
957 |
'parametric_constant' for proving parametricity of non-recursive |
|
958 |
definitions. For constants that are not fully parametric the command |
|
959 |
will infer conditions on relations (e.g., bi_unique, bi_total, or type |
|
960 |
class conditions such as "respects 0") sufficient for parametricity. See |
|
961 |
theory HOL-ex.Conditional_Parametricity_Examples for some examples. |
|
962 |
||
963 |
* Theory HOL-Library.Code_Lazy provides a new preprocessor for the code |
|
964 |
generator to generate code for algebraic types with lazy evaluation |
|
68639 | 965 |
semantics even in call-by-value target languages. See the theories |
68647 | 966 |
HOL-ex.Code_Lazy_Demo and HOL-Codegenerator_Test.Code_Lazy_Test for some |
967 |
examples. |
|
68393 | 968 |
|
969 |
* Theory HOL-Library.Landau_Symbols has been moved here from AFP. |
|
970 |
||
971 |
* Theory HOL-Library.Old_Datatype no longer provides the legacy command |
|
972 |
'old_datatype'. INCOMPATIBILITY. |
|
973 |
||
974 |
* Theory HOL-Computational_Algebra.Polynomial_Factorial does not provide |
|
975 |
instances of rat, real, complex as factorial rings etc. Import |
|
976 |
HOL-Computational_Algebra.Field_as_Ring explicitly in case of need. |
|
977 |
INCOMPATIBILITY. |
|
978 |
||
979 |
* Session HOL-Algebra: renamed (^) to [^] to avoid conflict with new |
|
980 |
infix/prefix notation. |
|
981 |
||
68543 | 982 |
* Session HOL-Algebra: revamped with much new material. The set of |
983 |
isomorphisms between two groups is now denoted iso rather than iso_set. |
|
984 |
INCOMPATIBILITY. |
|
985 |
||
986 |
* Session HOL-Analysis: the Arg function now respects the same interval |
|
987 |
as Ln, namely (-pi,pi]; the old Arg function has been renamed Arg2pi. |
|
68499
d4312962161a
Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents:
68484
diff
changeset
|
988 |
INCOMPATIBILITY. |
d4312962161a
Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents:
68484
diff
changeset
|
989 |
|
68548 | 990 |
* Session HOL-Analysis: the functions zorder, zer_poly, porder and |
991 |
pol_poly have been redefined. All related lemmas have been reworked. |
|
68531 | 992 |
INCOMPATIBILITY. |
993 |
||
68393 | 994 |
* Session HOL-Analysis: infinite products, Moebius functions, the |
995 |
Riemann mapping theorem, the Vitali covering theorem, |
|
996 |
change-of-variables results for integration and measures. |
|
68260 | 997 |
|
68647 | 998 |
* Session HOL-Real_Asymp: proof method "real_asymp" proves asymptotics |
999 |
or real-valued functions (limits, "Big-O", etc.) automatically. |
|
68681 | 1000 |
See also ~~/src/HOL/Real_Asymp/Manual for some documentation. |
68647 | 1001 |
|
68545 | 1002 |
* Session HOL-Types_To_Sets: more tool support (unoverload_type combines |
1003 |
internalize_sorts and unoverload) and larger experimental application |
|
1004 |
(type based linear algebra transferred to linear algebra on subspaces). |
|
68522
d9cbc1e8644d
example for Types_To_Sets: transfer from type-based linear algebra to subspaces
immler
parents:
68515
diff
changeset
|
1005 |
|
66651 | 1006 |
|
68116 | 1007 |
*** ML *** |
1008 |
||
1009 |
* Operation Export.export emits theory exports (arbitrary blobs), which |
|
69960 | 1010 |
are stored persistently in the session build database. |
68116 | 1011 |
|
68276 | 1012 |
* Command 'ML_export' exports ML toplevel bindings to the global |
1013 |
bootstrap environment of the ML process. This allows ML evaluation |
|
1014 |
without a formal theory context, e.g. in command-line tools like |
|
1015 |
"isabelle process". |
|
1016 |
||
68116 | 1017 |
|
66729 | 1018 |
*** System *** |
1019 |
||
67088 | 1020 |
* Mac OS X 10.10 Yosemite is now the baseline version; Mavericks is no |
1021 |
longer supported. |
|
1022 |
||
68393 | 1023 |
* Linux and Windows/Cygwin is for x86_64 only, old 32bit platform |
1024 |
support has been discontinued. |
|
1025 |
||
66906 | 1026 |
* Java runtime is for x86_64 only. Corresponding Isabelle settings have |
1027 |
been renamed to ISABELLE_TOOL_JAVA_OPTIONS and JEDIT_JAVA_OPTIONS, |
|
1028 |
instead of former 32/64 variants. INCOMPATIBILITY. |
|
1029 |
||
68003 | 1030 |
* Old settings ISABELLE_PLATFORM and ISABELLE_WINDOWS_PLATFORM should be |
1031 |
phased out due to unclear preference of 32bit vs. 64bit architecture. |
|
1032 |
Explicit GNU bash expressions are now preferred, for example (with |
|
1033 |
quotes): |
|
1034 |
||
1035 |
#Posix executables (Unix or Cygwin), with preference for 64bit |
|
1036 |
"${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM32}" |
|
1037 |
||
1038 |
#native Windows or Unix executables, with preference for 64bit |
|
1039 |
"${ISABELLE_WINDOWS_PLATFORM64:-${ISABELLE_WINDOWS_PLATFORM32:-${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM32}}}" |
|
1040 |
||
1041 |
#native Windows (32bit) or Unix executables (preference for 64bit) |
|
1042 |
"${ISABELLE_WINDOWS_PLATFORM32:-${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM32}}" |
|
1043 |
||
66745 | 1044 |
* Command-line tool "isabelle build" supports new options: |
1045 |
- option -B NAME: include session NAME and all descendants |
|
1046 |
- option -S: only observe changes of sources, not heap images |
|
66841 | 1047 |
- option -f: forces a fresh build |
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66729
diff
changeset
|
1048 |
|
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68690
diff
changeset
|
1049 |
* Command-line tool "isabelle build" options -c -x -B refer to |
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68690
diff
changeset
|
1050 |
descendants wrt. the session parent or import graph. Subtle |
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68690
diff
changeset
|
1051 |
INCOMPATIBILITY: options -c -x used to refer to the session parent graph |
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68690
diff
changeset
|
1052 |
only. |
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68690
diff
changeset
|
1053 |
|
66843 | 1054 |
* Command-line tool "isabelle build" takes "condition" options with the |
1055 |
corresponding environment values into account, when determining the |
|
1056 |
up-to-date status of a session. |
|
1057 |
||
68393 | 1058 |
* The command-line tool "dump" dumps information from the cumulative |
1059 |
PIDE session database: many sessions may be loaded into a given logic |
|
1060 |
image, results from all loaded theories are written to the output |
|
1061 |
directory. |
|
1062 |
||
66851
c75769065548
more informative Imports.Report with actual session imports (minimized);
wenzelm
parents:
66844
diff
changeset
|
1063 |
* Command-line tool "isabelle imports -I" also reports actual session |
c75769065548
more informative Imports.Report with actual session imports (minimized);
wenzelm
parents:
66844
diff
changeset
|
1064 |
imports. This helps to minimize the session dependency graph. |
c75769065548
more informative Imports.Report with actual session imports (minimized);
wenzelm
parents:
66844
diff
changeset
|
1065 |
|
69960 | 1066 |
* The command-line tool "export" and 'export_files' in session ROOT |
1067 |
entries retrieve theory exports from the session build database. |
|
68393 | 1068 |
|
1069 |
* The command-line tools "isabelle server" and "isabelle client" provide |
|
1070 |
access to the Isabelle Server: it supports responsive session management |
|
1071 |
and concurrent use of theories, based on Isabelle/PIDE infrastructure. |
|
1072 |
See also the "system" manual. |
|
1073 |
||
1074 |
* The command-line tool "isabelle update_comments" normalizes formal |
|
1075 |
comments in outer syntax as follows: \<comment> \<open>text\<close> (whith a single space to |
|
1076 |
approximate the appearance in document output). This is more specific |
|
1077 |
than former "isabelle update_cartouches -c": the latter tool option has |
|
1078 |
been discontinued. |
|
1079 |
||
1080 |
* The command-line tool "isabelle mkroot" now always produces a document |
|
1081 |
outline: its options have been adapted accordingly. INCOMPATIBILITY. |
|
1082 |
||
1083 |
* The command-line tool "isabelle mkroot -I" initializes a Mercurial |
|
1084 |
repository for the generated session files. |
|
1085 |
||
68523
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1086 |
* Settings ISABELLE_HEAPS + ISABELLE_BROWSER_INFO (or |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1087 |
ISABELLE_HEAPS_SYSTEM + ISABELLE_BROWSER_INFO_SYSTEM in "system build |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1088 |
mode") determine the directory locations of the main build artefacts -- |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1089 |
instead of hard-wired directories in ISABELLE_HOME_USER (or |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1090 |
ISABELLE_HOME). |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1091 |
|
68393 | 1092 |
* Settings ISABELLE_PATH and ISABELLE_OUTPUT have been discontinued: |
1093 |
heap images and session databases are always stored in |
|
68523
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1094 |
$ISABELLE_HEAPS/$ML_IDENTIFIER (command-line default) or |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1095 |
$ISABELLE_HEAPS_SYSTEM/$ML_IDENTIFIER (main Isabelle application or |
68393 | 1096 |
"isabelle jedit -s" or "isabelle build -s"). |
67099 | 1097 |
|
67199 | 1098 |
* ISABELLE_LATEX and ISABELLE_PDFLATEX now include platform-specific |
1099 |
options for improved error reporting. Potential INCOMPATIBILITY with |
|
1100 |
unusual LaTeX installations, may have to adapt these settings. |
|
1101 |
||
68393 | 1102 |
* Update to Poly/ML 5.7.1 with slightly improved performance and PIDE |
1103 |
markup for identifier bindings. It now uses The GNU Multiple Precision |
|
67591 | 1104 |
Arithmetic Library (libgmp) on all platforms, notably Mac OS X with |
1105 |
32/64 bit. |
|
1106 |
||
67099 | 1107 |
|
66729 | 1108 |
|
66472 | 1109 |
New in Isabelle2017 (October 2017) |
1110 |
---------------------------------- |
|
64439 | 1111 |
|
64986 | 1112 |
*** General *** |
1113 |
||
66238 | 1114 |
* Experimental support for Visual Studio Code (VSCode) as alternative |
1115 |
Isabelle/PIDE front-end, see also |
|
66599 | 1116 |
https://marketplace.visualstudio.com/items?itemName=makarius.Isabelle2017 |
66238 | 1117 |
|
1118 |
VSCode is a new type of application that continues the concepts of |
|
1119 |
"programmer's editor" and "integrated development environment" towards |
|
1120 |
fully semantic editing and debugging -- in a relatively light-weight |
|
1121 |
manner. Thus it fits nicely on top of the Isabelle/PIDE infrastructure. |
|
1122 |
Technically, VSCode is based on the Electron application framework |
|
1123 |
(Node.js + Chromium browser + V8), which is implemented in JavaScript |
|
1124 |
and TypeScript, while Isabelle/VSCode mainly consists of Isabelle/Scala |
|
1125 |
modules around a Language Server implementation. |
|
1126 |
||
65504 | 1127 |
* Theory names are qualified by the session name that they belong to. |
66454 | 1128 |
This affects imports, but not the theory name space prefix (which is |
1129 |
just the theory base name as before). |
|
1130 |
||
1131 |
In order to import theories from other sessions, the ROOT file format |
|
1132 |
provides a new 'sessions' keyword. In contrast, a theory that is |
|
1133 |
imported in the old-fashioned manner via an explicit file-system path |
|
66472 | 1134 |
belongs to the current session, and might cause theory name conflicts |
66454 | 1135 |
later on. Theories that are imported from other sessions are excluded |
1136 |
from the current session document. The command-line tool "isabelle |
|
1137 |
imports" helps to update theory imports. |
|
1138 |
||
65451 | 1139 |
* The main theory entry points for some non-HOL sessions have changed, |
1140 |
to avoid confusion with the global name "Main" of the session HOL. This |
|
1141 |
leads to the follow renamings: |
|
1142 |
||
1143 |
CTT/Main.thy ~> CTT/CTT.thy |
|
1144 |
ZF/Main.thy ~> ZF/ZF.thy |
|
1145 |
ZF/Main_ZF.thy ~> ZF/ZF.thy |
|
1146 |
ZF/Main_ZFC.thy ~> ZF/ZFC.thy |
|
1147 |
ZF/ZF.thy ~> ZF/ZF_Base.thy |
|
1148 |
||
1149 |
INCOMPATIBILITY. |
|
1150 |
||
66472 | 1151 |
* Commands 'alias' and 'type_alias' introduce aliases for constants and |
1152 |
type constructors, respectively. This allows adhoc changes to name-space |
|
1153 |
accesses within global or local theory contexts, e.g. within a 'bundle'. |
|
1154 |
||
64986 | 1155 |
* Document antiquotations @{prf} and @{full_prf} output proof terms |
1156 |
(again) in the same way as commands 'prf' and 'full_prf'. |
|
1157 |
||
65055 | 1158 |
* Computations generated by the code generator can be embedded directly |
1159 |
into ML, alongside with @{code} antiquotations, using the following |
|
1160 |
antiquotations: |
|
1161 |
||
1162 |
@{computation ... terms: ... datatypes: ...} : |
|
1163 |
((term -> term) -> 'ml option -> 'a) -> Proof.context -> term -> 'a |
|
1164 |
@{computation_conv ... terms: ... datatypes: ...} : |
|
1165 |
(Proof.context -> 'ml -> conv) -> Proof.context -> conv |
|
65045
b69ef432438d
avoid Unicode that conflicts with Isabelle symbol rendering;
wenzelm
parents:
65042
diff
changeset
|
1166 |
@{computation_check terms: ... datatypes: ...} : Proof.context -> conv |
65041 | 1167 |
|
65055 | 1168 |
See src/HOL/ex/Computations.thy, |
1169 |
src/HOL/Decision_Procs/Commutative_Ring.thy and |
|
1170 |
src/HOL/Decision_Procs/Reflective_Field.thy for examples and the |
|
1171 |
tutorial on code generation. |
|
65041 | 1172 |
|
64986 | 1173 |
|
64602 | 1174 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
1175 |
||
66472 | 1176 |
* Session-qualified theory imports allow the Prover IDE to process |
1177 |
arbitrary theory hierarchies independently of the underlying logic |
|
1178 |
session image (e.g. option "isabelle jedit -l"), but the directory |
|
1179 |
structure needs to be known in advance (e.g. option "isabelle jedit -d" |
|
1180 |
or a line in the file $ISABELLE_HOME_USER/ROOTS). |
|
64602 | 1181 |
|
64842 | 1182 |
* The PIDE document model maintains file content independently of the |
1183 |
status of jEdit editor buffers. Reloading jEdit buffers no longer causes |
|
1184 |
changes of formal document content. Theory dependencies are always |
|
1185 |
resolved internally, without the need for corresponding editor buffers. |
|
1186 |
The system option "jedit_auto_load" has been discontinued: it is |
|
1187 |
effectively always enabled. |
|
1188 |
||
64867 | 1189 |
* The Theories dockable provides a "Purge" button, in order to restrict |
1190 |
the document model to theories that are required for open editor |
|
1191 |
buffers. |
|
1192 |
||
66424 | 1193 |
* The Theories dockable indicates the overall status of checking of each |
1194 |
entry. When all forked tasks of a theory are finished, the border is |
|
1195 |
painted with thick lines; remaining errors in this situation are |
|
1196 |
represented by a different border color. |
|
1197 |
||
66472 | 1198 |
* Automatic indentation is more careful to avoid redundant spaces in |
1199 |
intermediate situations. Keywords are indented after input (via typed |
|
1200 |
characters or completion); see also option "jedit_indent_input". |
|
1201 |
||
1202 |
* Action "isabelle.preview" opens an HTML preview of the current theory |
|
1203 |
document in the default web browser. |
|
1204 |
||
66574
e16b27bd3f76
reverted 6acb28e5ba41: permissiveness of 1e5ae735e026 should be sufficient;
wenzelm
parents:
66563
diff
changeset
|
1205 |
* Command-line invocation "isabelle jedit -R -l LOGIC" opens the ROOT |
e16b27bd3f76
reverted 6acb28e5ba41: permissiveness of 1e5ae735e026 should be sufficient;
wenzelm
parents:
66563
diff
changeset
|
1206 |
entry of the specified logic session in the editor, while its parent is |
e16b27bd3f76
reverted 6acb28e5ba41: permissiveness of 1e5ae735e026 should be sufficient;
wenzelm
parents:
66563
diff
changeset
|
1207 |
used for formal checking. |
66472 | 1208 |
|
66462 | 1209 |
* The main Isabelle/jEdit plugin may be restarted manually (using the |
1210 |
jEdit Plugin Manager), as long as the "Isabelle Base" plugin remains |
|
1211 |
enabled at all times. |
|
1212 |
||
66472 | 1213 |
* Update to current jedit-5.4.0. |
65329 | 1214 |
|
64602 | 1215 |
|
66149
4bf16fb7c14d
deleting a code equation never leads to unimplemented function
haftmann
parents:
66135
diff
changeset
|
1216 |
*** Pure *** |
4bf16fb7c14d
deleting a code equation never leads to unimplemented function
haftmann
parents:
66135
diff
changeset
|
1217 |
|
4bf16fb7c14d
deleting a code equation never leads to unimplemented function
haftmann
parents:
66135
diff
changeset
|
1218 |
* Deleting the last code equations for a particular function using |
4bf16fb7c14d
deleting a code equation never leads to unimplemented function
haftmann
parents:
66135
diff
changeset
|
1219 |
[code del] results in function with no equations (runtime abort) rather |
66472 | 1220 |
than an unimplemented function (generation time abort). Use explicit |
66665 | 1221 |
[[code drop:]] to enforce the latter. Minor INCOMPATIBILITY. |
66149
4bf16fb7c14d
deleting a code equation never leads to unimplemented function
haftmann
parents:
66135
diff
changeset
|
1222 |
|
66310
e8d2862ec203
simplified function specification history: each pending function specification is historized at the end of a theory, without additional bookkeeping;
haftmann
parents:
66298
diff
changeset
|
1223 |
* Proper concept of code declarations in code.ML: |
66472 | 1224 |
- Regular code declarations act only on the global theory level, being |
1225 |
ignored with warnings if syntactically malformed. |
|
1226 |
- Explicitly global code declarations yield errors if syntactically |
|
1227 |
malformed. |
|
1228 |
- Default code declarations are silently ignored if syntactically |
|
1229 |
malformed. |
|
66310
e8d2862ec203
simplified function specification history: each pending function specification is historized at the end of a theory, without additional bookkeeping;
haftmann
parents:
66298
diff
changeset
|
1230 |
Minor INCOMPATIBILITY. |
e8d2862ec203
simplified function specification history: each pending function specification is historized at the end of a theory, without additional bookkeeping;
haftmann
parents:
66298
diff
changeset
|
1231 |
|
66472 | 1232 |
* Clarified and standardized internal data bookkeeping of code |
1233 |
declarations: history of serials allows to track potentially |
|
1234 |
non-monotonous declarations appropriately. Minor INCOMPATIBILITY. |
|
66310
e8d2862ec203
simplified function specification history: each pending function specification is historized at the end of a theory, without additional bookkeeping;
haftmann
parents:
66298
diff
changeset
|
1235 |
|
66149
4bf16fb7c14d
deleting a code equation never leads to unimplemented function
haftmann
parents:
66135
diff
changeset
|
1236 |
|
64593
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1237 |
*** HOL *** |
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1238 |
|
66614
1f1c5d85d232
moved Nunchaku to Main; the goal is to move Nitpick out in the next 1-2 years
blanchet
parents:
66599
diff
changeset
|
1239 |
* The Nunchaku model finder is now part of "Main". |
1f1c5d85d232
moved Nunchaku to Main; the goal is to move Nitpick out in the next 1-2 years
blanchet
parents:
66599
diff
changeset
|
1240 |
|
66472 | 1241 |
* SMT module: |
1242 |
- A new option, 'smt_nat_as_int', has been added to translate 'nat' to |
|
1243 |
'int' and benefit from the SMT solver's theory reasoning. It is |
|
1244 |
disabled by default. |
|
1245 |
- The legacy module "src/HOL/Library/Old_SMT.thy" has been removed. |
|
1246 |
- Several small issues have been rectified in the 'smt' command. |
|
1247 |
||
1248 |
* (Co)datatype package: The 'size_gen_o_map' lemma is no longer |
|
1249 |
generated for datatypes with type class annotations. As a result, the |
|
1250 |
tactic that derives it no longer fails on nested datatypes. Slight |
|
1251 |
INCOMPATIBILITY. |
|
66450
a8299195ed82
NEWS: Removed constant subseq; subsumed by strict_mono
eberlm <eberlm@in.tum.de>
parents:
66449
diff
changeset
|
1252 |
|
66345
882abe912da9
do not fall back on nbe if plain evaluation fails
haftmann
parents:
66310
diff
changeset
|
1253 |
* Command and antiquotation "value" with modified default strategy: |
882abe912da9
do not fall back on nbe if plain evaluation fails
haftmann
parents:
66310
diff
changeset
|
1254 |
terms without free variables are always evaluated using plain evaluation |
66472 | 1255 |
only, with no fallback on normalization by evaluation. Minor |
1256 |
INCOMPATIBILITY. |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65841
diff
changeset
|
1257 |
|
65552
f533820e7248
theories "GCD" and "Binomial" are already included in "Main": this avoids improper imports in applications;
wenzelm
parents:
65544
diff
changeset
|
1258 |
* Theories "GCD" and "Binomial" are already included in "Main" (instead |
65575 | 1259 |
of "Complex_Main"). |
65552
f533820e7248
theories "GCD" and "Binomial" are already included in "Main": this avoids improper imports in applications;
wenzelm
parents:
65544
diff
changeset
|
1260 |
|
65170
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents:
65099
diff
changeset
|
1261 |
* Constant "surj" is a full input/output abbreviation (again). |
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents:
65099
diff
changeset
|
1262 |
Minor INCOMPATIBILITY. |
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents:
65099
diff
changeset
|
1263 |
|
64632 | 1264 |
* Dropped aliasses RangeP, DomainP for Rangep, Domainp respectively. |
1265 |
INCOMPATIBILITY. |
|
1266 |
||
66472 | 1267 |
* Renamed ii to imaginary_unit in order to free up ii as a variable |
1268 |
name. The syntax \<i> remains available. INCOMPATIBILITY. |
|
1269 |
||
1270 |
* Dropped abbreviations transP, antisymP, single_valuedP; use constants |
|
1271 |
transp, antisymp, single_valuedp instead. INCOMPATIBILITY. |
|
1272 |
||
1273 |
* Constant "subseq" in Topological_Spaces has been removed -- it is |
|
1274 |
subsumed by "strict_mono". Some basic lemmas specific to "subseq" have |
|
1275 |
been renamed accordingly, e.g. "subseq_o" -> "strict_mono_o" etc. |
|
1276 |
||
1277 |
* Theory List: "sublist" renamed to "nths" in analogy with "nth", and |
|
1278 |
"sublisteq" renamed to "subseq". Minor INCOMPATIBILITY. |
|
1279 |
||
1280 |
* Theory List: new generic function "sorted_wrt". |
|
1281 |
||
1282 |
* Named theorems mod_simps covers various congruence rules concerning |
|
1283 |
mod, replacing former zmod_simps. INCOMPATIBILITY. |
|
64787 | 1284 |
|
64593
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1285 |
* Swapped orientation of congruence rules mod_add_left_eq, |
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1286 |
mod_add_right_eq, mod_add_eq, mod_mult_left_eq, mod_mult_right_eq, |
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1287 |
mod_mult_eq, mod_minus_eq, mod_diff_left_eq, mod_diff_right_eq, |
66472 | 1288 |
mod_diff_eq. INCOMPATIBILITY. |
64593
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1289 |
|
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1290 |
* Generalized some facts: |
64876 | 1291 |
measure_induct_rule |
1292 |
measure_induct |
|
64593
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1293 |
zminus_zmod ~> mod_minus_eq |
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1294 |
zdiff_zmod_left ~> mod_diff_left_eq |
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1295 |
zdiff_zmod_right ~> mod_diff_right_eq |
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1296 |
zmod_eq_dvd_iff ~> mod_eq_dvd_iff |
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1297 |
INCOMPATIBILITY. |
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64555
diff
changeset
|
1298 |
|
66472 | 1299 |
* Algebraic type class hierarchy of euclidean (semi)rings in HOL: |
1300 |
euclidean_(semi)ring, euclidean_(semi)ring_cancel, |
|
1301 |
unique_euclidean_(semi)ring; instantiation requires provision of a |
|
1302 |
euclidean size. |
|
1303 |
||
1304 |
* Theory "HOL-Number_Theory.Euclidean_Algorithm" has been reworked: |
|
1305 |
- Euclidean induction is available as rule eucl_induct. |
|
1306 |
- Constants Euclidean_Algorithm.gcd, Euclidean_Algorithm.lcm, |
|
1307 |
Euclidean_Algorithm.Gcd and Euclidean_Algorithm.Lcm allow |
|
1308 |
easy instantiation of euclidean (semi)rings as GCD (semi)rings. |
|
1309 |
- Coefficients obtained by extended euclidean algorithm are |
|
1310 |
available as "bezout_coefficients". |
|
1311 |
INCOMPATIBILITY. |
|
1312 |
||
1313 |
* Theory "Number_Theory.Totient" introduces basic notions about Euler's |
|
1314 |
totient function previously hidden as solitary example in theory |
|
1315 |
Residues. Definition changed so that "totient 1 = 1" in agreement with |
|
1316 |
the literature. Minor INCOMPATIBILITY. |
|
1317 |
||
66542 | 1318 |
* New styles in theory "HOL-Library.LaTeXsugar": |
66541 | 1319 |
- "dummy_pats" for printing equations with "_" on the lhs; |
1320 |
- "eta_expand" for printing eta-expanded terms. |
|
1321 |
||
66472 | 1322 |
* Theory "HOL-Library.Permutations": theorem bij_swap_ompose_bij has |
1323 |
been renamed to bij_swap_compose_bij. INCOMPATIBILITY. |
|
1324 |
||
66643
f7e38b8583a0
Correction of typos and a bit of streamlining
paulson <lp15@cam.ac.uk>
parents:
66641
diff
changeset
|
1325 |
* New theory "HOL-Library.Going_To_Filter" providing the "f going_to F" |
66488
9d83e8fe3de3
HOL-Library: going_to filter
Manuel Eberl <eberlm@in.tum.de>
parents:
66481
diff
changeset
|
1326 |
filter for describing points x such that f(x) is in the filter F. |
9d83e8fe3de3
HOL-Library: going_to filter
Manuel Eberl <eberlm@in.tum.de>
parents:
66481
diff
changeset
|
1327 |
|
66480
4b8d1df8933b
HOL-Analysis: Convergent FPS and infinite sums
Manuel Eberl <eberlm@in.tum.de>
parents:
66474
diff
changeset
|
1328 |
* Theory "HOL-Library.Formal_Power_Series": constants X/E/L/F have been |
4b8d1df8933b
HOL-Analysis: Convergent FPS and infinite sums
Manuel Eberl <eberlm@in.tum.de>
parents:
66474
diff
changeset
|
1329 |
renamed to fps_X/fps_exp/fps_ln/fps_hypergeo to avoid polluting the name |
66472 | 1330 |
space. INCOMPATIBILITY. |
1331 |
||
1332 |
* Theory "HOL-Library.FinFun" has been moved to AFP (again). |
|
1333 |
INCOMPATIBILITY. |
|
1334 |
||
1335 |
* Theory "HOL-Library.FuncSet": some old and rarely used ASCII |
|
1336 |
replacement syntax has been removed. INCOMPATIBILITY, standard syntax |
|
1337 |
with symbols should be used instead. The subsequent commands help to |
|
1338 |
reproduce the old forms, e.g. to simplify porting old theories: |
|
1339 |
||
1340 |
syntax (ASCII) |
|
1341 |
"_PiE" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> ('a \<Rightarrow> 'b) set" ("(3PIE _:_./ _)" 10) |
|
1342 |
"_Pi" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> ('a \<Rightarrow> 'b) set" ("(3PI _:_./ _)" 10) |
|
1343 |
"_lam" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a \<Rightarrow> 'b)" ("(3%_:_./ _)" [0,0,3] 3) |
|
1344 |
||
1345 |
* Theory "HOL-Library.Multiset": the simprocs on subsets operators of |
|
1346 |
multisets have been renamed: |
|
1347 |
||
1348 |
msetless_cancel_numerals ~> msetsubset_cancel |
|
1349 |
msetle_cancel_numerals ~> msetsubset_eq_cancel |
|
1350 |
||
1351 |
INCOMPATIBILITY. |
|
1352 |
||
66481
d35f7a9f92e2
output syntax for pattern aliases
Lars Hupel <lars.hupel@mytum.de>
parents:
66480
diff
changeset
|
1353 |
* Theory "HOL-Library.Pattern_Aliases" provides input and output syntax |
d35f7a9f92e2
output syntax for pattern aliases
Lars Hupel <lars.hupel@mytum.de>
parents:
66480
diff
changeset
|
1354 |
for pattern aliases as known from Haskell, Scala and ML. |
65515 | 1355 |
|
66563 | 1356 |
* Theory "HOL-Library.Uprod" formalizes the type of unordered pairs. |
1357 |
||
64898 | 1358 |
* Session HOL-Analysis: more material involving arcs, paths, covering |
66650 | 1359 |
spaces, innessential maps, retracts, infinite products, simplicial |
1360 |
complexes. Baire Category theorem. Major results include the Jordan |
|
1361 |
Curve Theorem and the Great Picard Theorem. |
|
66472 | 1362 |
|
1363 |
* Session HOL-Algebra has been extended by additional lattice theory: |
|
1364 |
the Knaster-Tarski fixed point theorem and Galois Connections. |
|
1365 |
||
1366 |
* Sessions HOL-Computational_Algebra and HOL-Number_Theory: new notions |
|
1367 |
of squarefreeness, n-th powers, and prime powers. |
|
1368 |
||
1369 |
* Session "HOL-Computional_Algebra" covers many previously scattered |
|
1370 |
theories, notably Euclidean_Algorithm, Factorial_Ring, |
|
1371 |
Formal_Power_Series, Fraction_Field, Fundamental_Theorem_Algebra, |
|
1372 |
Normalized_Fraction, Polynomial_FPS, Polynomial, Primes. Minor |
|
1373 |
INCOMPATIBILITY. |
|
65027
2b8583507891
renaming multiset simprocs
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
64986
diff
changeset
|
1374 |
|
60331 | 1375 |
|
64844 | 1376 |
*** System *** |
1377 |
||
66474 | 1378 |
* Isabelle/Scala: the SQL module supports access to relational |
1379 |
databases, either as plain file (SQLite) or full-scale server |
|
1380 |
(PostgreSQL via local port or remote ssh connection). |
|
1381 |
||
1382 |
* Results of "isabelle build" are recorded as SQLite database (i.e. |
|
1383 |
"Application File Format" in the sense of |
|
1384 |
https://www.sqlite.org/appfileformat.html). This allows systematic |
|
1385 |
access via operations from module Sessions.Store in Isabelle/Scala. |
|
1386 |
||
66472 | 1387 |
* System option "parallel_proofs" is 1 by default (instead of more |
1388 |
aggressive 2). This requires less heap space and avoids burning parallel |
|
1389 |
CPU cycles, while full subproof parallelization is enabled for repeated |
|
1390 |
builds (according to parallel_subproofs_threshold). |
|
65072 | 1391 |
|
65448
9bc3b57c1fa7
added system option record_proofs, which allows to build HOL-Proofs without special Proofs.thy;
wenzelm
parents:
65417
diff
changeset
|
1392 |
* System option "record_proofs" allows to change the global |
9bc3b57c1fa7
added system option record_proofs, which allows to build HOL-Proofs without special Proofs.thy;
wenzelm
parents:
65417
diff
changeset
|
1393 |
Proofterm.proofs variable for a session. Regular values are are 0, 1, 2; |