author | wenzelm |
Tue, 26 Apr 2016 22:39:17 +0200 | |
changeset 63059 | 3f577308551e |
parent 63043 | df83a961d3a8 |
child 63066 | 4b0ad6c5d1ca |
permissions | -rw-r--r-- |
57491 | 1 |
Isabelle NEWS -- history of user-relevant changes |
2 |
================================================= |
|
2553 | 3 |
|
62114
a7cf464933f7
generate HTML version of NEWS, with proper symbol rendering;
wenzelm
parents:
62111
diff
changeset
|
4 |
(Note: Isabelle/jEdit shows a tree-view of the NEWS file in Sidekick.) |
60006 | 5 |
|
60331 | 6 |
|
62216 | 7 |
New in this Isabelle version |
8 |
---------------------------- |
|
9 |
||
62440 | 10 |
*** General *** |
11 |
||
62958
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
12 |
* Type-inference improves sorts of newly introduced type variables for |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
13 |
the object-logic, using its base sort (i.e. HOL.type for Isabelle/HOL). |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
14 |
Thus terms like "f x" or "\<And>x. P x" without any further syntactic context |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
15 |
produce x::'a::type in HOL instead of x::'a::{} in Pure. Rare |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
16 |
INCOMPATIBILITY, need to provide explicit type constraints for Pure |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
17 |
types where this is really intended. |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
18 |
|
62969 | 19 |
* Simplified outer syntax: uniform category "name" includes long |
20 |
identifiers. Former "xname" / "nameref" / "name reference" has been |
|
21 |
discontinued. |
|
22 |
||
62807 | 23 |
* Mixfix annotations support general block properties, with syntax |
24 |
"(\<open>x=a y=b z \<dots>\<close>". Notable property names are "indent", "consistent", |
|
25 |
"unbreakable", "markup". The existing notation "(DIGITS" is equivalent |
|
26 |
to "(\<open>indent=DIGITS\<close>". The former notation "(00" for unbreakable blocks |
|
27 |
is superseded by "(\<open>unbreabable\<close>" --- rare INCOMPATIBILITY. |
|
62789 | 28 |
|
62440 | 29 |
* New symbol \<circle>, e.g. for temporal operator. |
30 |
||
62453 | 31 |
* Old 'header' command is no longer supported (legacy since |
32 |
Isabelle2015). |
|
33 |
||
62440 | 34 |
|
62904 | 35 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
36 |
||
63022 | 37 |
* IDE support for the Isabelle/Pure bootstrap process, with the |
38 |
following independent stages: |
|
39 |
||
40 |
src/Pure/ROOT0.ML |
|
41 |
src/Pure/ROOT.ML |
|
42 |
src/Pure/Pure.thy |
|
43 |
src/Pure/ML_Bootstrap.thy |
|
44 |
||
45 |
The ML ROOT files act like quasi-theories in the context of theory |
|
46 |
ML_Bootstrap: this allows continuous checking of all loaded ML files. |
|
47 |
The theory files are presented with a modified header to import Pure |
|
48 |
from the running Isabelle instance. Results from changed versions of |
|
49 |
each stage are *not* propagated to the next stage, and isolated from the |
|
50 |
actual Isabelle/Pure that runs the IDE itself. The sequential |
|
51 |
dependencies of the above files are only relevant for batch build. |
|
62904 | 52 |
|
62987
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62969
diff
changeset
|
53 |
* Highlighting of entity def/ref positions wrt. cursor. |
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62969
diff
changeset
|
54 |
|
63032
e0fa59bbc956
reactivated other_id reports (see also db929027e701, 8eda56033203);
wenzelm
parents:
63022
diff
changeset
|
55 |
* Document markup works across multiple Isar commands, e.g. the results |
e0fa59bbc956
reactivated other_id reports (see also db929027e701, 8eda56033203);
wenzelm
parents:
63022
diff
changeset
|
56 |
established at the end of a proof are properly identified in the theorem |
e0fa59bbc956
reactivated other_id reports (see also db929027e701, 8eda56033203);
wenzelm
parents:
63022
diff
changeset
|
57 |
statement. |
e0fa59bbc956
reactivated other_id reports (see also db929027e701, 8eda56033203);
wenzelm
parents:
63022
diff
changeset
|
58 |
|
62904 | 59 |
|
62312
5e5a881ebc12
command '\<proof>' is an alias for 'sorry', with different typesetting;
wenzelm
parents:
62284
diff
changeset
|
60 |
*** Isar *** |
5e5a881ebc12
command '\<proof>' is an alias for 'sorry', with different typesetting;
wenzelm
parents:
62284
diff
changeset
|
61 |
|
63039 | 62 |
* Command 'define' introduces a local (non-polymorphic) definition, with |
63 |
optional abstraction over local parameters. The syntax resembles |
|
63043 | 64 |
'definition' and 'obtain'. It fits better into the Isar language than |
65 |
old 'def', which is now a legacy feature. |
|
63039 | 66 |
|
63059
3f577308551e
'obtain' supports structured statements (similar to 'define');
wenzelm
parents:
63043
diff
changeset
|
67 |
* Command 'obtain' supports structured statements with 'if' / 'for' |
3f577308551e
'obtain' supports structured statements (similar to 'define');
wenzelm
parents:
63043
diff
changeset
|
68 |
context. |
3f577308551e
'obtain' supports structured statements (similar to 'define');
wenzelm
parents:
63043
diff
changeset
|
69 |
|
62312
5e5a881ebc12
command '\<proof>' is an alias for 'sorry', with different typesetting;
wenzelm
parents:
62284
diff
changeset
|
70 |
* Command '\<proof>' is an alias for 'sorry', with different |
5e5a881ebc12
command '\<proof>' is an alias for 'sorry', with different typesetting;
wenzelm
parents:
62284
diff
changeset
|
71 |
typesetting. E.g. to produce proof holes in examples and documentation. |
62216 | 72 |
|
62939 | 73 |
* The old proof method "default" has been removed (legacy since |
74 |
Isabelle2016). INCOMPATIBILITY, use "standard" instead. |
|
75 |
||
62216 | 76 |
|
62327 | 77 |
*** HOL *** |
78 |
||
62522 | 79 |
* New abbreviations for negated existence (but not bounded existence): |
80 |
||
81 |
\<nexists>x. P x \<equiv> \<not> (\<exists>x. P x) |
|
82 |
\<nexists>!x. P x \<equiv> \<not> (\<exists>!x. P x) |
|
83 |
||
62521 | 84 |
* The print mode "HOL" for ASCII syntax of binders "!", "?", "?!", "@" |
85 |
has been removed for output. It is retained for input only, until it is |
|
86 |
eliminated altogether. |
|
87 |
||
62327 | 88 |
* (Co)datatype package: |
62693 | 89 |
- New commands for defining corecursive functions and reasoning about |
90 |
them in "~~/src/HOL/Library/BNF_Corec.thy": 'corec', 'corecursive', |
|
91 |
'friend_of_corec', and 'corecursion_upto'; and 'corec_unique' proof |
|
62842 | 92 |
method. See 'isabelle doc corec'. |
62693 | 93 |
- The predicator :: ('a => bool) => 'a F => bool is now a first-class |
62332 | 94 |
citizen in bounded natural functors |
62693 | 95 |
- 'primrec' now allows nested calls through the predicator in addition |
62327 | 96 |
to the map function. |
62693 | 97 |
- 'bnf' automatically discharges reflexive proof obligations |
98 |
- 'bnf' outputs a slightly modified proof obligation expressing rel in |
|
62332 | 99 |
terms of map and set |
100 |
(not giving a specification for rel makes this one reflexive) |
|
62693 | 101 |
- 'bnf' outputs a new proof obligation expressing pred in terms of set |
62332 | 102 |
(not giving a specification for pred makes this one reflexive) |
62693 | 103 |
INCOMPATIBILITY: manual 'bnf' declarations may need adjustment |
62335 | 104 |
- Renamed lemmas: |
105 |
rel_prod_apply ~> rel_prod_inject |
|
106 |
pred_prod_apply ~> pred_prod_inject |
|
107 |
INCOMPATIBILITY. |
|
62536
656e9653c645
made 'size' plugin compatible with locales again (and added regression test)
blanchet
parents:
62525
diff
changeset
|
108 |
- The "size" plugin has been made compatible again with locales. |
62327 | 109 |
|
62407 | 110 |
* Renamed split_if -> if_split and split_if_asm -> if_split_asm to |
111 |
resemble the f.split naming convention, INCOMPATIBILITY. |
|
62396 | 112 |
|
62597 | 113 |
* Characters (type char) are modelled as finite algebraic type |
114 |
corresponding to {0..255}. |
|
115 |
||
116 |
- Logical representation: |
|
117 |
* 0 is instantiated to the ASCII zero character. |
|
62645
a2351f82bc48
eliminated spurious Unicode, which is in conflict with Isabelle symbol interpretation;
wenzelm
parents:
62642
diff
changeset
|
118 |
* All other characters are represented as "Char n" |
62597 | 119 |
with n being a raw numeral expression less than 256. |
62645
a2351f82bc48
eliminated spurious Unicode, which is in conflict with Isabelle symbol interpretation;
wenzelm
parents:
62642
diff
changeset
|
120 |
* Expressions of the form "Char n" with n greater than 255 |
62597 | 121 |
are non-canonical. |
122 |
- Printing and parsing: |
|
62645
a2351f82bc48
eliminated spurious Unicode, which is in conflict with Isabelle symbol interpretation;
wenzelm
parents:
62642
diff
changeset
|
123 |
* Printable characters are printed and parsed as "CHR ''\<dots>''" |
62597 | 124 |
(as before). |
62645
a2351f82bc48
eliminated spurious Unicode, which is in conflict with Isabelle symbol interpretation;
wenzelm
parents:
62642
diff
changeset
|
125 |
* The ASCII zero character is printed and parsed as "0". |
62678 | 126 |
* All other canonical characters are printed as "CHR 0xXX" |
127 |
with XX being the hexadecimal character code. "CHR n" |
|
62597 | 128 |
is parsable for every numeral expression n. |
62598 | 129 |
* Non-canonical characters have no special syntax and are |
62597 | 130 |
printed as their logical representation. |
131 |
- Explicit conversions from and to the natural numbers are |
|
132 |
provided as char_of_nat, nat_of_char (as before). |
|
133 |
- The auxiliary nibble type has been discontinued. |
|
134 |
||
135 |
INCOMPATIBILITY. |
|
136 |
||
62430
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
137 |
* Multiset membership is now expressed using set_mset rather than count. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
138 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
139 |
- Expressions "count M a > 0" and similar simplify to membership |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
140 |
by default. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
141 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
142 |
- Converting between "count M a = 0" and non-membership happens using |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
143 |
equations count_eq_zero_iff and not_in_iff. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
144 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
145 |
- Rules count_inI and in_countE obtain facts of the form |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
146 |
"count M a = n" from membership. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
147 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
148 |
- Rules count_in_diffI and in_diff_countE obtain facts of the form |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
149 |
"count M a = n + count N a" from membership on difference sets. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
150 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
151 |
INCOMPATIBILITY. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
152 |
|
62343
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62335
diff
changeset
|
153 |
* Compound constants INFIMUM and SUPREMUM are mere abbreviations now. |
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62335
diff
changeset
|
154 |
INCOMPATIBILITY. |
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62335
diff
changeset
|
155 |
|
62408
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62407
diff
changeset
|
156 |
* More complex analysis including Cauchy's inequality, Liouville theorem, |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62407
diff
changeset
|
157 |
open mapping theorem, maximum modulus principle, Schwarz Lemma. |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62407
diff
changeset
|
158 |
|
62358 | 159 |
* "Gcd (f ` A)" and "Lcm (f ` A)" are printed with optional |
160 |
comprehension-like syntax analogously to "Inf (f ` A)" and "Sup (f ` A)". |
|
161 |
||
62345 | 162 |
* Class semiring_Lcd merged into semiring_Gcd. INCOMPATIBILITY. |
163 |
||
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
164 |
* The type class ordered_comm_monoid_add is now called |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
165 |
ordered_cancel_comm_monoid_add. A new type class ordered_comm_monoid_add is |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
166 |
introduced as the combination of ordered_ab_semigroup_add + comm_monoid_add. |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
167 |
INCOMPATIBILITY. |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
168 |
|
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
169 |
* Introduced the type classes canonically_ordered_comm_monoid_add and dioid. |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
170 |
|
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
171 |
* Added topological_monoid |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
172 |
|
62652
7248d106c607
move Complete_Partial_Orders2 from AFP/Coinductive to HOL/Library
Andreas Lochbihler
parents:
62645
diff
changeset
|
173 |
* Library/Complete_Partial_Order2.thy provides reasoning support for |
7248d106c607
move Complete_Partial_Orders2 from AFP/Coinductive to HOL/Library
Andreas Lochbihler
parents:
62645
diff
changeset
|
174 |
proofs about monotonicity and continuity in chain-complete partial |
7248d106c607
move Complete_Partial_Orders2 from AFP/Coinductive to HOL/Library
Andreas Lochbihler
parents:
62645
diff
changeset
|
175 |
orders and about admissibility conditions for fixpoint inductions. |
7248d106c607
move Complete_Partial_Orders2 from AFP/Coinductive to HOL/Library
Andreas Lochbihler
parents:
62645
diff
changeset
|
176 |
|
62352
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
177 |
* Library/Polynomial.thy contains also derivation of polynomials |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
178 |
but not gcd/lcm on polynomials over fields. This has been moved |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
179 |
to a separate theory Library/Polynomial_GCD_euclidean.thy, to |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
180 |
pave way for a possible future different type class instantiation |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
181 |
for polynomials over factorial rings. INCOMPATIBILITY. |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
182 |
|
62348 | 183 |
* Dropped various legacy fact bindings, whose replacements are often |
184 |
of a more general type also: |
|
185 |
lcm_left_commute_nat ~> lcm.left_commute |
|
186 |
lcm_left_commute_int ~> lcm.left_commute |
|
187 |
gcd_left_commute_nat ~> gcd.left_commute |
|
188 |
gcd_left_commute_int ~> gcd.left_commute |
|
189 |
gcd_greatest_iff_nat ~> gcd_greatest_iff |
|
190 |
gcd_greatest_iff_int ~> gcd_greatest_iff |
|
191 |
coprime_dvd_mult_nat ~> coprime_dvd_mult |
|
192 |
coprime_dvd_mult_int ~> coprime_dvd_mult |
|
193 |
zpower_numeral_even ~> power_numeral_even |
|
194 |
gcd_mult_cancel_nat ~> gcd_mult_cancel |
|
195 |
gcd_mult_cancel_int ~> gcd_mult_cancel |
|
196 |
div_gcd_coprime_nat ~> div_gcd_coprime |
|
197 |
div_gcd_coprime_int ~> div_gcd_coprime |
|
198 |
zpower_numeral_odd ~> power_numeral_odd |
|
199 |
zero_less_int_conv ~> of_nat_0_less_iff |
|
200 |
gcd_greatest_nat ~> gcd_greatest |
|
201 |
gcd_greatest_int ~> gcd_greatest |
|
202 |
coprime_mult_nat ~> coprime_mult |
|
203 |
coprime_mult_int ~> coprime_mult |
|
204 |
lcm_commute_nat ~> lcm.commute |
|
205 |
lcm_commute_int ~> lcm.commute |
|
206 |
int_less_0_conv ~> of_nat_less_0_iff |
|
207 |
gcd_commute_nat ~> gcd.commute |
|
208 |
gcd_commute_int ~> gcd.commute |
|
209 |
Gcd_insert_nat ~> Gcd_insert |
|
210 |
Gcd_insert_int ~> Gcd_insert |
|
211 |
of_int_int_eq ~> of_int_of_nat_eq |
|
212 |
lcm_least_nat ~> lcm_least |
|
213 |
lcm_least_int ~> lcm_least |
|
214 |
lcm_assoc_nat ~> lcm.assoc |
|
215 |
lcm_assoc_int ~> lcm.assoc |
|
216 |
int_le_0_conv ~> of_nat_le_0_iff |
|
217 |
int_eq_0_conv ~> of_nat_eq_0_iff |
|
218 |
Gcd_empty_nat ~> Gcd_empty |
|
219 |
Gcd_empty_int ~> Gcd_empty |
|
220 |
gcd_assoc_nat ~> gcd.assoc |
|
221 |
gcd_assoc_int ~> gcd.assoc |
|
222 |
zero_zle_int ~> of_nat_0_le_iff |
|
223 |
lcm_dvd2_nat ~> dvd_lcm2 |
|
224 |
lcm_dvd2_int ~> dvd_lcm2 |
|
225 |
lcm_dvd1_nat ~> dvd_lcm1 |
|
226 |
lcm_dvd1_int ~> dvd_lcm1 |
|
227 |
gcd_zero_nat ~> gcd_eq_0_iff |
|
228 |
gcd_zero_int ~> gcd_eq_0_iff |
|
229 |
gcd_dvd2_nat ~> gcd_dvd2 |
|
230 |
gcd_dvd2_int ~> gcd_dvd2 |
|
231 |
gcd_dvd1_nat ~> gcd_dvd1 |
|
232 |
gcd_dvd1_int ~> gcd_dvd1 |
|
233 |
int_numeral ~> of_nat_numeral |
|
234 |
lcm_ac_nat ~> ac_simps |
|
235 |
lcm_ac_int ~> ac_simps |
|
236 |
gcd_ac_nat ~> ac_simps |
|
237 |
gcd_ac_int ~> ac_simps |
|
238 |
abs_int_eq ~> abs_of_nat |
|
239 |
zless_int ~> of_nat_less_iff |
|
240 |
zdiff_int ~> of_nat_diff |
|
241 |
zadd_int ~> of_nat_add |
|
242 |
int_mult ~> of_nat_mult |
|
243 |
int_Suc ~> of_nat_Suc |
|
244 |
inj_int ~> inj_of_nat |
|
245 |
int_1 ~> of_nat_1 |
|
246 |
int_0 ~> of_nat_0 |
|
62353
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
247 |
Lcm_empty_nat ~> Lcm_empty |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
248 |
Lcm_empty_int ~> Lcm_empty |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
249 |
Lcm_insert_nat ~> Lcm_insert |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
250 |
Lcm_insert_int ~> Lcm_insert |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
251 |
comp_fun_idem_gcd_nat ~> comp_fun_idem_gcd |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
252 |
comp_fun_idem_gcd_int ~> comp_fun_idem_gcd |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
253 |
comp_fun_idem_lcm_nat ~> comp_fun_idem_lcm |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
254 |
comp_fun_idem_lcm_int ~> comp_fun_idem_lcm |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
255 |
Lcm_eq_0 ~> Lcm_eq_0_I |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
256 |
Lcm0_iff ~> Lcm_0_iff |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
257 |
Lcm_dvd_int ~> Lcm_least |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
258 |
divides_mult_nat ~> divides_mult |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
259 |
divides_mult_int ~> divides_mult |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
260 |
lcm_0_nat ~> lcm_0_right |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
261 |
lcm_0_int ~> lcm_0_right |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
262 |
lcm_0_left_nat ~> lcm_0_left |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
263 |
lcm_0_left_int ~> lcm_0_left |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
264 |
dvd_gcd_D1_nat ~> dvd_gcdD1 |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
265 |
dvd_gcd_D1_int ~> dvd_gcdD1 |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
266 |
dvd_gcd_D2_nat ~> dvd_gcdD2 |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
267 |
dvd_gcd_D2_int ~> dvd_gcdD2 |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
268 |
coprime_dvd_mult_iff_nat ~> coprime_dvd_mult_iff |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
269 |
coprime_dvd_mult_iff_int ~> coprime_dvd_mult_iff |
62348 | 270 |
realpow_minus_mult ~> power_minus_mult |
271 |
realpow_Suc_le_self ~> power_Suc_le_self |
|
62353
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
272 |
dvd_Gcd, dvd_Gcd_nat, dvd_Gcd_int removed in favour of Gcd_greatest |
62347 | 273 |
INCOMPATIBILITY. |
274 |
||
62479 | 275 |
* Session HOL-NSA has been renamed to HOL-Nonstandard_Analysis. |
276 |
||
62975
1d066f6ab25d
Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents:
62969
diff
changeset
|
277 |
* In HOL-Probability the type of emeasure and nn_integral was changed |
1d066f6ab25d
Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents:
62969
diff
changeset
|
278 |
from ereal to ennreal: |
1d066f6ab25d
Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents:
62969
diff
changeset
|
279 |
emeasure :: 'a measure => 'a set => ennreal |
1d066f6ab25d
Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents:
62969
diff
changeset
|
280 |
nn_integral :: 'a measure => ('a => ennreal) => ennreal |
62976 | 281 |
INCOMPATIBILITY. |
62327 | 282 |
|
62498 | 283 |
*** ML *** |
284 |
||
62861 | 285 |
* The ML function "ML" provides easy access to run-time compilation. |
286 |
This is particularly useful for conditional compilation, without |
|
287 |
requiring separate files. |
|
288 |
||
62851 | 289 |
* Low-level ML system structures (like PolyML and RunCall) are no longer |
62886
72c475e03e22
simplified bootstrap: critical structures remain accessible in ML_Root context;
wenzelm
parents:
62875
diff
changeset
|
290 |
exposed to Isabelle/ML user-space. Potential INCOMPATIBILITY. |
62851 | 291 |
|
62662
291cc01f56f5
@{make_string} is available during Pure bootstrap;
wenzelm
parents:
62645
diff
changeset
|
292 |
* Antiquotation @{make_string} is available during Pure bootstrap -- |
291cc01f56f5
@{make_string} is available during Pure bootstrap;
wenzelm
parents:
62645
diff
changeset
|
293 |
with approximative output quality. |
291cc01f56f5
@{make_string} is available during Pure bootstrap;
wenzelm
parents:
62645
diff
changeset
|
294 |
|
62498 | 295 |
* Option ML_exception_debugger controls detailed exception trace via the |
296 |
Poly/ML debugger. Relevant ML modules need to be compiled beforehand |
|
297 |
with ML_file_debug, or with ML_file and option ML_debugger enabled. Note |
|
298 |
debugger information requires consirable time and space: main |
|
299 |
Isabelle/HOL with full debugger support may need ML_system_64. |
|
300 |
||
62514 | 301 |
* Local_Theory.restore has been renamed to Local_Theory.reset to |
302 |
emphasize its disruptive impact on the cumulative context, notably the |
|
303 |
scope of 'private' or 'qualified' names. Note that Local_Theory.reset is |
|
304 |
only appropriate when targets are managed, e.g. starting from a global |
|
305 |
theory and returning to it. Regular definitional packages should use |
|
306 |
balanced blocks of Local_Theory.open_target versus |
|
307 |
Local_Theory.close_target instead. Rare INCOMPATIBILITY. |
|
308 |
||
62519 | 309 |
* Structure TimeLimit (originally from the SML/NJ library) has been |
310 |
replaced by structure Timeout, with slightly different signature. |
|
311 |
INCOMPATIBILITY. |
|
312 |
||
62551 | 313 |
* Discontinued cd and pwd operations, which are not well-defined in a |
314 |
multi-threaded environment. Note that files are usually located |
|
315 |
relatively to the master directory of a theory (see also |
|
316 |
File.full_path). Potential INCOMPATIBILITY. |
|
317 |
||
62498 | 318 |
|
62354 | 319 |
*** System *** |
320 |
||
62840
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
321 |
* Many Isabelle tools that require a Java runtime system refer to the |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
322 |
settings ISABELLE_TOOL_JAVA_OPTIONS32 / ISABELLE_TOOL_JAVA_OPTIONS64, |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
323 |
depending on the underlying platform. The settings for "isabelle build" |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
324 |
ISABELLE_BUILD_JAVA_OPTIONS32 / ISABELLE_BUILD_JAVA_OPTIONS64 have been |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
325 |
discontinued. Potential INCOMPATIBILITY. |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
326 |
|
62591 | 327 |
* The Isabelle system environment always ensures that the main |
328 |
executables are found within the shell search $PATH: "isabelle" and |
|
329 |
"isabelle_scala_script". |
|
330 |
||
331 |
* The Isabelle ML process is now managed directly by Isabelle/Scala, and |
|
332 |
shell scripts merely provide optional command-line access. In |
|
333 |
particular: |
|
334 |
||
335 |
. Scala module ML_Process to connect to the raw ML process, |
|
336 |
with interaction via stdin/stdout/stderr or in batch mode; |
|
337 |
. command-line tool "isabelle console" as interactive wrapper; |
|
338 |
. command-line tool "isabelle process" as batch mode wrapper. |
|
62588
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
339 |
|
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
340 |
* The executable "isabelle_process" has been discontinued. Tools and |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
341 |
prover front-ends should use ML_Process or Isabelle_Process in |
62591 | 342 |
Isabelle/Scala. INCOMPATIBILITY. |
62588
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
343 |
|
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
344 |
* New command-line tool "isabelle process" supports ML evaluation of |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
345 |
literal expressions (option -e) or files (option -f) in the context of a |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
346 |
given heap image. Errors lead to premature exit of the ML process with |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
347 |
return code 1. |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
348 |
|
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
349 |
* Command-line tool "isabelle console" provides option -r to help to |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
350 |
bootstrapping Isabelle/Pure interactively. |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
351 |
|
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
352 |
* Command-line tool "isabelle yxml" has been discontinued. |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
353 |
INCOMPATIBILITY, use operations from the modules "XML" and "YXML" in |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
354 |
Isabelle/ML or Isabelle/Scala. |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
355 |
|
62549
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
356 |
* File.bash_string, File.bash_path etc. represent Isabelle/ML and |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
357 |
Isabelle/Scala strings authentically within GNU bash. This is useful to |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
358 |
produce robust shell scripts under program control, without worrying |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
359 |
about spaces or special characters. Note that user output works via |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
360 |
Path.print (ML) or Path.toString (Scala). INCOMPATIBILITY, the old (and |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
361 |
less versatile) operations File.shell_quote, File.shell_path etc. have |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
362 |
been discontinued. |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
363 |
|
62591 | 364 |
* SML/NJ and old versions of Poly/ML are no longer supported. |
365 |
||
62642 | 366 |
* Poly/ML heaps now follow the hierarchy of sessions, and thus require |
367 |
much less disk space. |
|
368 |
||
62354 | 369 |
|
370 |
||
62031 | 371 |
New in Isabelle2016 (February 2016) |
62016 | 372 |
----------------------------------- |
60138 | 373 |
|
61337 | 374 |
*** General *** |
375 |
||
62168
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
376 |
* Eisbach is now based on Pure instead of HOL. Objects-logics may import |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
377 |
either the theory ~~/src/HOL/Eisbach/Eisbach (for HOL etc.) or |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
378 |
~~/src/HOL/Eisbach/Eisbach_Old_Appl_Syntax (for FOL, ZF etc.). Note that |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
379 |
the HOL-Eisbach session located in ~~/src/HOL/Eisbach/ contains further |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
380 |
examples that do require HOL. |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
381 |
|
62157 | 382 |
* Better resource usage on all platforms (Linux, Windows, Mac OS X) for |
383 |
both Isabelle/ML and Isabelle/Scala. Slightly reduced heap space usage. |
|
384 |
||
62017 | 385 |
* Former "xsymbols" syntax with Isabelle symbols is used by default, |
386 |
without any special print mode. Important ASCII replacement syntax |
|
387 |
remains available under print mode "ASCII", but less important syntax |
|
388 |
has been removed (see below). |
|
389 |
||
62109 | 390 |
* Support for more arrow symbols, with rendering in LaTeX and Isabelle |
391 |
fonts: \<Lleftarrow> \<Rrightarrow> \<longlongleftarrow> \<longlongrightarrow> \<longlonglongleftarrow> \<longlonglongrightarrow>. |
|
62017 | 392 |
|
62108
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
393 |
* Special notation \<struct> for the first implicit 'structure' in the |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
394 |
context has been discontinued. Rare INCOMPATIBILITY, use explicit |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
395 |
structure name instead, notably in indexed notation with block-subscript |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
396 |
(e.g. \<odot>\<^bsub>A\<^esub>). |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
397 |
|
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
398 |
* The glyph for \<diamond> in the IsabelleText font now corresponds better to its |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
399 |
counterpart \<box> as quantifier-like symbol. A small diamond is available as |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
400 |
\<diamondop>; the old symbol \<struct> loses this rendering and any special |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
401 |
meaning. |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
402 |
|
62017 | 403 |
* Syntax for formal comments "-- text" now also supports the symbolic |
404 |
form "\<comment> text". Command-line tool "isabelle update_cartouches -c" helps |
|
405 |
to update old sources. |
|
406 |
||
61337 | 407 |
* Toplevel theorem statements have been simplified as follows: |
408 |
||
409 |
theorems ~> lemmas |
|
410 |
schematic_lemma ~> schematic_goal |
|
411 |
schematic_theorem ~> schematic_goal |
|
412 |
schematic_corollary ~> schematic_goal |
|
413 |
||
414 |
Command-line tool "isabelle update_theorems" updates theory sources |
|
415 |
accordingly. |
|
416 |
||
61338 | 417 |
* Toplevel theorem statement 'proposition' is another alias for |
418 |
'theorem'. |
|
419 |
||
62169 | 420 |
* The old 'defs' command has been removed (legacy since Isabelle2014). |
421 |
INCOMPATIBILITY, use regular 'definition' instead. Overloaded and/or |
|
422 |
deferred definitions require a surrounding 'overloading' block. |
|
423 |
||
61337 | 424 |
|
60610
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
425 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
426 |
|
60986 | 427 |
* IDE support for the source-level debugger of Poly/ML, to work with |
62253 | 428 |
Isabelle/ML and official Standard ML. Option "ML_debugger" and commands |
429 |
'ML_file_debug', 'ML_file_no_debug', 'SML_file_debug', |
|
430 |
'SML_file_no_debug' control compilation of sources with or without |
|
431 |
debugging information. The Debugger panel allows to set breakpoints (via |
|
432 |
context menu), step through stopped threads, evaluate local ML |
|
433 |
expressions etc. At least one Debugger view needs to be active to have |
|
434 |
any effect on the running ML program. |
|
60984 | 435 |
|
61803 | 436 |
* The State panel manages explicit proof state output, with dynamic |
437 |
auto-update according to cursor movement. Alternatively, the jEdit |
|
438 |
action "isabelle.update-state" (shortcut S+ENTER) triggers manual |
|
439 |
update. |
|
61729 | 440 |
|
441 |
* The Output panel no longer shows proof state output by default, to |
|
442 |
avoid GUI overcrowding. INCOMPATIBILITY, use the State panel instead or |
|
443 |
enable option "editor_output_state". |
|
61215 | 444 |
|
61803 | 445 |
* The text overview column (status of errors, warnings etc.) is updated |
446 |
asynchronously, leading to much better editor reactivity. Moreover, the |
|
447 |
full document node content is taken into account. The width of the |
|
448 |
column is scaled according to the main text area font, for improved |
|
449 |
visibility. |
|
450 |
||
451 |
* The main text area no longer changes its color hue in outdated |
|
452 |
situations. The text overview column takes over the role to indicate |
|
453 |
unfinished edits in the PIDE pipeline. This avoids flashing text display |
|
454 |
due to ad-hoc updates by auxiliary GUI components, such as the State |
|
455 |
panel. |
|
456 |
||
62254
81cbea2babd9
tuned NEWS: long-running tasks can still prevent urgent tasks from being started, due to start_execution pri = 0;
wenzelm
parents:
62253
diff
changeset
|
457 |
* Slightly improved scheduling for urgent print tasks (e.g. command |
81cbea2babd9
tuned NEWS: long-running tasks can still prevent urgent tasks from being started, due to start_execution pri = 0;
wenzelm
parents:
62253
diff
changeset
|
458 |
state output, interactive queries) wrt. long-running background tasks. |
62017 | 459 |
|
460 |
* Completion of symbols via prefix of \<name> or \<^name> or \name is |
|
461 |
always possible, independently of the language context. It is never |
|
462 |
implicit: a popup will show up unconditionally. |
|
463 |
||
464 |
* Additional abbreviations for syntactic completion may be specified in |
|
465 |
$ISABELLE_HOME/etc/abbrevs and $ISABELLE_HOME_USER/etc/abbrevs, with |
|
466 |
support for simple templates using ASCII 007 (bell) as placeholder. |
|
467 |
||
62234
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
468 |
* Symbols \<oplus>, \<Oplus>, \<otimes>, \<Otimes>, \<odot>, \<Odot>, \<ominus>, \<oslash> no longer provide abbreviations for |
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
469 |
completion like "+o", "*o", ".o" etc. -- due to conflicts with other |
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
470 |
ASCII syntax. INCOMPATIBILITY, use plain backslash-completion or define |
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
471 |
suitable abbreviations in $ISABELLE_HOME_USER/etc/abbrevs. |
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
472 |
|
61483 | 473 |
* Action "isabelle-emph" (with keyboard shortcut C+e LEFT) controls |
474 |
emphasized text style; the effect is visible in document output, not in |
|
475 |
the editor. |
|
476 |
||
477 |
* Action "isabelle-reset" now uses keyboard shortcut C+e BACK_SPACE, |
|
478 |
instead of former C+e LEFT. |
|
479 |
||
61512
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
480 |
* The command-line tool "isabelle jedit" and the isabelle.Main |
62027 | 481 |
application wrapper treat the default $USER_HOME/Scratch.thy more |
61512
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
482 |
uniformly, and allow the dummy file argument ":" to open an empty buffer |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
483 |
instead. |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
484 |
|
62017 | 485 |
* New command-line tool "isabelle jedit_client" allows to connect to an |
486 |
already running Isabelle/jEdit process. This achieves the effect of |
|
487 |
single-instance applications seen on common GUI desktops. |
|
488 |
||
61529
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
489 |
* The default look-and-feel for Linux is the traditional "Metal", which |
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
490 |
works better with GUI scaling for very high-resolution displays (e.g. |
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
491 |
4K). Moreover, it is generally more robust than "Nimbus". |
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
492 |
|
62163 | 493 |
* Update to jedit-5.3.0, with improved GUI scaling and support of |
494 |
high-resolution displays (e.g. 4K). |
|
495 |
||
62034 | 496 |
* The main Isabelle executable is managed as single-instance Desktop |
497 |
application uniformly on all platforms: Linux, Windows, Mac OS X. |
|
498 |
||
60610
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
499 |
|
61405 | 500 |
*** Document preparation *** |
501 |
||
62017 | 502 |
* Commands 'paragraph' and 'subparagraph' provide additional section |
503 |
headings. Thus there are 6 levels of standard headings, as in HTML. |
|
504 |
||
505 |
* Command 'text_raw' has been clarified: input text is processed as in |
|
506 |
'text' (with antiquotations and control symbols). The key difference is |
|
507 |
the lack of the surrounding isabelle markup environment in output. |
|
508 |
||
509 |
* Text is structured in paragraphs and nested lists, using notation that |
|
510 |
is similar to Markdown. The control symbols for list items are as |
|
511 |
follows: |
|
512 |
||
513 |
\<^item> itemize |
|
514 |
\<^enum> enumerate |
|
515 |
\<^descr> description |
|
516 |
||
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
517 |
* There is a new short form for antiquotations with a single argument |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
518 |
that is a cartouche: \<^name>\<open>...\<close> is equivalent to @{name \<open>...\<close>} and |
61595 | 519 |
\<open>...\<close> without control symbol is equivalent to @{cartouche \<open>...\<close>}. |
520 |
\<^name> without following cartouche is equivalent to @{name}. The |
|
61501 | 521 |
standard Isabelle fonts provide glyphs to render important control |
522 |
symbols, e.g. "\<^verbatim>", "\<^emph>", "\<^bold>". |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
523 |
|
61595 | 524 |
* Antiquotations @{noindent}, @{smallskip}, @{medskip}, @{bigskip} with |
525 |
corresponding control symbols \<^noindent>, \<^smallskip>, \<^medskip>, \<^bigskip> specify spacing formally, using |
|
526 |
standard LaTeX macros of the same names. |
|
527 |
||
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
528 |
* Antiquotation @{cartouche} in Isabelle/Pure is the same as @{text}. |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
529 |
Consequently, \<open>...\<close> without any decoration prints literal quasi-formal |
61492 | 530 |
text. Command-line tool "isabelle update_cartouches -t" helps to update |
531 |
old sources, by approximative patching of the content of string and |
|
532 |
cartouche tokens seen in theory sources. |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
533 |
|
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
534 |
* The @{text} antiquotation now ignores the antiquotation option |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
535 |
"source". The given text content is output unconditionally, without any |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
536 |
surrounding quotes etc. Subtle INCOMPATIBILITY, put quotes into the |
61494 | 537 |
argument where they are really intended, e.g. @{text \<open>"foo"\<close>}. Initial |
538 |
or terminal spaces are ignored. |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
539 |
|
62017 | 540 |
* Antiquotations @{emph} and @{bold} output LaTeX source recursively, |
541 |
adding appropriate text style markup. These may be used in the short |
|
542 |
form \<^emph>\<open>...\<close> and \<^bold>\<open>...\<close>. |
|
543 |
||
544 |
* Document antiquotation @{footnote} outputs LaTeX source recursively, |
|
545 |
marked as \footnote{}. This may be used in the short form \<^footnote>\<open>...\<close>. |
|
546 |
||
547 |
* Antiquotation @{verbatim [display]} supports option "indent". |
|
548 |
||
549 |
* Antiquotation @{theory_text} prints uninterpreted theory source text |
|
62231
25f4a9cd8b68
tuned markup, e.g. relevant for Rendering.tooltip;
wenzelm
parents:
62209
diff
changeset
|
550 |
(Isar outer syntax with command keywords etc.). This may be used in the |
25f4a9cd8b68
tuned markup, e.g. relevant for Rendering.tooltip;
wenzelm
parents:
62209
diff
changeset
|
551 |
short form \<^theory_text>\<open>...\<close>. @{theory_text [display]} supports option "indent". |
62017 | 552 |
|
553 |
* Antiquotation @{doc ENTRY} provides a reference to the given |
|
554 |
documentation, with a hyperlink in the Prover IDE. |
|
555 |
||
556 |
* Antiquotations @{command}, @{method}, @{attribute} print checked |
|
557 |
entities of the Isar language. |
|
558 |
||
61471 | 559 |
* HTML presentation uses the standard IsabelleText font and Unicode |
560 |
rendering of Isabelle symbols like Isabelle/Scala/jEdit. The former |
|
61488 | 561 |
print mode "HTML" loses its special meaning. |
61471 | 562 |
|
61405 | 563 |
|
60406 | 564 |
*** Isar *** |
565 |
||
62205 | 566 |
* Local goals ('have', 'show', 'hence', 'thus') allow structured rule |
567 |
statements like fixes/assumes/shows in theorem specifications, but the |
|
568 |
notation is postfix with keywords 'if' (or 'when') and 'for'. For |
|
60555
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
569 |
example: |
60414 | 570 |
|
571 |
have result: "C x y" |
|
572 |
if "A x" and "B y" |
|
573 |
for x :: 'a and y :: 'a |
|
574 |
<proof> |
|
575 |
||
60449 | 576 |
The local assumptions are bound to the name "that". The result is |
577 |
exported from context of the statement as usual. The above roughly |
|
60414 | 578 |
corresponds to a raw proof block like this: |
579 |
||
580 |
{ |
|
581 |
fix x :: 'a and y :: 'a |
|
60449 | 582 |
assume that: "A x" "B y" |
60414 | 583 |
have "C x y" <proof> |
584 |
} |
|
585 |
note result = this |
|
60406 | 586 |
|
60555
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
587 |
The keyword 'when' may be used instead of 'if', to indicate 'presume' |
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
588 |
instead of 'assume' above. |
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
589 |
|
61733 | 590 |
* Assumptions ('assume', 'presume') allow structured rule statements |
591 |
using 'if' and 'for', similar to 'have' etc. above. For example: |
|
61658 | 592 |
|
593 |
assume result: "C x y" |
|
594 |
if "A x" and "B y" |
|
595 |
for x :: 'a and y :: 'a |
|
596 |
||
597 |
This assumes "\<And>x y::'a. A x \<Longrightarrow> B y \<Longrightarrow> C x y" and produces a general |
|
598 |
result as usual: "A ?x \<Longrightarrow> B ?y \<Longrightarrow> C ?x ?y". |
|
599 |
||
600 |
Vacuous quantification in assumptions is omitted, i.e. a for-context |
|
601 |
only effects propositions according to actual use of variables. For |
|
602 |
example: |
|
603 |
||
604 |
assume "A x" and "B y" for x and y |
|
605 |
||
606 |
is equivalent to: |
|
607 |
||
608 |
assume "\<And>x. A x" and "\<And>y. B y" |
|
609 |
||
60595 | 610 |
* The meaning of 'show' with Pure rule statements has changed: premises |
611 |
are treated in the sense of 'assume', instead of 'presume'. This means, |
|
62205 | 612 |
a goal like "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" can be solved completely as |
613 |
follows: |
|
60595 | 614 |
|
615 |
show "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" |
|
616 |
||
617 |
or: |
|
618 |
||
619 |
show "C x" if "A x" "B x" for x |
|
620 |
||
621 |
Rare INCOMPATIBILITY, the old behaviour may be recovered as follows: |
|
622 |
||
623 |
show "C x" when "A x" "B x" for x |
|
624 |
||
60459 | 625 |
* New command 'consider' states rules for generalized elimination and |
626 |
case splitting. This is like a toplevel statement "theorem obtains" used |
|
627 |
within a proof body; or like a multi-branch 'obtain' without activation |
|
628 |
of the local context elements yet. |
|
629 |
||
60455 | 630 |
* Proof method "cases" allows to specify the rule as first entry of |
631 |
chained facts. This is particularly useful with 'consider': |
|
632 |
||
633 |
consider (a) A | (b) B | (c) C <proof> |
|
634 |
then have something |
|
635 |
proof cases |
|
636 |
case a |
|
637 |
then show ?thesis <proof> |
|
638 |
next |
|
639 |
case b |
|
640 |
then show ?thesis <proof> |
|
641 |
next |
|
642 |
case c |
|
643 |
then show ?thesis <proof> |
|
644 |
qed |
|
645 |
||
60565 | 646 |
* Command 'case' allows fact name and attribute specification like this: |
647 |
||
648 |
case a: (c xs) |
|
649 |
case a [attributes]: (c xs) |
|
650 |
||
651 |
Facts that are introduced by invoking the case context are uniformly |
|
652 |
qualified by "a"; the same name is used for the cumulative fact. The old |
|
653 |
form "case (c xs) [attributes]" is no longer supported. Rare |
|
654 |
INCOMPATIBILITY, need to adapt uses of case facts in exotic situations, |
|
655 |
and always put attributes in front. |
|
656 |
||
60618
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
657 |
* The standard proof method of commands 'proof' and '..' is now called |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
658 |
"standard" to make semantically clear what it is; the old name "default" |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
659 |
is still available as legacy for some time. Documentation now explains |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
660 |
'..' more accurately as "by standard" instead of "by rule". |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
661 |
|
62017 | 662 |
* Nesting of Isar goal structure has been clarified: the context after |
663 |
the initial backwards refinement is retained for the whole proof, within |
|
664 |
all its context sections (as indicated via 'next'). This is e.g. |
|
665 |
relevant for 'using', 'including', 'supply': |
|
666 |
||
667 |
have "A \<and> A" if a: A for A |
|
668 |
supply [simp] = a |
|
669 |
proof |
|
670 |
show A by simp |
|
671 |
next |
|
672 |
show A by simp |
|
673 |
qed |
|
674 |
||
675 |
* Command 'obtain' binds term abbreviations (via 'is' patterns) in the |
|
676 |
proof body as well, abstracted over relevant parameters. |
|
677 |
||
678 |
* Improved type-inference for theorem statement 'obtains': separate |
|
679 |
parameter scope for of each clause. |
|
680 |
||
681 |
* Term abbreviations via 'is' patterns also work for schematic |
|
682 |
statements: result is abstracted over unknowns. |
|
683 |
||
60631 | 684 |
* Command 'subgoal' allows to impose some structure on backward |
685 |
refinements, to avoid proof scripts degenerating into long of 'apply' |
|
686 |
sequences. Further explanations and examples are given in the isar-ref |
|
687 |
manual. |
|
688 |
||
62017 | 689 |
* Command 'supply' supports fact definitions during goal refinement |
690 |
('apply' scripts). |
|
691 |
||
61166
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
692 |
* Proof method "goal_cases" turns the current subgoals into cases within |
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
693 |
the context; the conclusion is bound to variable ?case in each case. For |
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
694 |
example: |
60617 | 695 |
|
696 |
lemma "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" |
|
60622 | 697 |
and "\<And>y z. U y \<Longrightarrow> V z \<Longrightarrow> W y z" |
61166
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
698 |
proof goal_cases |
60622 | 699 |
case (1 x) |
700 |
then show ?case using \<open>A x\<close> \<open>B x\<close> sorry |
|
701 |
next |
|
702 |
case (2 y z) |
|
703 |
then show ?case using \<open>U y\<close> \<open>V z\<close> sorry |
|
704 |
qed |
|
705 |
||
706 |
lemma "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" |
|
707 |
and "\<And>y z. U y \<Longrightarrow> V z \<Longrightarrow> W y z" |
|
61166
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
708 |
proof goal_cases |
60617 | 709 |
case prems: 1 |
710 |
then show ?case using prems sorry |
|
711 |
next |
|
712 |
case prems: 2 |
|
713 |
then show ?case using prems sorry |
|
714 |
qed |
|
60578 | 715 |
|
60581 | 716 |
* The undocumented feature of implicit cases goal1, goal2, goal3, etc. |
60617 | 717 |
is marked as legacy, and will be removed eventually. The proof method |
718 |
"goals" achieves a similar effect within regular Isar; often it can be |
|
719 |
done more adequately by other means (e.g. 'consider'). |
|
60581 | 720 |
|
62017 | 721 |
* The vacuous fact "TERM x" may be established "by fact" or as `TERM x` |
722 |
as well, not just "by this" or "." as before. |
|
60551 | 723 |
|
60554 | 724 |
* Method "sleep" succeeds after a real-time delay (in seconds). This is |
725 |
occasionally useful for demonstration and testing purposes. |
|
726 |
||
60406 | 727 |
|
60331 | 728 |
*** Pure *** |
729 |
||
61606
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
730 |
* Qualifiers in locale expressions default to mandatory ('!') regardless |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
731 |
of the command. Previously, for 'locale' and 'sublocale' the default was |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
732 |
optional ('?'). The old synatx '!' has been discontinued. |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
733 |
INCOMPATIBILITY, remove '!' and add '?' as required. |
61565
352c73a689da
Qualifiers in locale expressions default to mandatory regardless of the command.
ballarin
parents:
61551
diff
changeset
|
734 |
|
61566
c3d6e570ccef
Keyword 'rewrites' identifies rewrite morphisms.
ballarin
parents:
61565
diff
changeset
|
735 |
* Keyword 'rewrites' identifies rewrite morphisms in interpretation |
62017 | 736 |
commands. Previously, the keyword was 'where'. INCOMPATIBILITY. |
61566
c3d6e570ccef
Keyword 'rewrites' identifies rewrite morphisms.
ballarin
parents:
61565
diff
changeset
|
737 |
|
61701
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
738 |
* More gentle suppression of syntax along locale morphisms while |
62017 | 739 |
printing terms. Previously 'abbreviation' and 'notation' declarations |
740 |
would be suppressed for morphisms except term identity. Now |
|
61701
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
741 |
'abbreviation' is also kept for morphims that only change the involved |
62017 | 742 |
parameters, and only 'notation' is suppressed. This can be of great help |
743 |
when working with complex locale hierarchies, because proof states are |
|
744 |
displayed much more succinctly. It also means that only notation needs |
|
745 |
to be redeclared if desired, as illustrated by this example: |
|
61701
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
746 |
|
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
747 |
locale struct = fixes composition :: "'a => 'a => 'a" (infixl "\<cdot>" 65) |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
748 |
begin |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
749 |
definition derived (infixl "\<odot>" 65) where ... |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
750 |
end |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
751 |
|
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
752 |
locale morphism = |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
753 |
left: struct composition + right: struct composition' |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
754 |
for composition (infix "\<cdot>" 65) and composition' (infix "\<cdot>''" 65) |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
755 |
begin |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
756 |
notation right.derived ("\<odot>''") |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
757 |
end |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
758 |
|
61895 | 759 |
* Command 'global_interpretation' issues interpretations into global |
760 |
theories, with optional rewrite definitions following keyword 'defines'. |
|
761 |
||
762 |
* Command 'sublocale' accepts optional rewrite definitions after keyword |
|
61675 | 763 |
'defines'. |
764 |
||
61895 | 765 |
* Command 'permanent_interpretation' has been discontinued. Use |
766 |
'global_interpretation' or 'sublocale' instead. INCOMPATIBILITY. |
|
61670
301e0b4ecd45
coalesce permanent_interpretation.ML with interpretation.ML
haftmann
parents:
61660
diff
changeset
|
767 |
|
61252 | 768 |
* Command 'print_definitions' prints dependencies of definitional |
769 |
specifications. This functionality used to be part of 'print_theory'. |
|
770 |
||
60331 | 771 |
* Configuration option rule_insts_schematic has been discontinued |
62017 | 772 |
(intermediate legacy feature in Isabelle2015). INCOMPATIBILITY. |
60331 | 773 |
|
62205 | 774 |
* Abbreviations in type classes now carry proper sort constraint. Rare |
775 |
INCOMPATIBILITY in situations where the previous misbehaviour has been |
|
776 |
exploited. |
|
60347 | 777 |
|
778 |
* Refinement of user-space type system in type classes: pseudo-local |
|
62205 | 779 |
operations behave more similar to abbreviations. Potential |
60347 | 780 |
INCOMPATIBILITY in exotic situations. |
781 |
||
782 |
||
60171 | 783 |
*** HOL *** |
784 |
||
62017 | 785 |
* The 'typedef' command has been upgraded from a partially checked |
786 |
"axiomatization", to a full definitional specification that takes the |
|
787 |
global collection of overloaded constant / type definitions into |
|
788 |
account. Type definitions with open dependencies on overloaded |
|
789 |
definitions need to be specified as "typedef (overloaded)". This |
|
790 |
provides extra robustness in theory construction. Rare INCOMPATIBILITY. |
|
791 |
||
792 |
* Qualification of various formal entities in the libraries is done more |
|
793 |
uniformly via "context begin qualified definition ... end" instead of |
|
794 |
old-style "hide_const (open) ...". Consequently, both the defined |
|
795 |
constant and its defining fact become qualified, e.g. Option.is_none and |
|
796 |
Option.is_none_def. Occasional INCOMPATIBILITY in applications. |
|
797 |
||
798 |
* Some old and rarely used ASCII replacement syntax has been removed. |
|
799 |
INCOMPATIBILITY, standard syntax with symbols should be used instead. |
|
800 |
The subsequent commands help to reproduce the old forms, e.g. to |
|
801 |
simplify porting old theories: |
|
802 |
||
803 |
notation iff (infixr "<->" 25) |
|
804 |
||
805 |
notation Times (infixr "<*>" 80) |
|
806 |
||
807 |
type_notation Map.map (infixr "~=>" 0) |
|
808 |
notation Map.map_comp (infixl "o'_m" 55) |
|
809 |
||
810 |
type_notation FinFun.finfun ("(_ =>f /_)" [22, 21] 21) |
|
811 |
||
812 |
notation FuncSet.funcset (infixr "->" 60) |
|
813 |
notation FuncSet.extensional_funcset (infixr "->\<^sub>E" 60) |
|
814 |
||
815 |
notation Omega_Words_Fun.conc (infixr "conc" 65) |
|
816 |
||
817 |
notation Preorder.equiv ("op ~~") |
|
818 |
and Preorder.equiv ("(_/ ~~ _)" [51, 51] 50) |
|
819 |
||
820 |
notation (in topological_space) tendsto (infixr "--->" 55) |
|
821 |
notation (in topological_space) LIMSEQ ("((_)/ ----> (_))" [60, 60] 60) |
|
822 |
notation LIM ("((_)/ -- (_)/ --> (_))" [60, 0, 60] 60) |
|
823 |
||
824 |
notation NSA.approx (infixl "@=" 50) |
|
825 |
notation NSLIMSEQ ("((_)/ ----NS> (_))" [60, 60] 60) |
|
826 |
notation NSLIM ("((_)/ -- (_)/ --NS> (_))" [60, 0, 60] 60) |
|
827 |
||
828 |
* The alternative notation "\<Colon>" for type and sort constraints has been |
|
829 |
removed: in LaTeX document output it looks the same as "::". |
|
830 |
INCOMPATIBILITY, use plain "::" instead. |
|
831 |
||
832 |
* Commands 'inductive' and 'inductive_set' work better when names for |
|
833 |
intro rules are omitted: the "cases" and "induct" rules no longer |
|
834 |
declare empty case_names, but no case_names at all. This allows to use |
|
835 |
numbered cases in proofs, without requiring method "goal_cases". |
|
836 |
||
837 |
* Inductive definitions ('inductive', 'coinductive', etc.) expose |
|
838 |
low-level facts of the internal construction only if the option |
|
62093 | 839 |
"inductive_internals" is enabled. This refers to the internal predicate |
62017 | 840 |
definition and its monotonicity result. Rare INCOMPATIBILITY. |
841 |
||
842 |
* Recursive function definitions ('fun', 'function', 'partial_function') |
|
843 |
expose low-level facts of the internal construction only if the option |
|
62205 | 844 |
"function_internals" is enabled. Its internal inductive definition is |
845 |
also subject to "inductive_internals". Rare INCOMPATIBILITY. |
|
62093 | 846 |
|
847 |
* BNF datatypes ('datatype', 'codatatype', etc.) expose low-level facts |
|
848 |
of the internal construction only if the option "bnf_internals" is |
|
849 |
enabled. This supersedes the former option "bnf_note_all". Rare |
|
850 |
INCOMPATIBILITY. |
|
62017 | 851 |
|
852 |
* Combinator to represent case distinction on products is named |
|
853 |
"case_prod", uniformly, discontinuing any input aliasses. Very popular |
|
854 |
theorem aliasses have been retained. |
|
855 |
||
61424
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
856 |
Consolidated facts: |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
857 |
PairE ~> prod.exhaust |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
858 |
Pair_eq ~> prod.inject |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
859 |
pair_collapse ~> prod.collapse |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
860 |
Pair_fst_snd_eq ~> prod_eq_iff |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
861 |
split_twice ~> prod.case_distrib |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
862 |
split_weak_cong ~> prod.case_cong_weak |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
863 |
split_split ~> prod.split |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
864 |
split_split_asm ~> prod.split_asm |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
865 |
splitI ~> case_prodI |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
866 |
splitD ~> case_prodD |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
867 |
splitI2 ~> case_prodI2 |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
868 |
splitI2' ~> case_prodI2' |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
869 |
splitE ~> case_prodE |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
870 |
splitE' ~> case_prodE' |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
871 |
split_pair ~> case_prod_Pair |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
872 |
split_eta ~> case_prod_eta |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
873 |
split_comp ~> case_prod_comp |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
874 |
mem_splitI ~> mem_case_prodI |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
875 |
mem_splitI2 ~> mem_case_prodI2 |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
876 |
mem_splitE ~> mem_case_prodE |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
877 |
The_split ~> The_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
878 |
cond_split_eta ~> cond_case_prod_eta |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
879 |
Collect_split_in_rel_leE ~> Collect_case_prod_in_rel_leE |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
880 |
Collect_split_in_rel_leI ~> Collect_case_prod_in_rel_leI |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
881 |
in_rel_Collect_split_eq ~> in_rel_Collect_case_prod_eq |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
882 |
Collect_split_Grp_eqD ~> Collect_case_prod_Grp_eqD |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
883 |
Collect_split_Grp_inD ~> Collect_case_prod_Grp_in |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
884 |
Domain_Collect_split ~> Domain_Collect_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
885 |
Image_Collect_split ~> Image_Collect_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
886 |
Range_Collect_split ~> Range_Collect_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
887 |
Eps_split ~> Eps_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
888 |
Eps_split_eq ~> Eps_case_prod_eq |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
889 |
split_rsp ~> case_prod_rsp |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
890 |
curry_split ~> curry_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
891 |
split_curry ~> case_prod_curry |
62017 | 892 |
|
61424
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
893 |
Changes in structure HOLogic: |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
894 |
split_const ~> case_prod_const |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
895 |
mk_split ~> mk_case_prod |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
896 |
mk_psplits ~> mk_ptupleabs |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
897 |
strip_psplits ~> strip_ptupleabs |
62017 | 898 |
|
899 |
INCOMPATIBILITY. |
|
900 |
||
901 |
* The coercions to type 'real' have been reorganised. The function |
|
902 |
'real' is no longer overloaded, but has type 'nat => real' and |
|
903 |
abbreviates of_nat for that type. Also 'real_of_int :: int => real' |
|
904 |
abbreviates of_int for that type. Other overloaded instances of 'real' |
|
905 |
have been replaced by 'real_of_ereal' and 'real_of_float'. |
|
906 |
||
61694
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
907 |
Consolidated facts (among others): |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
908 |
real_of_nat_le_iff -> of_nat_le_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
909 |
real_of_nat_numeral of_nat_numeral |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
910 |
real_of_int_zero of_int_0 |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
911 |
real_of_nat_zero of_nat_0 |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
912 |
real_of_one of_int_1 |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
913 |
real_of_int_add of_int_add |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
914 |
real_of_nat_add of_nat_add |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
915 |
real_of_int_diff of_int_diff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
916 |
real_of_nat_diff of_nat_diff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
917 |
floor_subtract floor_diff_of_int |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
918 |
real_of_int_inject of_int_eq_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
919 |
real_of_int_gt_zero_cancel_iff of_int_0_less_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
920 |
real_of_int_ge_zero_cancel_iff of_int_0_le_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
921 |
real_of_nat_ge_zero of_nat_0_le_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
922 |
real_of_int_ceiling_ge le_of_int_ceiling |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
923 |
ceiling_less_eq ceiling_less_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
924 |
ceiling_le_eq ceiling_le_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
925 |
less_floor_eq less_floor_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
926 |
floor_less_eq floor_less_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
927 |
floor_divide_eq_div floor_divide_of_int_eq |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
928 |
real_of_int_zero_cancel of_nat_eq_0_iff |
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
paulson <lp15@cam.ac.uk>
parents:
61685
diff
changeset
|
929 |
ceiling_real_of_int ceiling_of_int |
62017 | 930 |
|
931 |
INCOMPATIBILITY. |
|
61143 | 932 |
|
60841 | 933 |
* Theory Map: lemma map_of_is_SomeD was a clone of map_of_SomeD and has |
934 |
been removed. INCOMPATIBILITY. |
|
935 |
||
60712
3ba16d28449d
Quickcheck setup for finite sets
Lars Hupel <lars.hupel@mytum.de>
parents:
60707
diff
changeset
|
936 |
* Quickcheck setup for finite sets. |
3ba16d28449d
Quickcheck setup for finite sets
Lars Hupel <lars.hupel@mytum.de>
parents:
60707
diff
changeset
|
937 |
|
60171 | 938 |
* Discontinued simp_legacy_precond. Potential INCOMPATIBILITY. |
60138 | 939 |
|
60306
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
940 |
* Sledgehammer: |
61318 | 941 |
- The MaSh relevance filter has been sped up. |
60306
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
942 |
- Proof reconstruction has been improved, to minimize the incidence of |
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
943 |
cases where Sledgehammer gives a proof that does not work. |
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
944 |
- Auto Sledgehammer now minimizes and preplays the results. |
61030 | 945 |
- Handle Vampire 4.0 proof output without raising exception. |
61043 | 946 |
- Eliminated "MASH" environment variable. Use the "MaSh" option in |
947 |
Isabelle/jEdit instead. INCOMPATIBILITY. |
|
61317 | 948 |
- Eliminated obsolete "blocking" option and related subcommands. |
60306
6b7c64ab8bd2
made Auto Sledgehammer behave more like the real thing
blanchet
parents:
60301
diff
changeset
|
949 |
|
60310 | 950 |
* Nitpick: |
61325
1cfc476198c9
avoid too aggressive optimization of 'finite' predicate
blanchet
parents:
61324
diff
changeset
|
951 |
- Fixed soundness bug in translation of "finite" predicate. |
61324
d4ec7594f558
avoid unsound simplification of (C (s x)) when s is a selector but not C's
blanchet
parents:
61318
diff
changeset
|
952 |
- Fixed soundness bug in "destroy_constrs" optimization. |
62080 | 953 |
- Fixed soundness bug in translation of "rat" type. |
60310 | 954 |
- Removed "check_potential" and "check_genuine" options. |
61317 | 955 |
- Eliminated obsolete "blocking" option. |
60310 | 956 |
|
62027 | 957 |
* (Co)datatype package: |
61345 | 958 |
- New commands "lift_bnf" and "copy_bnf" for lifting (copying) a BNF |
959 |
structure on the raw type to an abstract type defined using typedef. |
|
960 |
- Always generate "case_transfer" theorem. |
|
62235 | 961 |
- For mutual types, generate slightly stronger "rel_induct", |
962 |
"rel_coinduct", and "coinduct" theorems. INCOMPATIBLITY. |
|
61551 | 963 |
- Allow discriminators and selectors with the same name as the type |
964 |
being defined. |
|
965 |
- Avoid various internal name clashes (e.g., 'datatype f = f'). |
|
60920 | 966 |
|
62098 | 967 |
* Transfer: new methods for interactive debugging of 'transfer' and |
968 |
'transfer_prover': 'transfer_start', 'transfer_step', 'transfer_end', |
|
969 |
'transfer_prover_start' and 'transfer_prover_end'. |
|
61370 | 970 |
|
62118 | 971 |
* New diagnostic command print_record for displaying record definitions. |
972 |
||
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60841
diff
changeset
|
973 |
* Division on integers is bootstrapped directly from division on |
62017 | 974 |
naturals and uses generic numeral algorithm for computations. Slight |
975 |
INCOMPATIBILITY, simproc numeral_divmod replaces and generalizes former |
|
976 |
simprocs binary_int_div and binary_int_mod |
|
977 |
||
978 |
* Tightened specification of class semiring_no_zero_divisors. Minor |
|
60516
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
haftmann
parents:
60515
diff
changeset
|
979 |
INCOMPATIBILITY. |
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
haftmann
parents:
60515
diff
changeset
|
980 |
|
60688
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
981 |
* Class algebraic_semidom introduces common algebraic notions of |
62017 | 982 |
integral (semi)domains, particularly units. Although logically subsumed |
983 |
by fields, is is not a super class of these in order not to burden |
|
984 |
fields with notions that are trivial there. |
|
985 |
||
986 |
* Class normalization_semidom specifies canonical representants for |
|
987 |
equivalence classes of associated elements in an integral (semi)domain. |
|
988 |
This formalizes associated elements as well. |
|
60688
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
989 |
|
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
haftmann
parents:
60642
diff
changeset
|
990 |
* Abstract specification of gcd/lcm operations in classes semiring_gcd, |
62017 | 991 |
semiring_Gcd, semiring_Lcd. Minor INCOMPATIBILITY: facts gcd_nat.commute |
992 |
and gcd_int.commute are subsumed by gcd.commute, as well as |
|
993 |
gcd_nat.assoc and gcd_int.assoc by gcd.assoc. |
|
994 |
||
995 |
* Former constants Fields.divide (_ / _) and Divides.div (_ div _) are |
|
996 |
logically unified to Rings.divide in syntactic type class Rings.divide, |
|
997 |
with infix syntax (_ div _). Infix syntax (_ / _) for field division is |
|
998 |
added later as abbreviation in class Fields.inverse. INCOMPATIBILITY, |
|
999 |
instantiations must refer to Rings.divide rather than the former |
|
1000 |
separate constants, hence infix syntax (_ / _) is usually not available |
|
1001 |
during instantiation. |
|
1002 |
||
1003 |
* New cancellation simprocs for boolean algebras to cancel complementary |
|
1004 |
terms for sup and inf. For example, "sup x (sup y (- x))" simplifies to |
|
1005 |
"top". INCOMPATIBILITY. |
|
61629
90f54d9e63f2
cancel complementary terms as arguments to sup/inf in boolean algebras
Andreas Lochbihler
parents:
61623
diff
changeset
|
1006 |
|
62101 | 1007 |
* Class uniform_space introduces uniform spaces btw topological spaces |
1008 |
and metric spaces. Minor INCOMPATIBILITY: open_<type>_def needs to be |
|
62205 | 1009 |
introduced in the form of an uniformity. Some constants are more general |
1010 |
now, it may be necessary to add type class constraints. |
|
62101 | 1011 |
|
1012 |
open_real_def \<leadsto> open_dist |
|
1013 |
open_complex_def \<leadsto> open_dist |
|
1014 |
||
62026 | 1015 |
* Library/Monad_Syntax: notation uses symbols \<bind> and \<then>. INCOMPATIBILITY. |
1016 |
||
60397
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1017 |
* Library/Multiset: |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1018 |
- Renamed multiset inclusion operators: |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1019 |
< ~> <# |
62208
ad43b3ab06e4
added 'supset' variants for new '<#' etc. symbols on multisets
blanchet
parents:
62205
diff
changeset
|
1020 |
> ~> ># |
60397
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1021 |
<= ~> <=# |
62208
ad43b3ab06e4
added 'supset' variants for new '<#' etc. symbols on multisets
blanchet
parents:
62205
diff
changeset
|
1022 |
>= ~> >=# |
60397
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1023 |
\<le> ~> \<le># |
62208
ad43b3ab06e4
added 'supset' variants for new '<#' etc. symbols on multisets
blanchet
parents:
62205
diff
changeset
|
1024 |
\<ge> ~> \<ge># |
60397
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1025 |
INCOMPATIBILITY. |
62209 | 1026 |
- Added multiset inclusion operator syntax: |
1027 |
\<subset># |
|
1028 |
\<subseteq># |
|
1029 |
\<supset># |
|
1030 |
\<supseteq># |
|
60397
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1031 |
- "'a multiset" is no longer an instance of the "order", |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1032 |
"ordered_ab_semigroup_add_imp_le", "ordered_cancel_comm_monoid_diff", |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1033 |
"semilattice_inf", and "semilattice_sup" type classes. The theorems |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1034 |
previously provided by these type classes (directly or indirectly) |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1035 |
are now available through the "subset_mset" interpretation |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1036 |
(e.g. add_mono ~> subset_mset.add_mono). |
f8a513fedb31
Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
60390
diff
changeset
|
1037 |
INCOMPATIBILITY. |
60497 | 1038 |
- Renamed conversions: |
60515 | 1039 |
multiset_of ~> mset |
1040 |
multiset_of_set ~> mset_set |
|
60497 | 1041 |
set_of ~> set_mset |
1042 |
INCOMPATIBILITY |
|
60398 | 1043 |
- Renamed lemmas: |
1044 |
mset_le_def ~> subseteq_mset_def |
|
1045 |
mset_less_def ~> subset_mset_def |
|
60400 | 1046 |
less_eq_multiset.rep_eq ~> subseteq_mset_def |
1047 |
INCOMPATIBILITY |
|
1048 |
- Removed lemmas generated by lift_definition: |
|
62235 | 1049 |
less_eq_multiset.abs_eq, less_eq_multiset.rsp, |
1050 |
less_eq_multiset.transfer, less_eq_multiset_def |
|
60400 | 1051 |
INCOMPATIBILITY |
60006 | 1052 |
|
62017 | 1053 |
* Library/Omega_Words_Fun: Infinite words modeled as functions nat \<Rightarrow> 'a. |
1054 |
||
1055 |
* Library/Bourbaki_Witt_Fixpoint: Added formalisation of the |
|
1056 |
Bourbaki-Witt fixpoint theorem for increasing functions in |
|
1057 |
chain-complete partial orders. |
|
1058 |
||
1059 |
* Library/Old_Recdef: discontinued obsolete 'defer_recdef' command. |
|
1060 |
Minor INCOMPATIBILITY, use 'function' instead. |
|
1061 |
||
62064 | 1062 |
* Library/Periodic_Fun: a locale that provides convenient lemmas for |
1063 |
periodic functions. |
|
62060
b75764fc4c35
Added summability/Gamma/etc. to NEWS and CONTRIBUTORS
eberlm
parents:
62034
diff
changeset
|
1064 |
|
62098 | 1065 |
* Library/Formal_Power_Series: proper definition of division (with |
1066 |
remainder) for formal power series; instances for Euclidean Ring and |
|
1067 |
GCD. |
|
62086
1c0246456ab9
Added formal power series updates to NEWS/CONTRIBUTORS
Manuel Eberl <eberlm@in.tum.de>
parents:
62084
diff
changeset
|
1068 |
|
62084 | 1069 |
* HOL-Imperative_HOL: obsolete theory Legacy_Mrec has been removed. |
1070 |
||
1071 |
* HOL-Statespace: command 'statespace' uses mandatory qualifier for |
|
1072 |
import of parent, as for general 'locale' expressions. INCOMPATIBILITY, |
|
1073 |
remove '!' and add '?' as required. |
|
1074 |
||
62237 | 1075 |
* HOL-Decision_Procs: The "approximation" method works with "powr" |
1076 |
(exponentiation on real numbers) again. |
|
1077 |
||
62084 | 1078 |
* HOL-Multivariate_Analysis: theory Cauchy_Integral_Thm with Contour |
1079 |
integrals (= complex path integrals), Cauchy's integral theorem, winding |
|
1080 |
numbers and Cauchy's integral formula, Liouville theorem, Fundamental |
|
1081 |
Theorem of Algebra. Ported from HOL Light. |
|
1082 |
||
1083 |
* HOL-Multivariate_Analysis: topological concepts such as connected |
|
62017 | 1084 |
components, homotopic paths and the inside or outside of a set. |
61121
efe8b18306b7
do not expose low-level "_def" facts of 'function' definitions, to avoid potential confusion with the situation of plain 'definition';
wenzelm
parents:
61119
diff
changeset
|
1085 |
|
62084 | 1086 |
* HOL-Multivariate_Analysis: radius of convergence of power series and |
62064 | 1087 |
various summability tests; Harmonic numbers and the Euler–Mascheroni |
1088 |
constant; the Generalised Binomial Theorem; the complex and real |
|
1089 |
Gamma/log-Gamma/Digamma/ Polygamma functions and their most important |
|
1090 |
properties. |
|
62060
b75764fc4c35
Added summability/Gamma/etc. to NEWS and CONTRIBUTORS
eberlm
parents:
62034
diff
changeset
|
1091 |
|
62084 | 1092 |
* HOL-Probability: The central limit theorem based on Levy's uniqueness |
1093 |
and continuity theorems, weak convergence, and characterisitc functions. |
|
1094 |
||
1095 |
* HOL-Data_Structures: new and growing session of standard data |
|
1096 |
structures. |
|
61178
0b071f72f330
Omega_Words_Fun: Infinite words as functions from nat.
lammich <lammich@in.tum.de>
parents:
61174
diff
changeset
|
1097 |
|
60479 | 1098 |
|
60793 | 1099 |
*** ML *** |
1100 |
||
62017 | 1101 |
* The following combinators for low-level profiling of the ML runtime |
1102 |
system are available: |
|
1103 |
||
1104 |
profile_time (*CPU time*) |
|
1105 |
profile_time_thread (*CPU time on this thread*) |
|
1106 |
profile_allocations (*overall heap allocations*) |
|
1107 |
||
1108 |
* Antiquotation @{undefined} or \<^undefined> inlines (raise Match). |
|
1109 |
||
62075 | 1110 |
* Antiquotation @{method NAME} inlines the (checked) name of the given |
1111 |
Isar proof method. |
|
1112 |
||
61922 | 1113 |
* Pretty printing of Poly/ML compiler output in Isabelle has been |
1114 |
improved: proper treatment of break offsets and blocks with consistent |
|
1115 |
breaks. |
|
1116 |
||
61268 | 1117 |
* The auxiliary module Pure/display.ML has been eliminated. Its |
1118 |
elementary thm print operations are now in Pure/more_thm.ML and thus |
|
1119 |
called Thm.pretty_thm, Thm.string_of_thm etc. INCOMPATIBILITY. |
|
1120 |
||
61144 | 1121 |
* Simproc programming interfaces have been simplified: |
1122 |
Simplifier.make_simproc and Simplifier.define_simproc supersede various |
|
1123 |
forms of Simplifier.mk_simproc, Simplifier.simproc_global etc. Note that |
|
1124 |
term patterns for the left-hand sides are specified with implicitly |
|
1125 |
fixed variables, like top-level theorem statements. INCOMPATIBILITY. |
|
1126 |
||
60802 | 1127 |
* Instantiation rules have been re-organized as follows: |
1128 |
||
1129 |
Thm.instantiate (*low-level instantiation with named arguments*) |
|
1130 |
Thm.instantiate' (*version with positional arguments*) |
|
1131 |
||
1132 |
Drule.infer_instantiate (*instantiation with type inference*) |
|
1133 |
Drule.infer_instantiate' (*version with positional arguments*) |
|
1134 |
||
1135 |
The LHS only requires variable specifications, instead of full terms. |
|
1136 |
Old cterm_instantiate is superseded by infer_instantiate. |
|
1137 |
INCOMPATIBILITY, need to re-adjust some ML names and types accordingly. |
|
1138 |
||
60793 | 1139 |
* Old tactic shorthands atac, rtac, etac, dtac, ftac have been |
1140 |
discontinued. INCOMPATIBILITY, use regular assume_tac, resolve_tac etc. |
|
1141 |
instead (with proper context). |
|
60642
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
1142 |
|
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
1143 |
* Thm.instantiate (and derivatives) no longer require the LHS of the |
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
1144 |
instantiation to be certified: plain variables are given directly. |
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
1145 |
|
60707
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
1146 |
* Subgoal.SUBPROOF and Subgoal.FOCUS combinators use anonymous |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
1147 |
quasi-bound variables (like the Simplifier), instead of accidentally |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
1148 |
named local fixes. This has the potential to improve stability of proof |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
1149 |
tools, but can also cause INCOMPATIBILITY for tools that don't observe |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
1150 |
the proof context discipline. |
e96b7be56d44
SUBPROOF and Subgoal.FOCUS combinators use anonymous quasi-bound variables (like the Simplifier);
wenzelm
parents:
60688
diff
changeset
|
1151 |
|
62017 | 1152 |
* Isar proof methods are based on a slightly more general type |
1153 |
context_tactic, which allows to change the proof context dynamically |
|
1154 |
(e.g. to update cases) and indicate explicit Seq.Error results. Former |
|
1155 |
METHOD_CASES is superseded by CONTEXT_METHOD; further combinators are |
|
1156 |
provided in src/Pure/Isar/method.ML for convenience. INCOMPATIBILITY. |
|
61885
acdfc76a6c33
more explicit ML profiling, with official Isabelle output;
wenzelm
parents:
61848
diff
changeset
|
1157 |
|
60642
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
wenzelm
parents:
60631
diff
changeset
|
1158 |
|
60983
ff4a67c65084
updated to polyml-5.5.3-20150820, with native x86-windows support;
wenzelm
parents:
60922
diff
changeset
|
1159 |
*** System *** |
ff4a67c65084
updated to polyml-5.5.3-20150820, with native x86-windows support;
wenzelm
parents:
60922
diff
changeset
|
1160 |
|
62525 | 1161 |
* Command-line tool "isabelle console" enables print mode "ASCII". |
61958 | 1162 |
|
62017 | 1163 |
* Command-line tool "isabelle update_then" expands old Isar command |
1164 |
conflations: |
|
1165 |
||
1166 |
hence ~> then have |
|
1167 |
thus ~> then show |
|
1168 |
||
1169 |
This syntax is more orthogonal and improves readability and |
|
1170 |
maintainability of proofs. |
|
1171 |
||
61602 | 1172 |
* Global session timeout is multiplied by timeout_scale factor. This |
1173 |
allows to adjust large-scale tests (e.g. AFP) to overall hardware |
|
1174 |
performance. |
|
1175 |
||
61174 | 1176 |
* Property values in etc/symbols may contain spaces, if written with the |
62671 | 1177 |
replacement character "␣" (Unicode point 0x2324). For example: |
1178 |
||
1179 |
\<star> code: 0x0022c6 group: operator font: Deja␣Vu␣Sans␣Mono |
|
61174 | 1180 |
|
60995
5176de8f90db
updated to jdk-8u60, with support for x86_64-windows;
wenzelm
parents:
60986
diff
changeset
|
1181 |
* Java runtime environment for x86_64-windows allows to use larger heap |
5176de8f90db
updated to jdk-8u60, with support for x86_64-windows;
wenzelm
parents:
60986
diff
changeset
|
1182 |
space. |
5176de8f90db
updated to jdk-8u60, with support for x86_64-windows;
wenzelm
parents:
60986
diff
changeset
|
1183 |
|
61135
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1184 |
* Java runtime options are determined separately for 32bit vs. 64bit |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1185 |
platforms as follows. |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1186 |
|
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1187 |
- Isabelle desktop application: platform-specific files that are |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1188 |
associated with the main app bundle |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1189 |
|
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1190 |
- isabelle jedit: settings |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1191 |
JEDIT_JAVA_SYSTEM_OPTIONS |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1192 |
JEDIT_JAVA_OPTIONS32 vs. JEDIT_JAVA_OPTIONS64 |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1193 |
|
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1194 |
- isabelle build: settings |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1195 |
ISABELLE_BUILD_JAVA_OPTIONS32 vs. ISABELLE_BUILD_JAVA_OPTIONS64 |
8f7d802b7a71
clarified Java runtime options (NB: ISABELLE_JAVA_PLATFORM is determined later via component);
wenzelm
parents:
61134
diff
changeset
|
1196 |
|
61294 | 1197 |
* Bash shell function "jvmpath" has been renamed to "platform_path": it |
1198 |
is relevant both for Poly/ML and JVM processes. |
|
1199 |
||
62017 | 1200 |
* Poly/ML default platform architecture may be changed from 32bit to |
62205 | 1201 |
64bit via system option ML_system_64. A system restart (and rebuild) is |
1202 |
required after change. |
|
62017 | 1203 |
|
1204 |
* Poly/ML 5.6 runs natively on x86-windows and x86_64-windows, which |
|
1205 |
both allow larger heap space than former x86-cygwin. |
|
1206 |
||
62157 | 1207 |
* Heap images are 10-15% smaller due to less wasteful persistent theory |
1208 |
content (using ML type theory_id instead of theory); |
|
1209 |
||
60983
ff4a67c65084
updated to polyml-5.5.3-20150820, with native x86-windows support;
wenzelm
parents:
60922
diff
changeset
|
1210 |
|
60479 | 1211 |
|
60009 | 1212 |
New in Isabelle2015 (May 2015) |
1213 |
------------------------------ |
|
57695 | 1214 |
|
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
1215 |
*** General *** |
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
1216 |
|
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59936
diff
changeset
|
1217 |
* Local theory specification commands may have a 'private' or |
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59967
diff
changeset
|
1218 |
'qualified' modifier to restrict name space accesses to the local scope, |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59936
diff
changeset
|
1219 |
as provided by some "context begin ... end" block. For example: |
59926 | 1220 |
|
1221 |
context |
|
1222 |
begin |
|
1223 |
||
1224 |
private definition ... |
|
1225 |
private lemma ... |
|
1226 |
||
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59967
diff
changeset
|
1227 |
qualified definition ... |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59967
diff
changeset
|
1228 |
qualified lemma ... |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59967
diff
changeset
|
1229 |
|
59926 | 1230 |
lemma ... |
1231 |
theorem ... |
|
1232 |
||
1233 |
end |
|
1234 |
||
59901 | 1235 |
* Command 'experiment' opens an anonymous locale context with private |
1236 |
naming policy. |
|
1237 |
||
59951 | 1238 |
* Command 'notepad' requires proper nesting of begin/end and its proof |
1239 |
structure in the body: 'oops' is no longer supported here. Minor |
|
1240 |
INCOMPATIBILITY, use 'sorry' instead. |
|
1241 |
||
1242 |
* Command 'named_theorems' declares a dynamic fact within the context, |
|
1243 |
together with an attribute to maintain the content incrementally. This |
|
1244 |
supersedes functor Named_Thms in Isabelle/ML, but with a subtle change |
|
1245 |
of semantics due to external visual order vs. internal reverse order. |
|
1246 |
||
1247 |
* 'find_theorems': search patterns which are abstractions are |
|
1248 |
schematically expanded before search. Search results match the naive |
|
1249 |
expectation more closely, particularly wrt. abbreviations. |
|
1250 |
INCOMPATIBILITY. |
|
59648 | 1251 |
|
59569 | 1252 |
* Commands 'method_setup' and 'attribute_setup' now work within a local |
1253 |
theory context. |
|
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
1254 |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58872
diff
changeset
|
1255 |
* Outer syntax commands are managed authentically within the theory |
59569 | 1256 |
context, without implicit global state. Potential for accidental |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58872
diff
changeset
|
1257 |
INCOMPATIBILITY, make sure that required theories are really imported. |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58872
diff
changeset
|
1258 |
|
60115 | 1259 |
* Historical command-line terminator ";" is no longer accepted (and |
1260 |
already used differently in Isar). Minor INCOMPATIBILITY, use "isabelle |
|
1261 |
update_semicolons" to remove obsolete semicolons from old theory |
|
1262 |
sources. |
|
1263 |
||
59951 | 1264 |
* Structural composition of proof methods (meth1; meth2) in Isar |
1265 |
corresponds to (tac1 THEN_ALL_NEW tac2) in ML. |
|
59105 | 1266 |
|
60119
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60115
diff
changeset
|
1267 |
* The Eisbach proof method language allows to define new proof methods |
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60115
diff
changeset
|
1268 |
by combining existing ones with their usual syntax. The "match" proof |
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60115
diff
changeset
|
1269 |
method provides basic fact/term matching in addition to |
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60115
diff
changeset
|
1270 |
premise/conclusion matching through Subgoal.focus, and binds fact names |
60288
d7f636331176
added Eisbach manual, using version 8845c4cb28b6 of its Bitbucket repository;
wenzelm
parents:
60273
diff
changeset
|
1271 |
from matches as well as term patterns within matches. The Isabelle |
d7f636331176
added Eisbach manual, using version 8845c4cb28b6 of its Bitbucket repository;
wenzelm
parents:
60273
diff
changeset
|
1272 |
documentation provides an entry "eisbach" for the Eisbach User Manual. |
d7f636331176
added Eisbach manual, using version 8845c4cb28b6 of its Bitbucket repository;
wenzelm
parents:
60273
diff
changeset
|
1273 |
Sources and various examples are in ~~/src/HOL/Eisbach/. |
60119
54bea620e54f
added Eisbach, using version 3752768caa17 of its Bitbucket repository;
wenzelm
parents:
60115
diff
changeset
|
1274 |
|
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
1275 |
|
58524 | 1276 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
1277 |
||
59569 | 1278 |
* Improved folding mode "isabelle" based on Isar syntax. Alternatively, |
1279 |
the "sidekick" mode may be used for document structure. |
|
1280 |
||
1281 |
* Extended bracket matching based on Isar language structure. System |
|
1282 |
option jedit_structure_limit determines maximum number of lines to scan |
|
1283 |
in the buffer. |
|
58758 | 1284 |
|
58540 | 1285 |
* Support for BibTeX files: context menu, context-sensitive token |
1286 |
marker, SideKick parser. |
|
58524 | 1287 |
|
58551 | 1288 |
* Document antiquotation @{cite} provides formal markup, which is |
60265 | 1289 |
interpreted semi-formally based on .bib files that happen to be open in |
1290 |
the editor (hyperlinks, completion etc.). |
|
58551 | 1291 |
|
58785 | 1292 |
* Less waste of vertical space via negative line spacing (see Global |
1293 |
Options / Text Area). |
|
1294 |
||
60089
8bd5999133d4
let the system choose Graph_Display.display_graph_old: thm_deps needs tree hierarchy, code_deps needs cycles (!?);
wenzelm
parents:
60085
diff
changeset
|
1295 |
* Improved graphview panel with optional output of PNG or PDF, for |
60273
83de10e27007
use display_graph_old for locale_deps, to show a bit more than nothing for cyclic graphs;
wenzelm
parents:
60265
diff
changeset
|
1296 |
display of 'thy_deps', 'class_deps' etc. |
60009 | 1297 |
|
60115 | 1298 |
* The commands 'thy_deps' and 'class_deps' allow optional bounds to |
1299 |
restrict the visualized hierarchy. |
|
60093 | 1300 |
|
60072 | 1301 |
* Improved scheduling for asynchronous print commands (e.g. provers |
1302 |
managed by the Sledgehammer panel) wrt. ongoing document processing. |
|
1303 |
||
58524 | 1304 |
|
59951 | 1305 |
*** Document preparation *** |
1306 |
||
1307 |
* Document markup commands 'chapter', 'section', 'subsection', |
|
1308 |
'subsubsection', 'text', 'txt', 'text_raw' work uniformly in any |
|
1309 |
context, even before the initial 'theory' command. Obsolete proof |
|
1310 |
commands 'sect', 'subsect', 'subsubsect', 'txt_raw' have been |
|
1311 |
discontinued, use 'section', 'subsection', 'subsubsection', 'text_raw' |
|
1312 |
instead. The old 'header' command is still retained for some time, but |
|
1313 |
should be replaced by 'chapter', 'section' etc. (using "isabelle |
|
1314 |
update_header"). Minor INCOMPATIBILITY. |
|
1315 |
||
60009 | 1316 |
* Official support for "tt" style variants, via \isatt{...} or |
1317 |
\begin{isabellett}...\end{isabellett}. The somewhat fragile \verb or |
|
1318 |
verbatim environment of LaTeX is no longer used. This allows @{ML} etc. |
|
1319 |
as argument to other macros (such as footnotes). |
|
1320 |
||
1321 |
* Document antiquotation @{verbatim} prints ASCII text literally in "tt" |
|
1322 |
style. |
|
1323 |
||
1324 |
* Discontinued obsolete option "document_graph": session_graph.pdf is |
|
1325 |
produced unconditionally for HTML browser_info and PDF-LaTeX document. |
|
1326 |
||
59951 | 1327 |
* Diagnostic commands and document markup commands within a proof do not |
1328 |
affect the command tag for output. Thus commands like 'thm' are subject |
|
1329 |
to proof document structure, and no longer "stick out" accidentally. |
|
1330 |
Commands 'text' and 'txt' merely differ in the LaTeX style, not their |
|
1331 |
tags. Potential INCOMPATIBILITY in exotic situations. |
|
1332 |
||
1333 |
* System option "pretty_margin" is superseded by "thy_output_margin", |
|
1334 |
which is also accessible via document antiquotation option "margin". |
|
1335 |
Only the margin for document output may be changed, but not the global |
|
1336 |
pretty printing: that is 76 for plain console output, and adapted |
|
1337 |
dynamically in GUI front-ends. Implementations of document |
|
1338 |
antiquotations need to observe the margin explicitly according to |
|
1339 |
Thy_Output.string_of_margin. Minor INCOMPATIBILITY. |
|
1340 |
||
60299
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
1341 |
* Specification of 'document_files' in the session ROOT file is |
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
1342 |
mandatory for document preparation. The legacy mode with implicit |
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
1343 |
copying of the document/ directory is no longer supported. Minor |
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
1344 |
INCOMPATIBILITY. |
5ae2a2e74c93
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
wenzelm
parents:
60288
diff
changeset
|
1345 |
|
59951 | 1346 |
|
58202 | 1347 |
*** Pure *** |
1348 |
||
59835
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
1349 |
* Proof methods with explicit instantiation ("rule_tac", "subgoal_tac" |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
1350 |
etc.) allow an optional context of local variables ('for' declaration): |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
1351 |
these variables become schematic in the instantiated theorem; this |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
1352 |
behaviour is analogous to 'for' in attributes "where" and "of". |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
1353 |
Configuration option rule_insts_schematic (default false) controls use |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
1354 |
of schematic variables outside the context. Minor INCOMPATIBILITY, |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
1355 |
declare rule_insts_schematic = true temporarily and update to use local |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
1356 |
variable declarations or dummy patterns instead. |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
1357 |
|
60009 | 1358 |
* Explicit instantiation via attributes "where", "of", and proof methods |
1359 |
"rule_tac" with derivatives like "subgoal_tac" etc. admit dummy patterns |
|
1360 |
("_") that stand for anonymous local variables. |
|
1361 |
||
59951 | 1362 |
* Generated schematic variables in standard format of exported facts are |
1363 |
incremented to avoid material in the proof context. Rare |
|
1364 |
INCOMPATIBILITY, explicit instantiation sometimes needs to refer to |
|
1365 |
different index. |
|
1366 |
||
60010 | 1367 |
* Lexical separation of signed and unsigned numerals: categories "num" |
1368 |
and "float" are unsigned. INCOMPATIBILITY: subtle change in precedence |
|
1369 |
of numeral signs, particularly in expressions involving infix syntax |
|
1370 |
like "(- 1) ^ n". |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58373
diff
changeset
|
1371 |
|
58421 | 1372 |
* Old inner token category "xnum" has been discontinued. Potential |
1373 |
INCOMPATIBILITY for exotic syntax: may use mixfix grammar with "num" |
|
1374 |
token category instead. |
|
1375 |
||
58202 | 1376 |
|
57737 | 1377 |
*** HOL *** |
1378 |
||
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1379 |
* New (co)datatype package: |
58373 | 1380 |
- The 'datatype_new' command has been renamed 'datatype'. The old |
1381 |
command of that name is now called 'old_datatype' and is provided |
|
1382 |
by "~~/src/HOL/Library/Old_Datatype.thy". See |
|
1383 |
'isabelle doc datatypes' for information on porting. |
|
1384 |
INCOMPATIBILITY. |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1385 |
- Renamed theorems: |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1386 |
disc_corec ~> corec_disc |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1387 |
disc_corec_iff ~> corec_disc_iff |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1388 |
disc_exclude ~> distinct_disc |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1389 |
disc_exhaust ~> exhaust_disc |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1390 |
disc_map_iff ~> map_disc_iff |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1391 |
sel_corec ~> corec_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1392 |
sel_exhaust ~> exhaust_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1393 |
sel_map ~> map_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1394 |
sel_set ~> set_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1395 |
sel_split ~> split_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1396 |
sel_split_asm ~> split_sel_asm |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1397 |
strong_coinduct ~> coinduct_strong |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1398 |
weak_case_cong ~> case_cong_weak |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
1399 |
INCOMPATIBILITY. |