author | wenzelm |
Sun, 26 Jul 2020 22:28:43 +0200 | |
changeset 72306 | bd9d1ce274c9 |
parent 72300 | b17be02a0a11 |
child 72311 | 8c355e2dd7db |
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.) |
60007 | 5 |
|
64603 | 6 |
|
71772 | 7 |
New in this Isabelle version |
8 |
---------------------------- |
|
9 |
||
72160
65fd0f032a75
updated to jedit-5.6pre1 (repository version 25349);
wenzelm
parents:
72155
diff
changeset
|
10 |
*** Isabelle/jEdit Prover IDE *** |
65fd0f032a75
updated to jedit-5.6pre1 (repository version 25349);
wenzelm
parents:
72155
diff
changeset
|
11 |
|
65fd0f032a75
updated to jedit-5.6pre1 (repository version 25349);
wenzelm
parents:
72155
diff
changeset
|
12 |
* Update to jedit-5.6pre1, the latest pre-release. This version works |
65fd0f032a75
updated to jedit-5.6pre1 (repository version 25349);
wenzelm
parents:
72155
diff
changeset
|
13 |
properly on macOS by default, without the special MacOSX plugin. |
65fd0f032a75
updated to jedit-5.6pre1 (repository version 25349);
wenzelm
parents:
72155
diff
changeset
|
14 |
|
65fd0f032a75
updated to jedit-5.6pre1 (repository version 25349);
wenzelm
parents:
72155
diff
changeset
|
15 |
|
72129
1529336eaedc
check bash functions against Isabelle settings environment;
wenzelm
parents:
72128
diff
changeset
|
16 |
*** Document preparation *** |
1529336eaedc
check bash functions against Isabelle settings environment;
wenzelm
parents:
72128
diff
changeset
|
17 |
|
72135 | 18 |
* Antiquotation @{bash_function} refers to GNU bash functions that are |
19 |
checked within the Isabelle settings environment. |
|
20 |
||
21 |
* Antiquotations @{scala}, @{scala_object}, @{scala_type}, |
|
22 |
@{scala_method} refer to checked Isabelle/Scala entities. |
|
72129
1529336eaedc
check bash functions against Isabelle settings environment;
wenzelm
parents:
72128
diff
changeset
|
23 |
|
1529336eaedc
check bash functions against Isabelle settings environment;
wenzelm
parents:
72128
diff
changeset
|
24 |
|
72128 | 25 |
*** Pure *** |
26 |
||
72151
e5df9c8d9d4b
clarified sessions: "Notable Examples in Isabelle/Pure";
wenzelm
parents:
72150
diff
changeset
|
27 |
* Session Pure-Examples contains notable examples for Isabelle/Pure |
e5df9c8d9d4b
clarified sessions: "Notable Examples in Isabelle/Pure";
wenzelm
parents:
72150
diff
changeset
|
28 |
(former entries of HOL-Isar_Examples). |
e5df9c8d9d4b
clarified sessions: "Notable Examples in Isabelle/Pure";
wenzelm
parents:
72150
diff
changeset
|
29 |
|
72128 | 30 |
* Definitions in locales produce rule which can be added as congruence |
31 |
rule to protect foundational terms during simplification. |
|
32 |
||
33 |
||
72169 | 34 |
|
72128 | 35 |
*** HOL *** |
36 |
||
72155 | 37 |
* Session HOL-Examples contains notable examples for Isabelle/HOL |
38 |
(former entries of HOL-Isar_Examples, HOL-ex etc.). |
|
39 |
||
72300 | 40 |
* Simproc "defined_all" and rewrite rule "subst_all" perform more |
41 |
aggressive substitution with variables from assumptions. |
|
42 |
INCOMPATIBILITY, consider repairing proofs locally like this: |
|
43 |
||
44 |
supply subst_all [simp del] [[simproc del: defined_all]] |
|
45 |
||
72128 | 46 |
* Simproc "datatype_no_proper_subterm" rewrites equalities "lhs = rhs" |
47 |
on datatypes to "False" if either side is a proper subexpression of the |
|
48 |
other (for any datatype with a reasonable size function). |
|
49 |
||
50 |
* New constant "power_int" for exponentiation with integer exponent, |
|
51 |
written as "x powi n". |
|
52 |
||
53 |
* Added the "at most 1" quantifier, Uniq. |
|
54 |
||
72169 | 55 |
* For the natural numbers, Sup {} = 0. |
56 |
||
72234 | 57 |
* Updated the Metis prover underlying the "metis" proof method to |
58 |
version 2.4 (release 20180810). The new version fixes one soundness |
|
59 |
defect and two incompleteness defects. Very slight INCOMPATIBILITY. |
|
60 |
||
72184 | 61 |
* Library theory "Bit_Operations" with generic bit operations. |
62 |
||
72185
3e162c63371a
build bit operations on word on library theory on bit operations
haftmann
parents:
72184
diff
changeset
|
63 |
* Session HOL-Word: Type word is restricted to bit strings consisting |
3e162c63371a
build bit operations on word on library theory on bit operations
haftmann
parents:
72184
diff
changeset
|
64 |
of at least one bit. INCOMPATIBILITY. |
3e162c63371a
build bit operations on word on library theory on bit operations
haftmann
parents:
72184
diff
changeset
|
65 |
|
3e162c63371a
build bit operations on word on library theory on bit operations
haftmann
parents:
72184
diff
changeset
|
66 |
* Session HOL-Word: Bit operations NOT, AND, OR, XOR are based on |
3e162c63371a
build bit operations on word on library theory on bit operations
haftmann
parents:
72184
diff
changeset
|
67 |
generic algebraic bit operations from HOL-Library.Bit_Operations. |
3e162c63371a
build bit operations on word on library theory on bit operations
haftmann
parents:
72184
diff
changeset
|
68 |
INCOMPATIBILITY. |
72184 | 69 |
|
72215 | 70 |
* Session HOL-Word: Theory "Word_Bitwise" has been moved to AFP entry |
71 |
Word_Lib as theory "Bitwise". INCOMPATIBILITY. |
|
72 |
||
72216 | 73 |
* Session HOL-Word: Misc ancient material has been factored out into |
74 |
separate theories. INCOMPATIBILITY, prefer theory "More_Word" |
|
75 |
over "Word" to use it. |
|
76 |
||
77 |
* Session HOL-Word: Ancient int numeral representation has been |
|
78 |
factored out in separate theory "Ancient_Numeral". INCOMPATIBILITY. |
|
79 |
||
72184 | 80 |
* Session HOL-Word: Compound operation "bin_split" simplifies by default |
81 |
into its components "drop_bit" and "take_bit". INCOMPATIBILITY. |
|
82 |
||
72177 | 83 |
* Session HOL-Word: Operations "bin_last", "bin_rest", "bin_nth", |
72272 | 84 |
"bintrunc", "sbintrunc", "norm_sint", "bin_cat" and "max_word" are now |
85 |
mere input abbreviations. Minor INCOMPATIBILITY. |
|
72128 | 86 |
|
72240 | 87 |
* Session HOL-Word: Theory HOL-Library.Z2 is not imported any longer. |
72217 | 88 |
Minor INCOMPATIBILITY. |
89 |
||
72230 | 90 |
* Session HOL-Word: Operations lsb, msb and set_bit are separated |
91 |
into theories Misc_lsb, Misc_msb and Misc_set_bit respectively. |
|
92 |
INCOMPATIBILITY. |
|
93 |
||
72300 | 94 |
* Session HOL-TPTP: The "tptp_isabelle" and "tptp_sledgehammer" commands |
95 |
are in working order again, as opposed to outputting "GaveUp" on nearly |
|
96 |
all problems. |
|
72191 | 97 |
|
72128 | 98 |
|
99 |
*** FOL *** |
|
100 |
||
101 |
* Added the "at most 1" quantifier, Uniq, as in HOL. |
|
102 |
||
72300 | 103 |
* Simproc "defined_all" and rewrite rule "subst_all" have been changed |
104 |
as in HOL. |
|
72150 | 105 |
|
72128 | 106 |
|
72135 | 107 |
*** ML *** |
108 |
||
72290
efb7fd4a6d1f
subtle change of Theory_Data extend/merge semantics due to Theory.join_theory;
wenzelm
parents:
72272
diff
changeset
|
109 |
* Theory_Data extend operation is obsolete and needs to be the identity |
efb7fd4a6d1f
subtle change of Theory_Data extend/merge semantics due to Theory.join_theory;
wenzelm
parents:
72272
diff
changeset
|
110 |
function; merge should be conservative and not reset to the empty value. |
efb7fd4a6d1f
subtle change of Theory_Data extend/merge semantics due to Theory.join_theory;
wenzelm
parents:
72272
diff
changeset
|
111 |
Subtle INCOMPATIBILITY and change of semantics (due to |
efb7fd4a6d1f
subtle change of Theory_Data extend/merge semantics due to Theory.join_theory;
wenzelm
parents:
72272
diff
changeset
|
112 |
Theory.join_theory from Isabelle2020). Special extend/merge behaviour at |
efb7fd4a6d1f
subtle change of Theory_Data extend/merge semantics due to Theory.join_theory;
wenzelm
parents:
72272
diff
changeset
|
113 |
the begin of a new theory can be achieved via Theory.at_begin. |
efb7fd4a6d1f
subtle change of Theory_Data extend/merge semantics due to Theory.join_theory;
wenzelm
parents:
72272
diff
changeset
|
114 |
|
72136 | 115 |
* Antiquotations @{scala_function} and @{scala} refer to registered |
116 |
Isabelle/Scala functions (of type String => String): invocation works |
|
117 |
via the PIDE protocol. |
|
72135 | 118 |
|
119 |
||
71931 | 120 |
*** System *** |
121 |
||
72204
2d658beb815b
enable pide_session by default (again), with extra JVM heap for AFP tests (see also 86e429abd38d, 026de3424c39);
wenzelm
parents:
72192
diff
changeset
|
122 |
* System option "pide_session" is enabled by default, notably for |
72206 | 123 |
standard "isabelle build": it allows to invoke Isabelle/Scala operations |
124 |
from Isabelle/ML. Big build jobs (e.g. AFP) require extra heap space for |
|
125 |
the java process, e.g. like this in $ISABELLE_HOME_USER/etc/settings: |
|
126 |
||
127 |
ISABELLE_TOOL_JAVA_OPTIONS="$ISABELLE_TOOL_JAVA_OPTIONS -Xmx8g" |
|
72204
2d658beb815b
enable pide_session by default (again), with extra JVM heap for AFP tests (see also 86e429abd38d, 026de3424c39);
wenzelm
parents:
72192
diff
changeset
|
128 |
|
71931 | 129 |
* The command-line tool "isabelle console" now supports interrupts |
130 |
properly (on Linux and macOS). |
|
131 |
||
72024 | 132 |
* The command-line tool "isabelle sessions" explores the structure of |
133 |
Isabelle sessions and prints result names in topological order (on |
|
134 |
stdout). |
|
135 |
||
71949 | 136 |
* The Isabelle/Scala "Progress" interface changed slightly and |
137 |
"No_Progress" has been discontinued. INCOMPATIBILITY, use "new Progress" |
|
138 |
instead. |
|
139 |
||
140 |
* General support for Isabelle/Scala system services, configured via the |
|
141 |
shell function "isabelle_scala_service" in etc/settings (e.g. of an |
|
71957 | 142 |
Isabelle component); see implementations of class |
143 |
Isabelle_System.Service in Isabelle/Scala. This supersedes former |
|
144 |
"isabelle_scala_tools" and "isabelle_file_format": minor |
|
145 |
INCOMPATIBILITY. |
|
71944 | 146 |
|
72070 | 147 |
* Isabelle/Phabricator setup has been updated to follow ongoing |
148 |
development: libphutil has been discontinued. Minor INCOMPATIBILITY: |
|
149 |
existing server installations should remove libphutil from |
|
150 |
/usr/local/bin/isabelle-phabricator-upgrade and each installation root |
|
151 |
directory (e.g. /var/www/phabricator-vcs/libphutil). |
|
152 |
||
71772 | 153 |
|
72064 | 154 |
|
71698 | 155 |
New in Isabelle2020 (April 2020) |
156 |
-------------------------------- |
|
70449 | 157 |
|
70748 | 158 |
*** General *** |
159 |
||
70867 | 160 |
* Session ROOT files need to specify explicit 'directories' for import |
70871 | 161 |
of theory files. Directories cannot be shared by different sessions. |
162 |
(Recall that import of theories from other sessions works via |
|
163 |
session-qualified theory names, together with suitable 'sessions' |
|
164 |
declarations in the ROOT.) |
|
70867 | 165 |
|
70748 | 166 |
* Internal derivations record dependencies on oracles and other theorems |
167 |
accurately, including the implicit type-class reasoning wrt. proven |
|
168 |
class relations and type arities. In particular, the formal tagging with |
|
169 |
"Pure.skip_proofs" of results stemming from "instance ... sorry" is now |
|
170 |
propagated properly to theorems depending on such type instances. |
|
171 |
||
172 |
* Command 'sorry' (oracle "Pure.skip_proofs") is more precise about the |
|
173 |
actual proposition that is assumed in the goal and proof context. This |
|
174 |
requires at least Proofterm.proofs = 1 to show up in theorem |
|
175 |
dependencies. |
|
176 |
||
177 |
* Command 'thm_oracles' prints all oracles used in given theorems, |
|
178 |
covering the full graph of transitive dependencies. |
|
179 |
||
70791 | 180 |
* Command 'thm_deps' prints immediate theorem dependencies of the given |
181 |
facts. The former graph visualization has been discontinued, because it |
|
182 |
was hardly usable. |
|
183 |
||
71658 | 184 |
* Refined treatment of proof terms, including type-class proofs for |
185 |
minor object-logics (FOL, FOLP, Sequents). |
|
186 |
||
71661 | 187 |
* The inference kernel is now confined to one main module: structure |
188 |
Thm, without the former circular dependency on structure Axclass. |
|
189 |
||
71759
b0b16088ccf2
allow slightly odd "' " in mixfix as documented (introduced in 55754d6d399c, but broken in be8a8d60d962);
wenzelm
parents:
71757
diff
changeset
|
190 |
* Mixfix annotations may use "' " (single quote followed by space) to |
b0b16088ccf2
allow slightly odd "' " in mixfix as documented (introduced in 55754d6d399c, but broken in be8a8d60d962);
wenzelm
parents:
71757
diff
changeset
|
191 |
separate delimiters (as documented in the isar-ref manual), without |
71761 | 192 |
requiring an auxiliary empty block. A literal single quote needs to be |
71765 | 193 |
escaped properly. Minor INCOMPATIBILITY. |
71759
b0b16088ccf2
allow slightly odd "' " in mixfix as documented (introduced in 55754d6d399c, but broken in be8a8d60d962);
wenzelm
parents:
71757
diff
changeset
|
194 |
|
70748 | 195 |
|
70708 | 196 |
*** Isar *** |
197 |
||
198 |
* The proof method combinator (subproofs m) applies the method |
|
199 |
expression m consecutively to each subgoal, constructing individual |
|
200 |
subproofs internally. This impacts the internal construction of proof |
|
201 |
terms: it makes a cascade of let-expressions within the derivation tree |
|
202 |
and may thus improve scalability. |
|
203 |
||
71639 | 204 |
* Attribute "trace_locales" activates tracing of locale instances during |
205 |
roundup. It replaces the diagnostic command 'print_dependencies', which |
|
206 |
has been discontinued. |
|
70794 | 207 |
|
70708 | 208 |
|
70873
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70871
diff
changeset
|
209 |
*** Isabelle/jEdit Prover IDE *** |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70871
diff
changeset
|
210 |
|
71757 | 211 |
* Prover IDE startup is now much faster, because theory dependencies are |
212 |
no longer explored in advance. The overall session structure with its |
|
213 |
declarations of 'directories' is sufficient to locate theory files. Thus |
|
214 |
the "session focus" of option "isabelle jedit -S" has become obsolete |
|
215 |
(likewise for "isabelle vscode_server -S"). Existing option "-R" is both |
|
216 |
sufficient and more convenient to start editing a particular session. |
|
217 |
||
71711 | 218 |
* Actions isabelle.tooltip (CS+b) and isabelle.message (CS+m) display |
219 |
tooltip message popups, corresponding to mouse hovering with/without the |
|
220 |
CONTROL/COMMAND key pressed. |
|
221 |
||
71713 | 222 |
* The following actions allow to navigate errors within the current |
223 |
document snapshot: |
|
224 |
||
225 |
isabelle.first-error (CS+a) |
|
71719 | 226 |
isabelle.last-error (CS+z) |
227 |
isabelle.next-error (CS+n) |
|
228 |
isabelle.prev-error (CS+p) |
|
71713 | 229 |
|
71642 | 230 |
* Support more brackets: \<llangle> \<rrangle> (intended for implicit argument syntax). |
231 |
||
71734 | 232 |
* Action isabelle.jconsole (menu item Plugins / Isabelle / Java/VM |
233 |
Monitor) applies the jconsole tool on the running Isabelle/jEdit |
|
234 |
process. This allows to monitor resource usage etc. |
|
235 |
||
71757 | 236 |
* More adequate default font sizes for Linux on HD / UHD displays: |
237 |
automatic font scaling is usually absent on Linux, in contrast to |
|
238 |
Windows and macOS. |
|
239 |
||
71792 | 240 |
* The default value for the jEdit property "view.antiAlias" (menu item |
241 |
Utilities / Global Options / Text Area / Anti Aliased smooth text) is |
|
242 |
now "subpixel HRGB", instead of former "standard". Especially on Linux |
|
243 |
this often leads to faster text rendering, but can also cause problems |
|
244 |
with odd color shades. An alternative is to switch back to "standard" |
|
245 |
here, and set the following Java system property: |
|
246 |
||
247 |
isabelle jedit -Dsun.java2d.opengl=true |
|
248 |
||
249 |
This can be made persistent via JEDIT_JAVA_OPTIONS in |
|
250 |
$ISABELLE_HOME_USER/etc/settings. For the "Isabelle2020" desktop |
|
251 |
application there is a corresponding options file in the same directory. |
|
252 |
||
70873
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70871
diff
changeset
|
253 |
|
71686
be84312a2d53
update to WebviewPanel API, following initial version by Peter Zeller;
wenzelm
parents:
71661
diff
changeset
|
254 |
*** Isabelle/VSCode Prover IDE *** |
be84312a2d53
update to WebviewPanel API, following initial version by Peter Zeller;
wenzelm
parents:
71661
diff
changeset
|
255 |
|
71697 | 256 |
* Update of State and Preview panels to use new WebviewPanel API of |
257 |
VSCode. |
|
71686
be84312a2d53
update to WebviewPanel API, following initial version by Peter Zeller;
wenzelm
parents:
71661
diff
changeset
|
258 |
|
be84312a2d53
update to WebviewPanel API, following initial version by Peter Zeller;
wenzelm
parents:
71661
diff
changeset
|
259 |
|
70522
48609a6af1a0
removed relics of ASCII syntax for indexed big operators
haftmann
parents:
70485
diff
changeset
|
260 |
*** HOL *** |
48609a6af1a0
removed relics of ASCII syntax for indexed big operators
haftmann
parents:
70485
diff
changeset
|
261 |
|
71639 | 262 |
* Improvements of the 'lift_bnf' command: |
71473 | 263 |
- Add support for quotient types. |
71639 | 264 |
- Generate transfer rules for the lifted map/set/rel/pred constants |
265 |
(theorems "<type>.<constant>_transfer_raw"). |
|
71473 | 266 |
|
70974
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70876
diff
changeset
|
267 |
* Term_XML.Encode/Decode.term uses compact representation of Const |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70876
diff
changeset
|
268 |
"typargs" from the given declaration environment. This also makes more |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70876
diff
changeset
|
269 |
sense for translations to lambda-calculi with explicit polymorphism. |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70876
diff
changeset
|
270 |
INCOMPATIBILITY, use Term_XML.Encode/Decode.term_raw in special |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70876
diff
changeset
|
271 |
applications. |
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70876
diff
changeset
|
272 |
|
70710 | 273 |
* ASCII membership syntax concerning big operators for infimum and |
71639 | 274 |
supremum has been discontinued. INCOMPATIBILITY. |
70710 | 275 |
|
71757 | 276 |
* Removed multiplicativity assumption from class |
277 |
"normalization_semidom". Introduced various new intermediate classes |
|
278 |
with the multiplicativity assumption; many theorem statements |
|
279 |
(especially involving GCD/LCM) had to be adapted. This allows for a more |
|
280 |
natural instantiation of the algebraic typeclasses for e.g. Gaussian |
|
281 |
integers. INCOMPATIBILITY. |
|
282 |
||
70710 | 283 |
* Clear distinction between types for bits (False / True) and Z2 (0 / |
71639 | 284 |
1): theory HOL-Library.Bit has been renamed accordingly. |
285 |
INCOMPATIBILITY. |
|
286 |
||
287 |
* Dynamic facts "algebra_split_simps" and "field_split_simps" correspond |
|
71007
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70974
diff
changeset
|
288 |
to algebra_simps and field_simps but contain more aggressive rules |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70974
diff
changeset
|
289 |
potentially splitting goals; algebra_split_simps roughly replaces |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70974
diff
changeset
|
290 |
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:
70974
diff
changeset
|
291 |
INCOMPATIBILITY. |
70710 | 292 |
|
71640 | 293 |
* Theory HOL.Complete_Lattices: |
294 |
renamed Inf_Sup -> Inf_eq_Sup and Sup_Inf -> Sup_eq_Inf |
|
295 |
||
71646 | 296 |
* Theory HOL-Library.Monad_Syntax: infix operation "bind" (\<bind>) |
70710 | 297 |
associates to the left now as is customary. |
298 |
||
71468
09aee7f5b447
Ramsey with multiple colours and arbitrary exponents
paulson <lp15@cam.ac.uk>
parents:
71364
diff
changeset
|
299 |
* Theory HOL-Library.Ramsey: full finite Ramsey's theorem with |
09aee7f5b447
Ramsey with multiple colours and arbitrary exponents
paulson <lp15@cam.ac.uk>
parents:
71364
diff
changeset
|
300 |
multiple colours and arbitrary exponents. |
09aee7f5b447
Ramsey with multiple colours and arbitrary exponents
paulson <lp15@cam.ac.uk>
parents:
71364
diff
changeset
|
301 |
|
71697 | 302 |
* Session HOL-Proofs: build faster thanks to better treatment of proof |
303 |
terms in Isabelle/Pure. |
|
71345 | 304 |
|
71650 | 305 |
* Session HOL-Word: bitwise NOT-operator has proper prefix syntax. Minor |
306 |
INCOMPATIBILITY. |
|
307 |
||
71697 | 308 |
* Session HOL-Analysis: proof method "metric" implements a decision |
309 |
procedure for simple linear statements in metric spaces. |
|
310 |
||
311 |
* Session HOL-Complex_Analysis has been split off from HOL-Analysis. |
|
71347 | 312 |
|
71348 | 313 |
|
70711 | 314 |
*** ML *** |
315 |
||
316 |
* Theory construction may be forked internally, the operation |
|
317 |
Theory.join_theory recovers a single result theory. See also the example |
|
318 |
in theory "HOL-ex.Join_Theory". |
|
319 |
||
70751 | 320 |
* Antiquotation @{oracle_name} inlines a formally checked oracle name. |
321 |
||
71648 | 322 |
* Minimal support for a soft-type system within the Isabelle logical |
323 |
framework (module Soft_Type_System). |
|
324 |
||
71965 | 325 |
* Former Variable.auto_fixes has been replaced by slightly more general |
326 |
Proof_Context.augment: it is subject to an optional soft-type system of |
|
327 |
the underlying object-logic. Minor INCOMPATIBILITY. |
|
71648 | 328 |
|
71650 | 329 |
* More scalable Export.export using XML.tree to avoid premature string |
330 |
allocations, with convenient shortcut XML.blob. Minor INCOMPATIBILITY. |
|
331 |
||
71707 | 332 |
* Prover IDE support for the underlying Poly/ML compiler (not the basis |
333 |
library). Open $ML_SOURCES/ROOT.ML in Isabelle/jEdit to browse the |
|
334 |
implementation with full markup. |
|
335 |
||
70711 | 336 |
|
70785 | 337 |
*** System *** |
338 |
||
71645 | 339 |
* Standard rendering for more Isabelle symbols: \<llangle> \<rrangle> \<bbar> \<sqdot> |
340 |
||
71587
820cf124dced
added "isabelle scala_project" to support e.g. IntelliJ IDEA;
wenzelm
parents:
71552
diff
changeset
|
341 |
* The command-line tool "isabelle scala_project" creates a Gradle |
820cf124dced
added "isabelle scala_project" to support e.g. IntelliJ IDEA;
wenzelm
parents:
71552
diff
changeset
|
342 |
project configuration for Isabelle/Scala/jEdit, to support Scala IDEs |
820cf124dced
added "isabelle scala_project" to support e.g. IntelliJ IDEA;
wenzelm
parents:
71552
diff
changeset
|
343 |
such as IntelliJ IDEA. |
820cf124dced
added "isabelle scala_project" to support e.g. IntelliJ IDEA;
wenzelm
parents:
71552
diff
changeset
|
344 |
|
71502 | 345 |
* The command-line tool "isabelle phabricator_setup" facilitates |
346 |
self-hosting of the Phabricator software-development platform, with |
|
347 |
support for Git, Mercurial, Subversion repositories. This helps to avoid |
|
348 |
monoculture and to escape the gravity of centralized version control by |
|
349 |
Github and/or Bitbucket. For further documentation, see chapter |
|
350 |
"Phabricator server administration" in the "system" manual. A notable |
|
351 |
example installation is https://isabelle-dev.sketis.net/. |
|
71332 | 352 |
|
71534 | 353 |
* The command-line tool "isabelle hg_setup" simplifies the setup of |
354 |
Mercurial repositories, with hosting via Phabricator or SSH file server |
|
355 |
access. |
|
356 |
||
70876
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70873
diff
changeset
|
357 |
* The command-line tool "isabelle imports" has been discontinued: strict |
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70873
diff
changeset
|
358 |
checking of session directories enforces session-qualified theory names |
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70873
diff
changeset
|
359 |
in applications -- users are responsible to specify session ROOT entries |
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70873
diff
changeset
|
360 |
properly. |
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70873
diff
changeset
|
361 |
|
71641 | 362 |
* The command-line tool "isabelle dump" and its underlying |
363 |
Isabelle/Scala module isabelle.Dump has become more scalable, by |
|
364 |
splitting sessions and supporting a base logic image. Minor |
|
365 |
INCOMPATIBILITY in options and parameters. |
|
366 |
||
71965 | 367 |
* The command-line tool "isabelle build_docker" has been slightly |
368 |
improved: it is now properly documented in the "system" manual. |
|
369 |
||
71650 | 370 |
* Isabelle/Scala support for the Linux platform (Ubuntu): packages, |
371 |
users, system services. |
|
372 |
||
373 |
* Isabelle/Scala support for proof terms (with full type/term |
|
374 |
information) in module isabelle.Term. |
|
375 |
||
71877 | 376 |
* Isabelle/Scala: more scalable output of YXML files, e.g. relevant for |
377 |
"isabelle dump". |
|
378 |
||
70785 | 379 |
* Theory export via Isabelle/Scala has been reworked. The former "fact" |
380 |
name space is now split into individual "thm" items: names are |
|
381 |
potentially indexed, such as "foo" for singleton facts, or "bar(1)", |
|
382 |
"bar(2)", "bar(3)" for multi-facts. Theorem dependencies are now |
|
383 |
exported as well: this spans an overall dependency graph of internal |
|
384 |
inferences; it might help to reconstruct the formal structure of theory |
|
71966 | 385 |
libraries. See also the module isabelle.Export_Theory in Isabelle/Scala. |
70785 | 386 |
|
71697 | 387 |
* Theory export of structured specifications, based on internal |
388 |
declarations of Spec_Rules by packages like 'definition', 'inductive', |
|
389 |
'primrec', 'function'. |
|
390 |
||
71640 | 391 |
* Old settings variables ISABELLE_PLATFORM and ISABELLE_WINDOWS_PLATFORM |
392 |
have been discontinued -- deprecated since Isabelle2018. |
|
393 |
||
71650 | 394 |
* More complete x86_64 platform support on macOS, notably Catalina where |
395 |
old x86 has been discontinued. |
|
396 |
||
397 |
* Update to GHC stack 2.1.3 with stackage lts-13.19/ghc-8.6.4. |
|
398 |
||
399 |
* Update to OCaml Opam 2.0.6 (using ocaml 4.05.0 as before). |
|
400 |
||
70449 | 401 |
|
70974
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70876
diff
changeset
|
402 |
|
70205 | 403 |
New in Isabelle2019 (June 2019) |
404 |
------------------------------- |
|
68683 | 405 |
|
69042 | 406 |
*** General *** |
407 |
||
70214 | 408 |
* The font collection "Isabelle DejaVu" is systematically derived from |
409 |
the existing "DejaVu" fonts, with variants "Sans Mono", "Sans", "Serif" |
|
69353
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69324
diff
changeset
|
410 |
and styles "Normal", "Bold", "Italic/Oblique", "Bold-Italic/Oblique". |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69324
diff
changeset
|
411 |
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:
69324
diff
changeset
|
412 |
augmented by special Isabelle symbols, taken from the former |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69324
diff
changeset
|
413 |
"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:
69324
diff
changeset
|
414 |
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:
69324
diff
changeset
|
415 |
INCOMPATIBILITY with display configuration expecting the old |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69324
diff
changeset
|
416 |
"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:
69324
diff
changeset
|
417 |
|
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69324
diff
changeset
|
418 |
* The Isabelle fonts render "\<inverse>" properly as superscript "-1". |
395c4fb15ea2
use "Isabelle DejaVu" fonts uniformly: Text Area, GUI elements, HTML output etc.;
wenzelm
parents:
69324
diff
changeset
|
419 |
|
69042 | 420 |
* Old-style inner comments (* ... *) within the term language are no |
421 |
longer supported (legacy feature in Isabelle2018). |
|
422 |
||
70205 | 423 |
* Old-style {* verbatim *} tokens are explicitly marked as legacy |
424 |
feature and will be removed soon. Use \<open>cartouche\<close> syntax instead, e.g. |
|
425 |
via "isabelle update_cartouches -t" (available since Isabelle2015). |
|
426 |
||
70482 | 427 |
* Infix operators that begin or end with a "*" are now parenthesized |
428 |
without additional spaces, e.g. "(*)" instead of "( * )". Minor |
|
70205 | 429 |
INCOMPATIBILITY. |
69066 | 430 |
|
69592 | 431 |
* Mixfix annotations may use cartouches instead of old-style double |
69598
9171d1ce5a35
support for "isabelle update -u mixfix_cartouches";
wenzelm
parents:
69597
diff
changeset
|
432 |
quotes, e.g. (infixl \<open>+\<close> 60). The command-line tool "isabelle update -u |
9171d1ce5a35
support for "isabelle update -u mixfix_cartouches";
wenzelm
parents:
69597
diff
changeset
|
433 |
mixfix_cartouches" allows to update existing theory sources |
9171d1ce5a35
support for "isabelle update -u mixfix_cartouches";
wenzelm
parents:
69597
diff
changeset
|
434 |
automatically. |
69592 | 435 |
|
69221
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:
69218
diff
changeset
|
436 |
* 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:
69218
diff
changeset
|
437 |
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:
69218
diff
changeset
|
438 |
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:
69218
diff
changeset
|
439 |
|
70239 | 440 |
* Commands 'generate_file', 'export_generated_files', and |
441 |
'compile_generated_files' support a stateless (PIDE-conformant) model |
|
442 |
for generated sources and compiled binaries of other languages. The |
|
70242 | 443 |
compilation process is managed in Isabelle/ML, and results exported to |
70239 | 444 |
the session database for further use (e.g. with "isabelle export" or |
445 |
"isabelle build -e"). |
|
446 |
||
69042 | 447 |
|
69190 | 448 |
*** Isabelle/jEdit Prover IDE *** |
449 |
||
70205 | 450 |
* Fonts for the text area, gutter, GUI elements etc. use the "Isabelle |
451 |
DejaVu" collection by default, which provides uniform rendering quality |
|
452 |
with the usual Isabelle symbols. Line spacing no longer needs to be |
|
453 |
adjusted: properties for the old IsabelleText font had "Global Options / |
|
70251 | 454 |
Text Area / Extra vertical line spacing (in pixels): -2", it now |
455 |
defaults to 1, but 0 works as well. |
|
70205 | 456 |
|
69796 | 457 |
* The jEdit File Browser is more prominent in the default GUI layout of |
458 |
Isabelle/jEdit: various virtual file-systems provide access to Isabelle |
|
459 |
resources, notably via "favorites:" (or "Edit Favorites"). |
|
460 |
||
70243 | 461 |
* Further markup and rendering for "plain text" (e.g. informal prose) |
462 |
and "raw text" (e.g. verbatim sources). This improves the visual |
|
463 |
appearance of formal comments inside the term language, or in general |
|
464 |
for repeated alternation of formal and informal text. |
|
465 |
||
69656 | 466 |
* Action "isabelle-export-browser" points the File Browser to the theory |
69780 | 467 |
exports of the current buffer, based on the "isabelle-export:" virtual |
468 |
file-system. The directory view needs to be reloaded manually to follow |
|
469 |
ongoing document processing. |
|
470 |
||
471 |
* Action "isabelle-session-browser" points the File Browser to session |
|
472 |
information, based on the "isabelle-session:" virtual file-system. Its |
|
473 |
entries are structured according to chapter / session names, the open |
|
474 |
operation is redirected to the session ROOT file. |
|
69656 | 475 |
|
69278 | 476 |
* Support for user-defined file-formats via class isabelle.File_Format |
69282
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69278
diff
changeset
|
477 |
in Isabelle/Scala (e.g. see isabelle.Bibtex.File_Format), configured via |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69278
diff
changeset
|
478 |
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:
69278
diff
changeset
|
479 |
Isabelle component). |
69278 | 480 |
|
70205 | 481 |
* System option "jedit_text_overview" allows to disable the text |
482 |
overview column. |
|
483 |
||
70035
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
70010
diff
changeset
|
484 |
* 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:
70010
diff
changeset
|
485 |
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:
70010
diff
changeset
|
486 |
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:
70010
diff
changeset
|
487 |
separated from option "-s". |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
70010
diff
changeset
|
488 |
|
70291 | 489 |
* The Isabelle/jEdit desktop application uses the same options as |
490 |
"isabelle jedit" for its internal "isabelle build" process: the implicit |
|
491 |
option "-o system_heaps" (or "-s") has been discontinued. This reduces |
|
492 |
the potential for surprise wrt. command-line tools. |
|
493 |
||
494 |
* The official download of the Isabelle/jEdit application already |
|
495 |
contains heap images for Isabelle/HOL within its main directory: thus |
|
496 |
the first encounter becomes faster and more robust (e.g. when run from a |
|
497 |
read-only directory). |
|
498 |
||
70254 | 499 |
* Isabelle DejaVu fonts are available with hinting by default, which is |
500 |
relevant for low-resolution displays. This may be disabled via system |
|
501 |
option "isabelle_fonts_hinted = false" in |
|
70258 | 502 |
$ISABELLE_HOME_USER/etc/preferences -- it occasionally yields better |
70254 | 503 |
results. |
504 |
||
70213 | 505 |
* OpenJDK 11 has quite different font rendering, with better glyph |
506 |
shapes and improved sub-pixel anti-aliasing. In some situations results |
|
70254 | 507 |
might be *worse* than Oracle Java 8, though -- a proper HiDPI / UHD |
508 |
display is recommended. |
|
70205 | 509 |
|
70442 | 510 |
* OpenJDK 11 supports GTK version 2.2 and 3 (according to system |
511 |
property jdk.gtk.version). The factory default is version 3, but |
|
512 |
ISABELLE_JAVA_SYSTEM_OPTIONS includes "-Djdk.gtk.version=2.2" to make |
|
513 |
this more conservative (as in Java 8). Depending on the GTK theme |
|
514 |
configuration, "-Djdk.gtk.version=3" might work better or worse. |
|
515 |
||
69190 | 516 |
|
70144
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
70142
diff
changeset
|
517 |
*** Document preparation *** |
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
70142
diff
changeset
|
518 |
|
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
70142
diff
changeset
|
519 |
* 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:
70142
diff
changeset
|
520 |
are stripped from document output: the effect is to modify the semantic |
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
70142
diff
changeset
|
521 |
presentation context or to emit markup to the PIDE document. Some |
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
70142
diff
changeset
|
522 |
predefined markers are taken from the Dublin Core Metadata Initiative, |
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
70142
diff
changeset
|
523 |
e.g. \<^marker>\<open>contributor arg\<close> or \<^marker>\<open>license arg\<close> and produce PIDE markup that |
70466 | 524 |
can be retrieved from the document database. |
70144
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
70142
diff
changeset
|
525 |
|
70325 | 526 |
* Old-style command tags %name are re-interpreted as markers with |
527 |
proof-scope \<^marker>\<open>tag (proof) name\<close> and produce LaTeX environments as |
|
528 |
before. Potential INCOMPATIBILITY: multiple markers are composed in |
|
529 |
canonical order, resulting in a reversed list of tags in the |
|
530 |
presentation context. |
|
531 |
||
532 |
* Marker \<^marker>\<open>tag name\<close> does not apply to the proof of a top-level goal |
|
533 |
statement by default (e.g. 'theorem', 'lemma'). This is a subtle change |
|
534 |
of semantics wrt. old-style %name. |
|
70144
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
70142
diff
changeset
|
535 |
|
70328 | 536 |
* In Isabelle/jEdit, the string "\tag" may be completed to a "\<^marker>\<open>tag \<close>" |
537 |
template. |
|
538 |
||
70307 | 539 |
* Document antiquotation option "cartouche" indicates if the output |
540 |
should be delimited as cartouche; this takes precedence over the |
|
541 |
analogous option "quotes". |
|
542 |
||
70308
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:
70307
diff
changeset
|
543 |
* 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:
70307
diff
changeset
|
544 |
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:
70307
diff
changeset
|
545 |
\<^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:
70307
diff
changeset
|
546 |
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:
70307
diff
changeset
|
547 |
"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:
70307
diff
changeset
|
548 |
"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:
70307
diff
changeset
|
549 |
|
70144
82e945d472d5
documentation of document markers and re-interpreted command tags;
wenzelm
parents:
70142
diff
changeset
|
550 |
|
68879 | 551 |
*** Isar *** |
552 |
||
69045 | 553 |
* Implicit cases goal1, goal2, goal3, etc. have been discontinued |
554 |
(legacy feature since Isabelle2016). |
|
555 |
||
70205 | 556 |
* More robust treatment of structural errors: begin/end blocks take |
557 |
precedence over goal/proof. This is particularly relevant for the |
|
558 |
headless PIDE session and server. |
|
559 |
||
560 |
* Command keywords of kind thy_decl / thy_goal may be more specifically |
|
561 |
fit into the traditional document model of "definition-statement-proof" |
|
562 |
via thy_defn / thy_stmt / thy_goal_defn / thy_goal_stmt. |
|
563 |
||
69045 | 564 |
|
68796
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
565 |
*** HOL *** |
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
566 |
|
70191
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:
70144
diff
changeset
|
567 |
* Command 'export_code' produces output as logical files within the |
70193 | 568 |
theory context, as well as formal session exports that can be |
569 |
materialized via command-line tools "isabelle export" or "isabelle build |
|
570 |
-e" (with 'export_files' in the session ROOT). Isabelle/jEdit also |
|
571 |
provides a virtual file-system "isabelle-export:" that can be explored |
|
572 |
in the regular file-browser. A 'file_prefix' argument allows to specify |
|
573 |
an explicit name prefix for the target file (SML, OCaml, Scala) or |
|
574 |
directory (Haskell); the default is "export" with a consecutive number |
|
575 |
within each theory. |
|
70191
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:
70144
diff
changeset
|
576 |
|
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:
70144
diff
changeset
|
577 |
* 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:
70144
diff
changeset
|
578 |
removed soon: writing to the physical file-system is not well-defined in |
70193 | 579 |
a reactive/parallel application like Isabelle. The empty 'file' argument |
580 |
has been discontinued already: it is superseded by the file-browser in |
|
581 |
Isabelle/jEdit on "isabelle-export:". Minor INCOMPATIBILITY. |
|
69637 | 582 |
|
70204
49e178cbf923
'code_reflect' only supports new-style 'file_prefix';
wenzelm
parents:
70193
diff
changeset
|
583 |
* Command 'code_reflect' no longer supports the 'file' argument: it has |
49e178cbf923
'code_reflect' only supports new-style 'file_prefix';
wenzelm
parents:
70193
diff
changeset
|
584 |
been superseded by 'file_prefix' for stateless file management as in |
49e178cbf923
'code_reflect' only supports new-style 'file_prefix';
wenzelm
parents:
70193
diff
changeset
|
585 |
'export_code'. Minor INCOMPATIBILITY. |
49e178cbf923
'code_reflect' only supports new-style 'file_prefix';
wenzelm
parents:
70193
diff
changeset
|
586 |
|
69759 | 587 |
* Code generation for OCaml: proper strings are used for literals. |
588 |
Minor INCOMPATIBILITY. |
|
589 |
||
70108
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
590 |
* Code generation for OCaml: Zarith supersedes Nums as library for |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
591 |
proper integer arithmetic. The library is located via standard |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
592 |
invocations of "ocamlfind" (via ISABELLE_OCAMLFIND settings variable). |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
593 |
The environment provided by "isabelle ocaml_setup" already contains this |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
594 |
tool and the required packages. Minor INCOMPATIBILITY. |
70087
55534affe445
migrated from Nums to Zarith as library for OCaml integer arithmetic
haftmann
parents:
70084
diff
changeset
|
595 |
|
69705 | 596 |
* Code generation for Haskell: code includes for Haskell must contain |
597 |
proper module frame, nothing is added magically any longer. |
|
598 |
INCOMPATIBILITY. |
|
599 |
||
70205 | 600 |
* Code generation: slightly more conventional syntax for 'code_stmts' |
601 |
antiquotation. Minor INCOMPATIBILITY. |
|
602 |
||
603 |
* Theory List: the precedence of the list_update operator has changed: |
|
604 |
"f a [n := x]" now needs to be written "(f a)[n := x]". |
|
605 |
||
606 |
* The functions \<Union>, \<Inter>, \<Squnion>, \<Sqinter> (not the corresponding binding operators) |
|
607 |
now have the same precedence as any other prefix function symbol. Minor |
|
608 |
INCOMPATIBILITY. |
|
70042
62e47f06d22c
avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
haftmann
parents:
70035
diff
changeset
|
609 |
|
68796
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
610 |
* 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
|
611 |
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
|
612 |
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
|
613 |
SUPREMUM, UNION, INTER should now rarely occur in output and are just |
70421 | 614 |
retained as migration auxiliary. Abbreviations MINIMUM and MAXIMUM |
615 |
are gone INCOMPATIBILITY. |
|
68796
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
616 |
|
70205 | 617 |
* The simplifier uses image_cong_simp as a congruence rule. The historic |
618 |
and not really well-formed congruence rules INF_cong*, SUP_cong*, are |
|
619 |
not used by default any longer. INCOMPATIBILITY; consider using declare |
|
620 |
image_cong_simp [cong del] in extreme situations. |
|
621 |
||
622 |
* INF_image and SUP_image are no default simp rules any longer. |
|
623 |
INCOMPATIBILITY, prefer image_comp as simp rule if needed. |
|
68938 | 624 |
|
69164 | 625 |
* Strong congruence rules (with =simp=> in the premises) for constant f |
69558
27dae626822b
prefer naming convention from datatype package for strong congruence rules
haftmann
parents:
69518
diff
changeset
|
626 |
are now uniformly called f_cong_simp, in accordance with congruence |
27dae626822b
prefer naming convention from datatype package for strong congruence rules
haftmann
parents:
69518
diff
changeset
|
627 |
rules produced for mappers by the datatype package. INCOMPATIBILITY. |
69164 | 628 |
|
70205 | 629 |
* Retired lemma card_Union_image; use the simpler card_UN_disjoint |
630 |
instead. INCOMPATIBILITY. |
|
631 |
||
632 |
* Facts sum_mset.commute and prod_mset.commute have been renamed to |
|
633 |
sum_mset.swap and prod_mset.swap, similarly to sum.swap and prod.swap. |
|
634 |
INCOMPATIBILITY. |
|
635 |
||
636 |
* ML structure Inductive: slightly more conventional naming schema. |
|
637 |
Minor INCOMPATIBILITY. |
|
638 |
||
639 |
* ML: Various _global variants of specification tools have been removed. |
|
640 |
Minor INCOMPATIBILITY, prefer combinators |
|
641 |
Named_Target.theory_map[_result] to lift specifications to the global |
|
642 |
theory level. |
|
643 |
||
644 |
* Theory HOL-Library.Simps_Case_Conv: 'case_of_simps' now supports |
|
645 |
overlapping and non-exhaustive patterns and handles arbitrarily nested |
|
646 |
patterns. It uses on the same algorithm as HOL-Library.Code_Lazy, which |
|
647 |
assumes sequential left-to-right pattern matching. The generated |
|
69569
de09a7261120
new implementation for case_of_simps based on Code_Lazy's pattern matching elimination algorithm
Andreas Lochbihler
parents:
69518
diff
changeset
|
648 |
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:
69518
diff
changeset
|
649 |
INCOMPATIBILITY. |
de09a7261120
new implementation for case_of_simps based on Code_Lazy's pattern matching elimination algorithm
Andreas Lochbihler
parents:
69518
diff
changeset
|
650 |
|
70482 | 651 |
* Theory HOL-Library.Multiset: the \<Union># operator now has the same |
70205 | 652 |
precedence as any other prefix function symbol. |
653 |
||
70263 | 654 |
* Theory HOL-Library.Cardinal_Notations has been discontinued in favor |
70352 | 655 |
of the bundle cardinal_syntax (available in theory Main). Minor |
656 |
INCOMPATIBILITY. |
|
70263 | 657 |
|
70205 | 658 |
* Session HOL-Library and HOL-Number_Theory: Exponentiation by squaring, |
659 |
used for computing powers in class "monoid_mult" and modular |
|
660 |
exponentiation. |
|
661 |
||
662 |
* Session HOL-Computational_Algebra: Formal Laurent series and overhaul |
|
663 |
of Formal power series. |
|
664 |
||
665 |
* Session HOL-Number_Theory: More material on residue rings in |
|
666 |
Carmichael's function, primitive roots, more properties for "ord". |
|
667 |
||
70300
b601c2c87076
type instantiations for poly_mapping as a real_normed_vector
paulson <lp15@cam.ac.uk>
parents:
70292
diff
changeset
|
668 |
* 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:
70292
diff
changeset
|
669 |
at the level of abstract topological spaces. |
b601c2c87076
type instantiations for poly_mapping as a real_normed_vector
paulson <lp15@cam.ac.uk>
parents:
70292
diff
changeset
|
670 |
|
70348
1f163f772da3
Group theory developments towards proving algebraic closure (by de Vilhena and Baillon)
paulson <lp15@cam.ac.uk>
parents:
70328
diff
changeset
|
671 |
* Session HOL-Algebra: Free abelian groups, etc., ported from HOL Light; |
70400
8371a25ca177
Algebraic closure: moving more theorems into their rightful places
paulson <lp15@cam.ac.uk>
parents:
70359
diff
changeset
|
672 |
algebraic closure of a field by de Vilhena and Baillon. |
70214 | 673 |
|
70352 | 674 |
* Session HOL-Homology has been added. It is a port of HOL Light's |
675 |
homology library, with new proofs of "invariance of domain" and related |
|
676 |
results. |
|
677 |
||
69099
d44cb8a3e5e0
HOL-SPARK .prv files are no longer written to the file-system;
wenzelm
parents:
69095
diff
changeset
|
678 |
* 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:
69095
diff
changeset
|
679 |
file-system, but exported to the session database. Results may be |
70208 | 680 |
retrieved via "isabelle build -e HOL-SPARK-Examples" on the |
681 |
command-line. |
|
69099
d44cb8a3e5e0
HOL-SPARK .prv files are no longer written to the file-system;
wenzelm
parents:
69095
diff
changeset
|
682 |
|
70205 | 683 |
* Sledgehammer: |
684 |
- The URL for SystemOnTPTP, which is used by remote provers, has been |
|
685 |
updated. |
|
686 |
- The machine-learning-based filter MaSh has been optimized to take |
|
687 |
less time (in most cases). |
|
688 |
||
689 |
* SMT: reconstruction is now possible using the SMT solver veriT. |
|
690 |
||
70358 | 691 |
* Session HOL-Word: |
692 |
* New theory More_Word as comprehensive entrance point. |
|
70359 | 693 |
* Merged type class bitss into type class bits. |
70358 | 694 |
INCOMPATIBILITY. |
695 |
||
68796
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
haftmann
parents:
68770
diff
changeset
|
696 |
|
68804 | 697 |
*** ML *** |
698 |
||
70205 | 699 |
* Command 'generate_file' allows to produce sources for other languages, |
700 |
with antiquotations in the Isabelle context (only the control-cartouche |
|
701 |
form). The default "cartouche" antiquotation evaluates an ML expression |
|
702 |
of type string and inlines the result as a string literal of the target |
|
703 |
language. For example, this works for Haskell as follows: |
|
704 |
||
705 |
generate_file "Pure.hs" = \<open> |
|
706 |
module Isabelle.Pure where |
|
707 |
allConst, impConst, eqConst :: String |
|
708 |
allConst = \<open>\<^const_name>\<open>Pure.all\<close>\<close> |
|
709 |
impConst = \<open>\<^const_name>\<open>Pure.imp\<close>\<close> |
|
710 |
eqConst = \<open>\<^const_name>\<open>Pure.eq\<close>\<close> |
|
711 |
\<close> |
|
712 |
||
70268
4f936de6d9b8
tuned -- prefer Isar command 'compile_generated_files';
wenzelm
parents:
70263
diff
changeset
|
713 |
See also commands 'export_generated_files' and 'compile_generated_files' |
4f936de6d9b8
tuned -- prefer Isar command 'compile_generated_files';
wenzelm
parents:
70263
diff
changeset
|
714 |
to use the results. |
68804 | 715 |
|
70444 | 716 |
* ML evaluation (notably via command 'ML' or 'ML_file') is subject to |
68824 | 717 |
option ML_environment to select a named environment, such as "Isabelle" |
70444 | 718 |
for Isabelle/ML, or "SML" for official Standard ML. |
68804 | 719 |
|
69391
4c9b4e2c5460
more general command 'generate_file' for registered file types, notably Haskell;
wenzelm
parents:
69387
diff
changeset
|
720 |
* 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:
69387
diff
changeset
|
721 |
underlying theory, i.e. the directory of the theory file. |
4c9b4e2c5460
more general command 'generate_file' for registered file types, notably Haskell;
wenzelm
parents:
69387
diff
changeset
|
722 |
|
69481 | 723 |
* ML antiquotation @{verbatim} inlines its argument as string literal, |
724 |
preserving newlines literally. The short form \<^verbatim>\<open>abc\<close> is particularly |
|
725 |
useful. |
|
726 |
||
70205 | 727 |
* Local_Theory.reset is no longer available in user space. Regular |
728 |
definitional packages should use balanced blocks of |
|
729 |
Local_Theory.open_target versus Local_Theory.close_target instead, or |
|
730 |
the Local_Theory.subtarget(_result) combinator. Rare INCOMPATIBILITY. |
|
731 |
||
732 |
* Original PolyML.pointerEq is retained as a convenience for tools that |
|
733 |
don't use Isabelle/ML (where this is called "pointer_eq"). |
|
69391
4c9b4e2c5460
more general command 'generate_file' for registered file types, notably Haskell;
wenzelm
parents:
69387
diff
changeset
|
734 |
|
69287 | 735 |
|
68883
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
736 |
*** System *** |
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
737 |
|
70213 | 738 |
* Update to OpenJDK 11: the current long-term support version of Java. |
70205 | 739 |
|
740 |
* Update to Poly/ML 5.8 allows to use the native x86_64 platform without |
|
741 |
the full overhead of 64-bit values everywhere. This special x86_64_32 |
|
742 |
mode provides up to 16GB ML heap, while program code and stacks are |
|
743 |
allocated elsewhere. Thus approx. 5 times more memory is available for |
|
744 |
applications compared to old x86 mode (which is no longer used by |
|
745 |
Isabelle). The switch to the x86_64 CPU architecture also avoids |
|
746 |
compatibility problems with Linux and macOS, where 32-bit applications |
|
747 |
are gradually phased out. |
|
748 |
||
749 |
* System option "checkpoint" has been discontinued: obsolete thanks to |
|
750 |
improved memory management in Poly/ML. |
|
751 |
||
752 |
* System option "system_heaps" determines where to store the session |
|
70035
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
70010
diff
changeset
|
753 |
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:
70010
diff
changeset
|
754 |
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:
70010
diff
changeset
|
755 |
INCOMPATIBILITY in command-line syntax. |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
70010
diff
changeset
|
756 |
|
70205 | 757 |
* Session directory $ISABELLE_HOME/src/Tools/Haskell provides some |
758 |
source modules for Isabelle tools implemented in Haskell, notably for |
|
759 |
Isabelle/PIDE. |
|
760 |
||
761 |
* The command-line tool "isabelle build -e" retrieves theory exports |
|
762 |
from the session build database, using 'export_files' in session ROOT |
|
763 |
entries. |
|
764 |
||
69597 | 765 |
* The command-line tool "isabelle update" uses Isabelle/PIDE in |
766 |
batch-mode to update theory sources based on semantic markup produced in |
|
69622 | 767 |
Isabelle/ML. Actual updates depend on system options that may be enabled |
69600 | 768 |
via "-u OPT" (for "update_OPT"), see also $ISABELLE_HOME/etc/options |
769 |
section "Theory update". Theory sessions are specified as in "isabelle |
|
69597 | 770 |
dump". |
771 |
||
69604
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69600
diff
changeset
|
772 |
* The command-line tool "isabelle update -u control_cartouches" changes |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69600
diff
changeset
|
773 |
antiquotations into control-symbol format (where possible): @{NAME} |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69600
diff
changeset
|
774 |
becomes \<^NAME> and @{NAME ARG} becomes \<^NAME>\<open>ARG\<close>. |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69600
diff
changeset
|
775 |
|
69282
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69278
diff
changeset
|
776 |
* Support for Isabelle command-line tools defined in Isabelle/Scala. |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69278
diff
changeset
|
777 |
Instances of class Isabelle_Scala_Tools may be configured via the shell |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69278
diff
changeset
|
778 |
function "isabelle_scala_tools" in etc/settings (e.g. of an Isabelle |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69278
diff
changeset
|
779 |
component). |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69278
diff
changeset
|
780 |
|
70205 | 781 |
* Isabelle Server command "use_theories" supports "nodes_status_delay" |
69044 | 782 |
for continuous output of node status information. The time interval is |
783 |
specified in seconds; a negative value means it is disabled (default). |
|
784 |
||
785 |
* 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
|
786 |
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
|
787 |
is no longer required. |
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
788 |
|
70108
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
789 |
* OCaml tools and libraries are now accesed via ISABELLE_OCAMLFIND, |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
790 |
which needs to point to a suitable version of "ocamlfind" (e.g. via |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
791 |
OPAM, see below). INCOMPATIBILITY: settings variables ISABELLE_OCAML and |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
792 |
ISABELLE_OCAMLC are no longer supported. |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
793 |
|
69273
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:
69235
diff
changeset
|
794 |
* 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:
69235
diff
changeset
|
795 |
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:
69235
diff
changeset
|
796 |
|
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:
69235
diff
changeset
|
797 |
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:
69235
diff
changeset
|
798 |
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:
69235
diff
changeset
|
799 |
|
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:
69235
diff
changeset
|
800 |
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:
69235
diff
changeset
|
801 |
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:
69235
diff
changeset
|
802 |
|
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:
69235
diff
changeset
|
803 |
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:
69235
diff
changeset
|
804 |
(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:
69235
diff
changeset
|
805 |
|
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:
69235
diff
changeset
|
806 |
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:
69235
diff
changeset
|
807 |
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:
69235
diff
changeset
|
808 |
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:
69235
diff
changeset
|
809 |
|
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:
69235
diff
changeset
|
810 |
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:
69235
diff
changeset
|
811 |
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:
69235
diff
changeset
|
812 |
|
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:
69235
diff
changeset
|
813 |
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:
69235
diff
changeset
|
814 |
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:
69235
diff
changeset
|
815 |
|
69274 | 816 |
ISABELLE_GHC |
817 |
||
70108
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
818 |
ISABELLE_OCAMLFIND |
69273
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:
69235
diff
changeset
|
819 |
|
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:
69235
diff
changeset
|
820 |
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:
69235
diff
changeset
|
821 |
be recovered by purging the directories ISABELLE_STACK_ROOT / |
70108
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
822 |
ISABELLE_OPAM_ROOT, or by resetting these variables in |
110fff287217
access OCaml tools and libraries via ISABELLE_OCAMLFIND;
wenzelm
parents:
70096
diff
changeset
|
823 |
$ISABELLE_HOME_USER/etc/settings. |
69190 | 824 |
|
70002
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
wenzelm
parents:
69990
diff
changeset
|
825 |
|
68883
3653b3ad729e
clarified Thy_Resources.Session.use_theories: "terminated" node status is sufficient;
wenzelm
parents:
68879
diff
changeset
|
826 |
|
68392 | 827 |
New in Isabelle2018 (August 2018) |
828 |
--------------------------------- |
|
66653 | 829 |
|
66712 | 830 |
*** General *** |
831 |
||
68394 | 832 |
* Session-qualified theory names are mandatory: it is no longer possible |
833 |
to refer to unqualified theories from the parent session. |
|
834 |
INCOMPATIBILITY for old developments that have not been updated to |
|
835 |
Isabelle2017 yet (using the "isabelle imports" tool). |
|
836 |
||
837 |
* Only the most fundamental theory names are global, usually the entry |
|
838 |
points to major logic sessions: Pure, Main, Complex_Main, HOLCF, IFOL, |
|
839 |
FOL, ZF, ZFC etc. INCOMPATIBILITY, need to use qualified names for |
|
840 |
formerly global "HOL-Probability.Probability" and "HOL-SPARK.SPARK". |
|
841 |
||
68559
7aae213d9e69
discontinued pending_shyps: too much complication due to lazy facts;
wenzelm
parents:
68548
diff
changeset
|
842 |
* 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
|
843 |
Rare INCOMPATIBILITY. |
68540 | 844 |
|
68665 | 845 |
* Facts stemming from locale interpretation are subject to lazy |
846 |
evaluation for improved performance. Rare INCOMPATIBILITY: errors |
|
847 |
stemming from interpretation morphisms might be deferred and thus |
|
848 |
difficult to locate; enable system option "strict_facts" temporarily to |
|
849 |
avoid this. |
|
850 |
||
67446 | 851 |
* Marginal comments need to be written exclusively in the new-style form |
852 |
"\<comment> \<open>text\<close>", old ASCII variants like "-- {* ... *}" are no longer |
|
853 |
supported. INCOMPATIBILITY, use the command-line tool "isabelle |
|
854 |
update_comments" to update existing theory files. |
|
855 |
||
67507 | 856 |
* Old-style inner comments (* ... *) within the term language are legacy |
857 |
and will be discontinued soon: use formal comments "\<comment> \<open>...\<close>" or "\<^cancel>\<open>...\<close>" |
|
858 |
instead. |
|
859 |
||
67402 | 860 |
* The "op <infix-op>" syntax for infix operators has been replaced by |
67400 | 861 |
"(<infix-op>)". If <infix-op> begins or ends with a "*", there needs to |
862 |
be a space between the "*" and the corresponding parenthesis. |
|
68543 | 863 |
INCOMPATIBILITY, use the command-line tool "isabelle update_op" to |
864 |
convert theory and ML files to the new syntax. Because it is based on |
|
865 |
regular expression matching, the result may need a bit of manual |
|
866 |
postprocessing. Invoking "isabelle update_op" converts all files in the |
|
867 |
current directory (recursively). In case you want to exclude conversion |
|
868 |
of ML files (because the tool frequently also converts ML's "op" |
|
869 |
syntax), use option "-m". |
|
67398 | 870 |
|
67013
335a7dce7cb3
more uniform header syntax, in contrast to the former etc/abbrevs file-format (see 73939a9b70a3);
wenzelm
parents:
66994
diff
changeset
|
871 |
* 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
|
872 |
INCOMPATIBILITY. |
335a7dce7cb3
more uniform header syntax, in contrast to the former etc/abbrevs file-format (see 73939a9b70a3);
wenzelm
parents:
66994
diff
changeset
|
873 |
|
66757 | 874 |
* Command 'external_file' declares the formal dependency on the given |
875 |
file name, such that the Isabelle build process knows about it, but |
|
876 |
without specific Prover IDE management. |
|
877 |
||
66759 | 878 |
* Session ROOT entries no longer allow specification of 'files'. Rare |
879 |
INCOMPATIBILITY, use command 'external_file' within a proper theory |
|
880 |
context. |
|
881 |
||
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
882 |
* 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
|
883 |
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
|
884 |
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
|
885 |
-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
|
886 |
|
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
887 |
isabelle build -D '~~/src/ZF' |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
888 |
|
67264 | 889 |
* The command 'display_drafts' has been discontinued. INCOMPATIBILITY, |
890 |
use action "isabelle.draft" (or "print") in Isabelle/jEdit instead. |
|
891 |
||
68394 | 892 |
* In HTML output, the Isabelle symbol "\<hyphen>" is rendered as explicit |
893 |
Unicode hyphen U+2010, to avoid unclear meaning of the old "soft hyphen" |
|
894 |
U+00AD. Rare INCOMPATIBILITY, e.g. copy-paste of historic Isabelle HTML |
|
895 |
output. |
|
67305
ecb74607063f
more robust hyphen (see also "Soft hyphen (SHY) – a hard problem?" http://jkorpela.fi/shy.html);
wenzelm
parents:
67304
diff
changeset
|
896 |
|
66712 | 897 |
|
67262 | 898 |
*** Isabelle/jEdit Prover IDE *** |
66768 | 899 |
|
68394 | 900 |
* The command-line tool "isabelle jedit" provides more flexible options |
901 |
for session management: |
|
902 |
||
68472 | 903 |
- option -R builds an auxiliary logic image with all theories from |
904 |
other sessions that are not already present in its parent |
|
68394 | 905 |
|
906 |
- option -S is like -R, with a focus on the selected session and its |
|
907 |
descendants (this reduces startup time for big projects like AFP) |
|
908 |
||
68472 | 909 |
- option -A specifies an alternative ancestor session for options -R |
910 |
and -S |
|
911 |
||
68541 | 912 |
- option -i includes additional sessions into the name-space of |
913 |
theories |
|
914 |
||
68394 | 915 |
Examples: |
916 |
isabelle jedit -R HOL-Number_Theory |
|
917 |
isabelle jedit -R HOL-Number_Theory -A HOL |
|
918 |
isabelle jedit -d '$AFP' -S Formal_SSA -A HOL |
|
919 |
isabelle jedit -d '$AFP' -S Formal_SSA -A HOL-Analysis |
|
68541 | 920 |
isabelle jedit -d '$AFP' -S Formal_SSA -A HOL-Analysis -i CryptHOL |
68394 | 921 |
|
922 |
* PIDE markup for session ROOT files: allows to complete session names, |
|
923 |
follow links to theories and document files etc. |
|
924 |
||
925 |
* Completion supports theory header imports, using theory base name. |
|
926 |
E.g. "Prob" may be completed to "HOL-Probability.Probability". |
|
927 |
||
928 |
* Named control symbols (without special Unicode rendering) are shown as |
|
929 |
bold-italic keyword. This is particularly useful for the short form of |
|
930 |
antiquotations with control symbol: \<^name>\<open>argument\<close>. The action |
|
931 |
"isabelle.antiquoted_cartouche" turns an antiquotation with 0 or 1 |
|
932 |
arguments into this format. |
|
933 |
||
934 |
* Completion provides templates for named symbols with arguments, |
|
935 |
e.g. "\<comment> \<open>ARGUMENT\<close>" or "\<^emph>\<open>ARGUMENT\<close>". |
|
936 |
||
68369 | 937 |
* Slightly more parallel checking, notably for high priority print |
938 |
functions (e.g. State output). |
|
939 |
||
68080 | 940 |
* The view title is set dynamically, according to the Isabelle |
941 |
distribution and the logic session name. The user can override this via |
|
942 |
set-view-title (stored persistently in $JEDIT_SETTINGS/perspective.xml). |
|
943 |
||
67395
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67381
diff
changeset
|
944 |
* 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
|
945 |
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
|
946 |
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
|
947 |
|
67248
68177abb2988
isabelle.preview presents bibtex database files as well;
wenzelm
parents:
67246
diff
changeset
|
948 |
* Action "isabelle.preview" is able to present more file formats, |
67267 | 949 |
notably bibtex database files and ML files. |
67246
4cedf44f2af1
isabelle.preview presents auxiliary text files as well;
wenzelm
parents:
67224
diff
changeset
|
950 |
|
67263 | 951 |
* Action "isabelle.draft" is similar to "isabelle.preview", but shows a |
68068 | 952 |
plain-text document draft. Both are available via the menu "Plugins / |
953 |
Isabelle". |
|
67263 | 954 |
|
67304
3cf05d7cf174
more robust treatment of conflicts with existing Unicode text;
wenzelm
parents:
67303
diff
changeset
|
955 |
* 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
|
956 |
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
|
957 |
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
|
958 |
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
|
959 |
Unicode content when saving the file. |
3cf05d7cf174
more robust treatment of conflicts with existing Unicode text;
wenzelm
parents:
67303
diff
changeset
|
960 |
|
68545 | 961 |
* Bibtex database files (.bib) are semantically checked. |
962 |
||
67994 | 963 |
* Update to jedit-5.5.0, the latest release. |
964 |
||
67246
4cedf44f2af1
isabelle.preview presents auxiliary text files as well;
wenzelm
parents:
67224
diff
changeset
|
965 |
|
67262 | 966 |
*** Isabelle/VSCode Prover IDE *** |
967 |
||
968 |
* HTML preview of theories and other file-formats similar to |
|
969 |
Isabelle/jEdit. |
|
970 |
||
68690
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
971 |
* Command-line tool "isabelle vscode_server" accepts the same options |
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
972 |
-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
|
973 |
relevant for isabelle.args configuration settings in VSCode. The former |
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
974 |
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
|
975 |
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
|
976 |
spot in the session structure. INCOMPATIBILITY. |
354c04092cd0
more flexible session selection as in "isabelle jedit";
wenzelm
parents:
68681
diff
changeset
|
977 |
|
66768 | 978 |
|
67140 | 979 |
*** Document preparation *** |
980 |
||
67448 | 981 |
* Formal comments work uniformly in outer syntax, inner syntax (term |
982 |
language), Isabelle/ML and some other embedded languages of Isabelle. |
|
983 |
See also "Document comments" in the isar-ref manual. The following forms |
|
984 |
are supported: |
|
985 |
||
986 |
- marginal text comment: \<comment> \<open>\<dots>\<close> |
|
987 |
- canceled source: \<^cancel>\<open>\<dots>\<close> |
|
988 |
- raw LaTeX: \<^latex>\<open>\<dots>\<close> |
|
67413 | 989 |
|
67381 | 990 |
* Outside of the inner theory body, the default presentation context is |
991 |
theory Pure. Thus elementary antiquotations may be used in markup |
|
992 |
commands (e.g. 'chapter', 'section', 'text') and formal comments. |
|
993 |
||
68513 | 994 |
* System option "document_tags" specifies alternative command tags. This |
995 |
is occasionally useful to control the global visibility of commands via |
|
996 |
session options (e.g. in ROOT). |
|
67140 | 997 |
|
998 |
* Document markup commands ('section', 'text' etc.) are implicitly |
|
999 |
tagged as "document" and visible by default. This avoids the application |
|
1000 |
of option "document_tags" to these commands. |
|
1001 |
||
67145 | 1002 |
* Isabelle names are mangled into LaTeX macro names to allow the full |
1003 |
identifier syntax with underscore, prime, digits. This is relevant for |
|
1004 |
antiquotations in control symbol notation, e.g. \<^const_name> becomes |
|
1005 |
\isactrlconstUNDERSCOREname. |
|
1006 |
||
68394 | 1007 |
* Document preparation with skip_proofs option now preserves the content |
1008 |
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
|
1009 |
|
68484 | 1010 |
* Document antiquotation @{theory name} requires the long |
1011 |
session-qualified theory name: this is what users reading the text |
|
1012 |
normally need to import. |
|
1013 |
||
67219 | 1014 |
* Document antiquotation @{session name} checks and prints the given |
1015 |
session name verbatim. |
|
1016 |
||
68394 | 1017 |
* Document antiquotation @{cite} now checks the given Bibtex entries |
1018 |
against the Bibtex database files -- only in batch-mode session builds. |
|
67157 | 1019 |
|
67176
13b5c3ff1954
re-implemented "isabelle document" in Isabelle/Scala, include latex_errors here;
wenzelm
parents:
67173
diff
changeset
|
1020 |
* 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
|
1021 |
Isabelle/Scala, with simplified arguments and explicit errors from the |
67203 | 1022 |
latex and bibtex process. Minor INCOMPATIBILITY. |
67173 | 1023 |
|
68394 | 1024 |
* Session ROOT entry: empty 'document_files' means there is no document |
1025 |
for this session. There is no need to specify options [document = false] |
|
1026 |
anymore. |
|
1027 |
||
67140 | 1028 |
|
67702
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67615
diff
changeset
|
1029 |
*** Isar *** |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67615
diff
changeset
|
1030 |
|
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67615
diff
changeset
|
1031 |
* Command 'interpret' no longer exposes resulting theorems as literal |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67615
diff
changeset
|
1032 |
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:
67615
diff
changeset
|
1033 |
improves modularity of proofs and scalability of locale interpretation. |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67615
diff
changeset
|
1034 |
Rare INCOMPATIBILITY, need to refer to explicitly named facts instead |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67615
diff
changeset
|
1035 |
(e.g. use 'find_theorems' or 'try' to figure this out). |
2d9918f5b33c
command 'interpret' no longer exposes resulting theorems as literal facts;
wenzelm
parents:
67615
diff
changeset
|
1036 |
|
68394 | 1037 |
* The old 'def' command has been discontinued (legacy since |
1038 |
Isbelle2016-1). INCOMPATIBILITY, use 'define' instead -- usually with |
|
1039 |
object-logic equality or equivalence. |
|
1040 |
||
68543 | 1041 |
|
1042 |
*** Pure *** |
|
1043 |
||
1044 |
* The inner syntax category "sort" now includes notation "_" for the |
|
1045 |
dummy sort: it is effectively ignored in type-inference. |
|
1046 |
||
67740 | 1047 |
* Rewrites clauses (keyword 'rewrites') were moved into the locale |
68394 | 1048 |
expression syntax, where they are part of locale instances. In |
1049 |
interpretation commands rewrites clauses now need to occur before 'for' |
|
68470
aad109fde9ec
In interpretation commands, clarify what to do with definitions immediately subject to rewriting.
ballarin
parents:
68465
diff
changeset
|
1050 |
and 'defines'. Rare INCOMPATIBILITY; definitions immediately subject to |
aad109fde9ec
In interpretation commands, clarify what to do with definitions immediately subject to rewriting.
ballarin
parents:
68465
diff
changeset
|
1051 |
rewriting may need to be pulled up into the surrounding theory. |
68394 | 1052 |
|
1053 |
* For 'rewrites' clauses, if activating a locale instance fails, fall |
|
1054 |
back to reading the clause first. This helps avoid qualification of |
|
67764 | 1055 |
locale instances where the qualifier's sole purpose is avoiding |
1056 |
duplicate constant declarations. |
|
67741
d5a7f2c54655
Fall back to reading rewrite morphism first if activation fails without it.
ballarin
parents:
67740
diff
changeset
|
1057 |
|
68543 | 1058 |
* Proof method "simp" now supports a new modifier "flip:" followed by a |
1059 |
list of theorems. Each of these theorems is removed from the simpset |
|
1060 |
(without warning if it is not there) and the symmetric version of the |
|
1061 |
theorem (i.e. lhs and rhs exchanged) is added to the simpset. For "auto" |
|
1062 |
and friends the modifier is "simp flip:". |
|
67719 | 1063 |
|
1064 |
||
66663 | 1065 |
*** HOL *** |
1066 |
||
68568 | 1067 |
* Sledgehammer: bundled version of "vampire" (for non-commercial users) |
1068 |
helps to avoid fragility of "remote_vampire" service. |
|
1069 |
||
68028 | 1070 |
* Clarified relationship of characters, strings and code generation: |
1071 |
||
68394 | 1072 |
- Type "char" is now a proper datatype of 8-bit values. |
1073 |
||
1074 |
- Conversions "nat_of_char" and "char_of_nat" are gone; use more |
|
1075 |
general conversions "of_char" and "char_of" with suitable type |
|
1076 |
constraints instead. |
|
1077 |
||
1078 |
- The zero character is just written "CHR 0x00", not "0" any longer. |
|
1079 |
||
1080 |
- Type "String.literal" (for code generation) is now isomorphic to |
|
1081 |
lists of 7-bit (ASCII) values; concrete values can be written as |
|
1082 |
"STR ''...''" for sequences of printable characters and "STR 0x..." |
|
1083 |
for one single ASCII code point given as hexadecimal numeral. |
|
1084 |
||
1085 |
- Type "String.literal" supports concatenation "... + ..." for all |
|
1086 |
standard target languages. |
|
1087 |
||
1088 |
- Theory HOL-Library.Code_Char is gone; study the explanations |
|
1089 |
concerning "String.literal" in the tutorial on code generation to |
|
1090 |
get an idea how target-language string literals can be converted to |
|
1091 |
HOL string values and vice versa. |
|
1092 |
||
1093 |
- Session Imperative-HOL: operation "raise" directly takes a value of |
|
1094 |
type "String.literal" as argument, not type "string". |
|
1095 |
||
1096 |
INCOMPATIBILITY. |
|
1097 |
||
1098 |
* Code generation: Code generation takes an explicit option |
|
1099 |
"case_insensitive" to accomodate case-insensitive file systems. |
|
1100 |
||
1101 |
* Abstract bit operations as part of Main: push_bit, take_bit, drop_bit. |
|
1102 |
||
1103 |
* New, more general, axiomatization of complete_distrib_lattice. The |
|
1104 |
former axioms: |
|
1105 |
||
1106 |
"sup x (Inf X) = Inf (sup x ` X)" and "inf x (Sup X) = Sup (inf x ` X)" |
|
1107 |
||
1108 |
are replaced by: |
|
1109 |
||
1110 |
"Inf (Sup ` A) <= Sup (Inf ` {f ` A | f . (! Y \<in> A . f Y \<in> Y)})" |
|
1111 |
||
1112 |
The instantiations of sets and functions as complete_distrib_lattice are |
|
1113 |
moved to Hilbert_Choice.thy because their proofs need the Hilbert choice |
|
1114 |
operator. The dual of this property is also proved in theory |
|
1115 |
HOL.Hilbert_Choice. |
|
67831
07f5588f2735
Removed stray 'sledgehammer' invocation
Manuel Eberl <eberlm@in.tum.de>
parents:
67830
diff
changeset
|
1116 |
|
67999
1b05f74f2e5f
tidying up including contributions from Paulo EmÃlio de Vilhena
paulson <lp15@cam.ac.uk>
parents:
67994
diff
changeset
|
1117 |
* New syntax for the minimum/maximum of a function over a finite set: |
68394 | 1118 |
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:
67994
diff
changeset
|
1119 |
|
67525
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
1120 |
* Clarifed theorem names: |
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
1121 |
|
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
1122 |
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
|
1123 |
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
|
1124 |
|
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
1125 |
Minor INCOMPATIBILITY. |
5d04d7bcd5f6
avoid concrete (anti)mono in theorem names since it could be the other way round
haftmann
parents:
67510
diff
changeset
|
1126 |
|
66663 | 1127 |
* SMT module: |
68394 | 1128 |
|
66663 | 1129 |
- The 'smt_oracle' option is now necessary when using the 'smt' method |
66664 | 1130 |
with a solver other than Z3. INCOMPATIBILITY. |
68394 | 1131 |
|
66844 | 1132 |
- The encoding to first-order logic is now more complete in the |
1133 |
presence of higher-order quantifiers. An 'smt_explicit_application' |
|
1134 |
option has been added to control this. INCOMPATIBILITY. |
|
1135 |
||
66804
3f9bb52082c4
avoid name clashes on interpretation of abstract locales
haftmann
parents:
66803
diff
changeset
|
1136 |
* Facts sum.commute(_restrict) and prod.commute(_restrict) renamed to |
66844 | 1137 |
sum.swap(_restrict) and prod.swap(_restrict), to avoid name clashes on |
1138 |
interpretation of abstract locales. INCOMPATIBILITY. |
|
66804
3f9bb52082c4
avoid name clashes on interpretation of abstract locales
haftmann
parents:
66803
diff
changeset
|
1139 |
|
68394 | 1140 |
* Predicate coprime is now a real definition, not a mere abbreviation. |
1141 |
INCOMPATIBILITY. |
|
1142 |
||
66803 | 1143 |
* Predicate pairwise_coprime abolished, use "pairwise coprime" instead. |
1144 |
INCOMPATIBILITY. |
|
1145 |
||
68373 | 1146 |
* The relator rel_filter on filters has been strengthened to its |
68394 | 1147 |
canonical categorical definition with better properties. |
1148 |
INCOMPATIBILITY. |
|
67615
1d005f514417
strengthen filter relator to canonical categorical definition with better properties
Andreas Lochbihler
parents:
67591
diff
changeset
|
1149 |
|
68071
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67999
diff
changeset
|
1150 |
* 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
|
1151 |
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
|
1152 |
Renamed: |
68394 | 1153 |
|
1154 |
span_inc ~> span_superset |
|
1155 |
span_superset ~> span_base |
|
1156 |
span_eq ~> span_eq_iff |
|
1157 |
||
1158 |
INCOMPATIBILITY. |
|
66844 | 1159 |
|
66937 | 1160 |
* Class linordered_semiring_1 covers zero_less_one also, ruling out |
1161 |
pathologic instances. Minor INCOMPATIBILITY. |
|
1162 |
||
68394 | 1163 |
* Theory HOL.List: functions "sorted_wrt" and "sorted" now compare every |
1164 |
element in a list to all following elements, not just the next one. |
|
1165 |
||
1166 |
* Theory HOL.List syntax: |
|
1167 |
||
1168 |
- filter-syntax "[x <- xs. P]" is no longer output syntax, but only |
|
1169 |
input syntax |
|
1170 |
||
1171 |
- list comprehension syntax now supports tuple patterns in "pat <- xs" |
|
68250
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68247
diff
changeset
|
1172 |
|
68450 | 1173 |
* Theory Map: "empty" must now be qualified as "Map.empty". |
1174 |
||
67051 | 1175 |
* Removed nat-int transfer machinery. Rare INCOMPATIBILITY. |
1176 |
||
68103 | 1177 |
* Fact mod_mult_self4 (on nat) renamed to Suc_mod_mult_self3, to avoid |
1178 |
clash with fact mod_mult_self4 (on more generic semirings). |
|
1179 |
INCOMPATIBILITY. |
|
1180 |
||
1181 |
* Eliminated some theorem aliasses: |
|
1182 |
even_times_iff ~> even_mult_iff |
|
1183 |
mod_2_not_eq_zero_eq_one_nat ~> not_mod_2_eq_0_eq_1 |
|
1184 |
even_of_nat ~> even_int_iff |
|
1185 |
||
1186 |
INCOMPATIBILITY. |
|
1187 |
||
68157 | 1188 |
* Eliminated some theorem duplicate variations: |
68394 | 1189 |
|
1190 |
- dvd_eq_mod_eq_0_numeral can be replaced by dvd_eq_mod_eq_0 |
|
1191 |
- mod_Suc_eq_Suc_mod can be replaced by mod_Suc |
|
1192 |
- mod_Suc_eq_Suc_mod [symmetrict] can be replaced by mod_simps |
|
1193 |
- mod_eq_0_iff can be replaced by mod_eq_0_iff_dvd and dvd_def |
|
1194 |
- the witness of mod_eqD can be given directly as "_ div _" |
|
68157 | 1195 |
|
1196 |
INCOMPATIBILITY. |
|
1197 |
||
68260 | 1198 |
* Classical setup: Assumption "m mod d = 0" (for m d :: nat) is no |
68394 | 1199 |
longer aggresively destroyed to "\<exists>q. m = d * q". INCOMPATIBILITY, adding |
1200 |
"elim!: dvd" to classical proof methods in most situations restores |
|
1201 |
broken proofs. |
|
1202 |
||
1203 |
* Theory HOL-Library.Conditional_Parametricity provides command |
|
1204 |
'parametric_constant' for proving parametricity of non-recursive |
|
1205 |
definitions. For constants that are not fully parametric the command |
|
1206 |
will infer conditions on relations (e.g., bi_unique, bi_total, or type |
|
1207 |
class conditions such as "respects 0") sufficient for parametricity. See |
|
1208 |
theory HOL-ex.Conditional_Parametricity_Examples for some examples. |
|
1209 |
||
1210 |
* Theory HOL-Library.Code_Lazy provides a new preprocessor for the code |
|
1211 |
generator to generate code for algebraic types with lazy evaluation |
|
68639 | 1212 |
semantics even in call-by-value target languages. See the theories |
68647 | 1213 |
HOL-ex.Code_Lazy_Demo and HOL-Codegenerator_Test.Code_Lazy_Test for some |
1214 |
examples. |
|
68394 | 1215 |
|
1216 |
* Theory HOL-Library.Landau_Symbols has been moved here from AFP. |
|
1217 |
||
1218 |
* Theory HOL-Library.Old_Datatype no longer provides the legacy command |
|
1219 |
'old_datatype'. INCOMPATIBILITY. |
|
1220 |
||
1221 |
* Theory HOL-Computational_Algebra.Polynomial_Factorial does not provide |
|
1222 |
instances of rat, real, complex as factorial rings etc. Import |
|
1223 |
HOL-Computational_Algebra.Field_as_Ring explicitly in case of need. |
|
1224 |
INCOMPATIBILITY. |
|
1225 |
||
1226 |
* Session HOL-Algebra: renamed (^) to [^] to avoid conflict with new |
|
1227 |
infix/prefix notation. |
|
1228 |
||
68543 | 1229 |
* Session HOL-Algebra: revamped with much new material. The set of |
1230 |
isomorphisms between two groups is now denoted iso rather than iso_set. |
|
1231 |
INCOMPATIBILITY. |
|
1232 |
||
1233 |
* Session HOL-Analysis: the Arg function now respects the same interval |
|
1234 |
as Ln, namely (-pi,pi]; the old Arg function has been renamed Arg2pi. |
|
68495
d4312962161a
Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents:
68484
diff
changeset
|
1235 |
INCOMPATIBILITY. |
d4312962161a
Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents:
68484
diff
changeset
|
1236 |
|
68548 | 1237 |
* Session HOL-Analysis: the functions zorder, zer_poly, porder and |
1238 |
pol_poly have been redefined. All related lemmas have been reworked. |
|
68532 | 1239 |
INCOMPATIBILITY. |
1240 |
||
68394 | 1241 |
* Session HOL-Analysis: infinite products, Moebius functions, the |
1242 |
Riemann mapping theorem, the Vitali covering theorem, |
|
1243 |
change-of-variables results for integration and measures. |
|
68260 | 1244 |
|
68647 | 1245 |
* Session HOL-Real_Asymp: proof method "real_asymp" proves asymptotics |
1246 |
or real-valued functions (limits, "Big-O", etc.) automatically. |
|
68681 | 1247 |
See also ~~/src/HOL/Real_Asymp/Manual for some documentation. |
68647 | 1248 |
|
68545 | 1249 |
* Session HOL-Types_To_Sets: more tool support (unoverload_type combines |
1250 |
internalize_sorts and unoverload) and larger experimental application |
|
1251 |
(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
|
1252 |
|
66653 | 1253 |
|
68121 | 1254 |
*** ML *** |
1255 |
||
1256 |
* Operation Export.export emits theory exports (arbitrary blobs), which |
|
70142 | 1257 |
are stored persistently in the session build database. |
68121 | 1258 |
|
68281 | 1259 |
* Command 'ML_export' exports ML toplevel bindings to the global |
1260 |
bootstrap environment of the ML process. This allows ML evaluation |
|
1261 |
without a formal theory context, e.g. in command-line tools like |
|
1262 |
"isabelle process". |
|
1263 |
||
68121 | 1264 |
|
66729 | 1265 |
*** System *** |
1266 |
||
67088 | 1267 |
* Mac OS X 10.10 Yosemite is now the baseline version; Mavericks is no |
1268 |
longer supported. |
|
1269 |
||
68394 | 1270 |
* Linux and Windows/Cygwin is for x86_64 only, old 32bit platform |
1271 |
support has been discontinued. |
|
1272 |
||
66906 | 1273 |
* Java runtime is for x86_64 only. Corresponding Isabelle settings have |
1274 |
been renamed to ISABELLE_TOOL_JAVA_OPTIONS and JEDIT_JAVA_OPTIONS, |
|
1275 |
instead of former 32/64 variants. INCOMPATIBILITY. |
|
1276 |
||
68004 | 1277 |
* Old settings ISABELLE_PLATFORM and ISABELLE_WINDOWS_PLATFORM should be |
1278 |
phased out due to unclear preference of 32bit vs. 64bit architecture. |
|
1279 |
Explicit GNU bash expressions are now preferred, for example (with |
|
1280 |
quotes): |
|
1281 |
||
1282 |
#Posix executables (Unix or Cygwin), with preference for 64bit |
|
1283 |
"${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM32}" |
|
1284 |
||
1285 |
#native Windows or Unix executables, with preference for 64bit |
|
1286 |
"${ISABELLE_WINDOWS_PLATFORM64:-${ISABELLE_WINDOWS_PLATFORM32:-${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM32}}}" |
|
1287 |
||
1288 |
#native Windows (32bit) or Unix executables (preference for 64bit) |
|
1289 |
"${ISABELLE_WINDOWS_PLATFORM32:-${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM32}}" |
|
1290 |
||
66745 | 1291 |
* Command-line tool "isabelle build" supports new options: |
1292 |
- option -B NAME: include session NAME and all descendants |
|
1293 |
- option -S: only observe changes of sources, not heap images |
|
66841 | 1294 |
- option -f: forces a fresh build |
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66729
diff
changeset
|
1295 |
|
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68690
diff
changeset
|
1296 |
* 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
|
1297 |
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
|
1298 |
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
|
1299 |
only. |
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68690
diff
changeset
|
1300 |
|
66843 | 1301 |
* Command-line tool "isabelle build" takes "condition" options with the |
1302 |
corresponding environment values into account, when determining the |
|
1303 |
up-to-date status of a session. |
|
1304 |
||
68394 | 1305 |
* The command-line tool "dump" dumps information from the cumulative |
1306 |
PIDE session database: many sessions may be loaded into a given logic |
|
1307 |
image, results from all loaded theories are written to the output |
|
1308 |
directory. |
|
1309 |
||
66851
c75769065548
more informative Imports.Report with actual session imports (minimized);
wenzelm
parents:
66844
diff
changeset
|
1310 |
* 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
|
1311 |
imports. This helps to minimize the session dependency graph. |
c75769065548
more informative Imports.Report with actual session imports (minimized);
wenzelm
parents:
66844
diff
changeset
|
1312 |
|
70142 | 1313 |
* The command-line tool "export" and 'export_files' in session ROOT |
1314 |
entries retrieve theory exports from the session build database. |
|
68394 | 1315 |
|
1316 |
* The command-line tools "isabelle server" and "isabelle client" provide |
|
1317 |
access to the Isabelle Server: it supports responsive session management |
|
1318 |
and concurrent use of theories, based on Isabelle/PIDE infrastructure. |
|
1319 |
See also the "system" manual. |
|
1320 |
||
1321 |
* The command-line tool "isabelle update_comments" normalizes formal |
|
1322 |
comments in outer syntax as follows: \<comment> \<open>text\<close> (whith a single space to |
|
1323 |
approximate the appearance in document output). This is more specific |
|
1324 |
than former "isabelle update_cartouches -c": the latter tool option has |
|
1325 |
been discontinued. |
|
1326 |
||
1327 |
* The command-line tool "isabelle mkroot" now always produces a document |
|
1328 |
outline: its options have been adapted accordingly. INCOMPATIBILITY. |
|
1329 |
||
1330 |
* The command-line tool "isabelle mkroot -I" initializes a Mercurial |
|
1331 |
repository for the generated session files. |
|
1332 |
||
68523
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1333 |
* Settings ISABELLE_HEAPS + ISABELLE_BROWSER_INFO (or |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1334 |
ISABELLE_HEAPS_SYSTEM + ISABELLE_BROWSER_INFO_SYSTEM in "system build |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1335 |
mode") determine the directory locations of the main build artefacts -- |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1336 |
instead of hard-wired directories in ISABELLE_HOME_USER (or |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1337 |
ISABELLE_HOME). |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1338 |
|
68394 | 1339 |
* Settings ISABELLE_PATH and ISABELLE_OUTPUT have been discontinued: |
1340 |
heap images and session databases are always stored in |
|
68523
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1341 |
$ISABELLE_HEAPS/$ML_IDENTIFIER (command-line default) or |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68522
diff
changeset
|
1342 |
$ISABELLE_HEAPS_SYSTEM/$ML_IDENTIFIER (main Isabelle application or |
68394 | 1343 |
"isabelle jedit -s" or "isabelle build -s"). |
67099 | 1344 |
|
67199 | 1345 |
* ISABELLE_LATEX and ISABELLE_PDFLATEX now include platform-specific |
1346 |
options for improved error reporting. Potential INCOMPATIBILITY with |
|
1347 |
unusual LaTeX installations, may have to adapt these settings. |
|
1348 |
||
68394 | 1349 |
* Update to Poly/ML 5.7.1 with slightly improved performance and PIDE |
1350 |
markup for identifier bindings. It now uses The GNU Multiple Precision |
|
67591 | 1351 |
Arithmetic Library (libgmp) on all platforms, notably Mac OS X with |
1352 |
32/64 bit. |
|
1353 |
||
67099 | 1354 |
|
66729 | 1355 |
|
66472 | 1356 |
New in Isabelle2017 (October 2017) |
1357 |
---------------------------------- |
|
64439 | 1358 |
|
64986 | 1359 |
*** General *** |
1360 |
||
66238 | 1361 |
* Experimental support for Visual Studio Code (VSCode) as alternative |
1362 |
Isabelle/PIDE front-end, see also |
|
66601 | 1363 |
https://marketplace.visualstudio.com/items?itemName=makarius.Isabelle2017 |
66238 | 1364 |
|
1365 |
VSCode is a new type of application that continues the concepts of |
|
1366 |
"programmer's editor" and "integrated development environment" towards |
|
1367 |
fully semantic editing and debugging -- in a relatively light-weight |
|
1368 |
manner. Thus it fits nicely on top of the Isabelle/PIDE infrastructure. |
|
1369 |
Technically, VSCode is based on the Electron application framework |
|
1370 |
(Node.js + Chromium browser + V8), which is implemented in JavaScript |
|
1371 |
and TypeScript, while Isabelle/VSCode mainly consists of Isabelle/Scala |
|
1372 |
modules around a Language Server implementation. |
|
1373 |
||
65504 | 1374 |
* Theory names are qualified by the session name that they belong to. |
66454 | 1375 |
This affects imports, but not the theory name space prefix (which is |
1376 |
just the theory base name as before). |
|
1377 |
||
1378 |
In order to import theories from other sessions, the ROOT file format |
|
1379 |
provides a new 'sessions' keyword. In contrast, a theory that is |
|
1380 |
imported in the old-fashioned manner via an explicit file-system path |
|
66472 | 1381 |
belongs to the current session, and might cause theory name conflicts |
66454 | 1382 |
later on. Theories that are imported from other sessions are excluded |
1383 |
from the current session document. The command-line tool "isabelle |
|
1384 |
imports" helps to update theory imports. |
|
1385 |
||
65451 | 1386 |
* The main theory entry points for some non-HOL sessions have changed, |
1387 |
to avoid confusion with the global name "Main" of the session HOL. This |
|
1388 |
leads to the follow renamings: |
|
1389 |
||
1390 |
CTT/Main.thy ~> CTT/CTT.thy |
|
1391 |
ZF/Main.thy ~> ZF/ZF.thy |
|