wenzelm@5363
|
1 |
Isabelle NEWS -- history user-relevant changes
|
wenzelm@5363
|
2 |
==============================================
|
wenzelm@2553
|
3 |
|
wenzelm@27122
|
4 |
New in this Isabelle version
|
wenzelm@27122
|
5 |
----------------------------
|
haftmann@27104
|
6 |
|
wenzelm@27599
|
7 |
*** General ***
|
wenzelm@27599
|
8 |
|
wenzelm@28504
|
9 |
* Simplified main Isabelle executables, with less surprises on
|
wenzelm@28504
|
10 |
case-insensitive file-systems (such as Mac OS).
|
wenzelm@28504
|
11 |
|
wenzelm@28504
|
12 |
- The main Isabelle tool wrapper is now called "isabelle" instead of
|
wenzelm@28504
|
13 |
"isatool."
|
wenzelm@28504
|
14 |
|
wenzelm@28504
|
15 |
- The former "isabelle" alias for "isabelle-process" has been
|
wenzelm@28504
|
16 |
removed (should rarely occur to regular users).
|
wenzelm@28504
|
17 |
|
wenzelm@28504
|
18 |
- The "Isabelle" alias for "isabelle-interface" has been removed.
|
wenzelm@28504
|
19 |
|
wenzelm@28504
|
20 |
Within scripts and make files, the Isabelle environment variables
|
wenzelm@28504
|
21 |
ISABELLE_TOOL and ISABELLE_PROCESS replace old ISATOOL and ISABELLE,
|
wenzelm@28504
|
22 |
respectively. (The latter are still available as legacy feature.)
|
wenzelm@28504
|
23 |
|
wenzelm@28504
|
24 |
Also note that user interfaces are now better wrapped as regular
|
wenzelm@28504
|
25 |
Isabelle tools instead of using the special isabelle-interface wrapper
|
wenzelm@28504
|
26 |
(which can be confusing if the interface is uninstalled or changed
|
wenzelm@28504
|
27 |
otherwise). See "isabelle tty" and "isabelle emacs" for contemporary
|
wenzelm@28504
|
28 |
examples.
|
wenzelm@28504
|
29 |
|
wenzelm@28504
|
30 |
INCOMPATIBILITY, need to adapt derivative scripts. Users may need to
|
wenzelm@28504
|
31 |
purge installed copies of Isabelle executables and re-run "isabelle
|
wenzelm@28504
|
32 |
install -p ...", or use symlinks.
|
wenzelm@28504
|
33 |
|
wenzelm@28252
|
34 |
* The Isabelle System Manual (system) has been updated, with formally
|
wenzelm@28252
|
35 |
checked references as hyperlinks.
|
wenzelm@28252
|
36 |
|
wenzelm@27599
|
37 |
* Generalized Isar history, with support for linear undo, direct state
|
wenzelm@27599
|
38 |
addressing etc.
|
haftmann@27104
|
39 |
|
wenzelm@27191
|
40 |
* Recovered hiding of consts, which was accidentally broken in
|
wenzelm@27191
|
41 |
Isabelle2007. Potential INCOMPATIBILITY, ``hide const c'' really
|
wenzelm@27191
|
42 |
makes c inaccessible; consider using ``hide (open) const c'' instead.
|
wenzelm@27191
|
43 |
|
wenzelm@27599
|
44 |
* Removed exotic 'token_translation' command. INCOMPATIBILITY, use ML
|
wenzelm@27599
|
45 |
interface instead.
|
wenzelm@27599
|
46 |
|
wenzelm@27599
|
47 |
|
wenzelm@27599
|
48 |
*** Pure ***
|
wenzelm@27599
|
49 |
|
wenzelm@28629
|
50 |
* Goal-directed proof now enforces strict proof irrelevance wrt. sort
|
wenzelm@28629
|
51 |
hypotheses. Sorts required in the course of reasoning need to be
|
wenzelm@28629
|
52 |
covered by the constraints in the initial statement, completed by the
|
wenzelm@28629
|
53 |
type instance information of the background theory. Non-trivial sort
|
wenzelm@28629
|
54 |
hypotheses, which rarely occur in practice, may be specified via
|
wenzelm@28633
|
55 |
vacuous propositions of the form SORT_CONSTRAINT('a::c). For example:
|
wenzelm@28629
|
56 |
|
wenzelm@28629
|
57 |
lemma assumes "SORT_CONSTRAINT('a::empty)" shows False ...
|
wenzelm@28629
|
58 |
|
wenzelm@28629
|
59 |
The result contains an implicit sort hypotheses as before --
|
wenzelm@28631
|
60 |
SORT_CONSTRAINT premises are eliminated as part of the canonical rule
|
wenzelm@28631
|
61 |
normalization.
|
wenzelm@28629
|
62 |
|
wenzelm@28178
|
63 |
* Changed defaults for unify configuration options:
|
wenzelm@28178
|
64 |
|
wenzelm@28178
|
65 |
unify_trace_bound = 50 (formerly 25)
|
wenzelm@28178
|
66 |
unify_search_bound = 60 (formerly 30)
|
wenzelm@28178
|
67 |
|
haftmann@28143
|
68 |
* Different bookkeeping for code equations:
|
haftmann@28143
|
69 |
a) On theory merge, the last set of code equations for a particular constant
|
haftmann@28143
|
70 |
is taken (in accordance with the policy applied by other parts of the
|
haftmann@28143
|
71 |
code generator framework).
|
haftmann@28143
|
72 |
b) Code equations stemming from explicit declarations (e.g. code attribute)
|
haftmann@28143
|
73 |
gain priority over default code equations stemming from definition, primrec,
|
haftmann@28143
|
74 |
fun etc.
|
haftmann@28143
|
75 |
INCOMPATIBILITY.
|
haftmann@28143
|
76 |
|
haftmann@28058
|
77 |
* Global versions of theorems stemming from classes do not carry
|
haftmann@28058
|
78 |
a parameter prefix any longer. INCOMPATIBILITY.
|
haftmann@28058
|
79 |
|
ballarin@28710
|
80 |
* Dropped locale element "includes". This is a major INCOMPATIBILITY.
|
ballarin@28710
|
81 |
In existing theorem specifications replace the includes element by the
|
ballarin@28710
|
82 |
respective context elements of the included locale, omitting those that
|
ballarin@28710
|
83 |
are already present in the theorem specification. Multiple assume
|
ballarin@28710
|
84 |
elements of a locale should be replaced by a single one involving the
|
ballarin@28710
|
85 |
locale predicate. In the proof body, declarations (most notably
|
ballarin@28710
|
86 |
theorems) may be regained by interpreting the respective locales in the
|
ballarin@28710
|
87 |
proof context as required (command "interpret").
|
ballarin@28710
|
88 |
If using "includes" in replacement of a target solely because the
|
ballarin@28710
|
89 |
parameter types in the theorem are not as general as in the target,
|
ballarin@28710
|
90 |
consider declaring a new locale with additional type constraints on the
|
ballarin@28710
|
91 |
parameters (context element "constrains").
|
ballarin@28710
|
92 |
|
ballarin@27761
|
93 |
* Dropped "locale (open)". INCOMPATBILITY.
|
ballarin@27761
|
94 |
|
ballarin@28085
|
95 |
* Interpretation commands no longer attempt to simplify goal.
|
ballarin@27761
|
96 |
INCOMPATIBILITY: in rare situations the generated goal differs. Use
|
ballarin@27761
|
97 |
methods intro_locales and unfold_locales to clarify.
|
haftmann@27681
|
98 |
|
ballarin@28085
|
99 |
* Interpretation commands no longer accept interpretation attributes.
|
ballarin@28085
|
100 |
INCOMPATBILITY.
|
ballarin@28085
|
101 |
|
haftmann@27651
|
102 |
* Command 'instance': attached definitions no longer accepted.
|
wenzelm@27141
|
103 |
INCOMPATIBILITY, use proper 'instantiation' target.
|
haftmann@27104
|
104 |
|
haftmann@27104
|
105 |
* Keyword 'code_exception' now named 'code_abort'. INCOMPATIBILITY.
|
haftmann@27104
|
106 |
|
wenzelm@28114
|
107 |
* The 'axiomatization' command now only works within a global theory
|
wenzelm@28114
|
108 |
context. INCOMPATIBILITY.
|
wenzelm@28114
|
109 |
|
haftmann@27104
|
110 |
|
wenzelm@27381
|
111 |
*** Document preparation ***
|
wenzelm@27381
|
112 |
|
wenzelm@27381
|
113 |
* Antiquotation @{lemma} now imitates a regular terminal proof,
|
wenzelm@27392
|
114 |
demanding keyword 'by' and supporting the full method expression
|
wenzelm@27519
|
115 |
syntax just like the Isar command 'by'.
|
wenzelm@27381
|
116 |
|
wenzelm@27381
|
117 |
|
haftmann@27104
|
118 |
*** HOL ***
|
haftmann@27104
|
119 |
|
haftmann@28741
|
120 |
* If methods "eval" and "evaluation" encounter a structured proof state
|
haftmann@28741
|
121 |
with !!/==>, only the conclusion is evaluated to True (if possible),
|
haftmann@28741
|
122 |
avoiding strange error messages.
|
haftmann@28741
|
123 |
|
haftmann@28741
|
124 |
* Simplifier: simproc for let expressions now unfolds if bound variable
|
haftmann@28741
|
125 |
occurs at most one time in let expression body. INCOMPATIBILITY.
|
haftmann@28741
|
126 |
|
haftmann@28685
|
127 |
* New classes "top" and "bot" with corresponding operations "top" and "bot"
|
haftmann@28685
|
128 |
in theory Orderings; instantiation of class "complete_lattice" requires
|
haftmann@28685
|
129 |
instantiation of classes "top" and "bot". INCOMPATIBILITY.
|
haftmann@28685
|
130 |
|
haftmann@28685
|
131 |
* Changed definition lemma "less_fun_def" in order to provide an instance
|
haftmann@28685
|
132 |
for preorders on functions; use lemma "less_le" instead. INCOMPATIBILITY.
|
haftmann@28685
|
133 |
|
wenzelm@28604
|
134 |
* Unified theorem tables for both code code generators. Thus
|
wenzelm@28604
|
135 |
[code func] has disappeared and only [code] remains. INCOMPATIBILITY.
|
wenzelm@28604
|
136 |
|
haftmann@28685
|
137 |
* Constants "undefined" and "default" replace "arbitrary". Usually
|
haftmann@28685
|
138 |
"undefined" is the right choice to replace "arbitrary", though logically
|
haftmann@28685
|
139 |
there is no difference. INCOMPATIBILITY.
|
wenzelm@28604
|
140 |
|
wenzelm@28604
|
141 |
* Generic ATP manager for Sledgehammer, based on ML threads instead of
|
wenzelm@28605
|
142 |
Posix processes. Avoids potentially expensive forking of the ML
|
wenzelm@28605
|
143 |
process. New thread-based implementation also works on non-Unix
|
wenzelm@28605
|
144 |
platforms (Cygwin). Provers are no longer hardwired, but defined
|
wenzelm@28606
|
145 |
within the theory via plain ML wrapper functions. Basic Sledgehammer
|
wenzelm@28606
|
146 |
commands are covered in the isar-ref manual
|
wenzelm@28604
|
147 |
|
wenzelm@28604
|
148 |
* Wrapper scripts for remote SystemOnTPTP service allows to use
|
wenzelm@28475
|
149 |
sledgehammer without local ATP installation (Vampire etc.). See also
|
wenzelm@28475
|
150 |
ISABELLE_HOME/contrib/SystemOnTPTP and the VAMPIRE_HOME setting
|
wenzelm@28604
|
151 |
variable. Other provers may be included via suitable ML wrappers, see
|
wenzelm@28604
|
152 |
also src/HOL/ATP_Linkup.thy.
|
wenzelm@28474
|
153 |
|
haftmann@28350
|
154 |
* Normalization by evaluation now allows non-leftlinear equations.
|
haftmann@28350
|
155 |
Declare with attribute [code nbe].
|
haftmann@28350
|
156 |
|
haftmann@28350
|
157 |
* Command "value" now integrates different evaluation
|
wenzelm@28248
|
158 |
mechanisms. The result of the first successful evaluation mechanism
|
wenzelm@28248
|
159 |
is printed. In square brackets a particular named evaluation
|
wenzelm@28248
|
160 |
mechanisms may be specified (currently, [SML], [code] or [nbe]). See
|
wenzelm@28248
|
161 |
further src/HOL/ex/Eval_Examples.thy.
|
haftmann@28227
|
162 |
|
wenzelm@28088
|
163 |
* HOL/Orderings: class "wellorder" moved here, with explicit induction
|
wenzelm@28088
|
164 |
rule "less_induct" as assumption. For instantiation of "wellorder" by
|
wenzelm@28088
|
165 |
means of predicate "wf", use rule wf_wellorderI. INCOMPATIBILITY.
|
haftmann@27823
|
166 |
|
wenzelm@27793
|
167 |
* HOL/Orderings: added class "preorder" as superclass of "order".
|
wenzelm@27793
|
168 |
INCOMPATIBILITY: Instantiation proofs for order, linorder
|
wenzelm@27793
|
169 |
etc. slightly changed. Some theorems named order_class.* now named
|
wenzelm@27793
|
170 |
preorder_class.*.
|
wenzelm@27793
|
171 |
|
wenzelm@27793
|
172 |
* HOL/Ring_and_Field and HOL/Divides: Definition of "op dvd" has been
|
wenzelm@27793
|
173 |
moved to separate class dvd in Ring_and_Field; a couple of lemmas on
|
wenzelm@27793
|
174 |
dvd has been generalized to class comm_semiring_1. Likewise a bunch
|
wenzelm@27793
|
175 |
of lemmas from Divides has been generalized from nat to class
|
wenzelm@27793
|
176 |
semiring_div. INCOMPATIBILITY. This involves the following theorem
|
wenzelm@27793
|
177 |
renames resulting from duplicate elimination:
|
haftmann@27651
|
178 |
|
haftmann@27651
|
179 |
dvd_def_mod ~> dvd_eq_mod_eq_0
|
haftmann@27651
|
180 |
zero_dvd_iff ~> dvd_0_left_iff
|
haftmann@28559
|
181 |
dvd_0 ~> dvd_0_right
|
haftmann@27651
|
182 |
DIVISION_BY_ZERO_DIV ~> div_by_0
|
haftmann@27651
|
183 |
DIVISION_BY_ZERO_MOD ~> mod_by_0
|
haftmann@27651
|
184 |
mult_div ~> div_mult_self2_is_id
|
haftmann@27651
|
185 |
mult_mod ~> mod_mult_self2_is_0
|
haftmann@27651
|
186 |
|
wenzelm@27599
|
187 |
* HOL/Library/GCD: Curried operations gcd, lcm (for nat) and zgcd,
|
wenzelm@27599
|
188 |
zlcm (for int); carried together from various gcd/lcm developements in
|
wenzelm@27599
|
189 |
the HOL Distribution. zgcd and zlcm replace former igcd and ilcm;
|
wenzelm@27599
|
190 |
corresponding theorems renamed accordingly. INCOMPATIBILY. To
|
wenzelm@27599
|
191 |
recover tupled syntax, use syntax declarations like:
|
haftmann@27556
|
192 |
|
haftmann@27556
|
193 |
hide (open) const gcd
|
haftmann@27556
|
194 |
abbreviation gcd where
|
haftmann@27556
|
195 |
"gcd == (%(a, b). GCD.gcd a b)"
|
haftmann@27556
|
196 |
notation (output)
|
haftmann@27556
|
197 |
GCD.gcd ("gcd '(_, _')")
|
haftmann@27556
|
198 |
|
haftmann@27556
|
199 |
(analogously for lcm, zgcd, zlcm).
|
haftmann@27556
|
200 |
|
haftmann@27556
|
201 |
* HOL/Real/Rational: 'Fract k 0' now equals '0'. INCOMPATIBILITY.
|
haftmann@27551
|
202 |
|
haftmann@27651
|
203 |
* New ML antiquotation @{code}: takes constant as argument, generates
|
haftmann@27651
|
204 |
corresponding code in background and inserts name of the corresponding
|
haftmann@27651
|
205 |
resulting ML value/function/datatype constructor binding in place.
|
haftmann@27651
|
206 |
All occurrences of @{code} with a single ML block are generated
|
haftmann@27651
|
207 |
simultaneously. Provides a generic and safe interface for
|
haftmann@27651
|
208 |
instrumentalizing code generation. See HOL/ex/Code_Antiq for a toy
|
haftmann@27651
|
209 |
example, or HOL/Complex/ex/ReflectedFerrack for a more ambitious
|
haftmann@27651
|
210 |
application. In future you ought refrain from ad-hoc compiling
|
haftmann@27651
|
211 |
generated SML code on the ML toplevel. Note that (for technical
|
haftmann@27651
|
212 |
reasons) @{code} cannot refer to constants for which user-defined
|
haftmann@27651
|
213 |
serializations are set. Refer to the corresponding ML counterpart
|
haftmann@27651
|
214 |
directly in that cases.
|
haftmann@27651
|
215 |
|
haftmann@27424
|
216 |
* Integrated image HOL-Complex with HOL. Entry points Main.thy and
|
haftmann@27424
|
217 |
Complex_Main.thy remain as they are.
|
haftmann@27424
|
218 |
|
wenzelm@27599
|
219 |
* New image HOL-Plain provides a minimal HOL with the most important
|
wenzelm@27599
|
220 |
tools available (inductive, datatype, primrec, ...). By convention
|
wenzelm@27599
|
221 |
the corresponding theory Plain should be ancestor of every further
|
wenzelm@27599
|
222 |
(library) theory. Some library theories now have ancestor Plain
|
wenzelm@27599
|
223 |
(instead of Main), thus theory Main occasionally has to be imported
|
wenzelm@27599
|
224 |
explicitly.
|
haftmann@27421
|
225 |
|
wenzelm@28248
|
226 |
* The metis method now fails in the usual manner, rather than raising
|
wenzelm@28248
|
227 |
an exception, if it determines that it cannot prove the theorem.
|
paulson@28233
|
228 |
|
paulson@28700
|
229 |
* The metis method no longer fails because the theorem is too trivial
|
paulson@28700
|
230 |
(contains the empty clause).
|
paulson@28700
|
231 |
|
wenzelm@27324
|
232 |
* Methods "case_tac" and "induct_tac" now refer to the very same rules
|
wenzelm@27324
|
233 |
as the structured Isar versions "cases" and "induct", cf. the
|
wenzelm@27324
|
234 |
corresponding "cases" and "induct" attributes. Mutual induction rules
|
wenzelm@27324
|
235 |
are now presented as a list of individual projections
|
wenzelm@27324
|
236 |
(e.g. foo_bar.inducts for types foo and bar); the old format with
|
wenzelm@27324
|
237 |
explicit HOL conjunction is no longer supported. INCOMPATIBILITY, in
|
wenzelm@27324
|
238 |
rare situations a different rule is selected --- notably nested tuple
|
wenzelm@27324
|
239 |
elimination instead of former prod.exhaust: use explicit (case_tac t
|
wenzelm@27324
|
240 |
rule: prod.exhaust) here.
|
wenzelm@27122
|
241 |
|
wenzelm@27141
|
242 |
* Attributes "cases", "induct", "coinduct" support "del" option.
|
wenzelm@27141
|
243 |
|
wenzelm@27122
|
244 |
* Removed fact "case_split_thm", which duplicates "case_split".
|
wenzelm@27122
|
245 |
|
wenzelm@27122
|
246 |
* Command 'rep_datatype': instead of theorem names the command now
|
wenzelm@27122
|
247 |
takes a list of terms denoting the constructors of the type to be
|
wenzelm@27122
|
248 |
represented as datatype. The characteristic theorems have to be
|
wenzelm@27122
|
249 |
proven. INCOMPATIBILITY. Also observe that the following theorems
|
wenzelm@27122
|
250 |
have disappeared in favour of existing ones:
|
wenzelm@27122
|
251 |
|
haftmann@27104
|
252 |
unit_induct ~> unit.induct
|
haftmann@27104
|
253 |
prod_induct ~> prod.induct
|
haftmann@27104
|
254 |
sum_induct ~> sum.induct
|
haftmann@27104
|
255 |
Suc_Suc_eq ~> nat.inject
|
haftmann@27104
|
256 |
Suc_not_Zero Zero_not_Suc ~> nat.distinct
|
haftmann@27104
|
257 |
|
wenzelm@27122
|
258 |
* Library/Nat_Infinity: added addition, numeral syntax and more
|
wenzelm@27122
|
259 |
instantiations for algebraic structures. Removed some duplicate
|
wenzelm@27122
|
260 |
theorems. Changes in simp rules. INCOMPATIBILITY.
|
haftmann@27104
|
261 |
|
wenzelm@28088
|
262 |
* ATP selection (E/Vampire/Spass) is now via Proof General's settings
|
wenzelm@28088
|
263 |
menu.
|
nipkow@28067
|
264 |
|
haftmann@27104
|
265 |
|
ballarin@27696
|
266 |
*** HOL-Algebra ***
|
ballarin@27696
|
267 |
|
ballarin@27713
|
268 |
* New locales for orders and lattices where the equivalence relation
|
ballarin@27713
|
269 |
is not restricted to equality. INCOMPATIBILITY: all order and
|
ballarin@27713
|
270 |
lattice locales use a record structure with field eq for the
|
ballarin@27713
|
271 |
equivalence.
|
ballarin@27713
|
272 |
|
ballarin@27713
|
273 |
* New theory of factorial domains.
|
ballarin@27713
|
274 |
|
ballarin@27696
|
275 |
* Units_l_inv and Units_r_inv are now simprules by default.
|
ballarin@27696
|
276 |
INCOMPATIBILITY. Simplifier proof that require deletion of l_inv
|
ballarin@27696
|
277 |
and/or r_inv will now also require deletion of these lemmas.
|
ballarin@27696
|
278 |
|
ballarin@27696
|
279 |
* Renamed the following theorems. INCOMPATIBILITY.
|
ballarin@27696
|
280 |
UpperD ~> Upper_memD
|
ballarin@27696
|
281 |
LowerD ~> Lower_memD
|
ballarin@27696
|
282 |
least_carrier ~> least_closed
|
ballarin@27696
|
283 |
greatest_carrier ~> greatest_closed
|
ballarin@27696
|
284 |
greatest_Lower_above ~> greatest_Lower_below
|
ballarin@27717
|
285 |
one_zero ~> carrier_one_zero
|
ballarin@27717
|
286 |
one_not_zero ~> carrier_one_not_zero (collision with assumption)
|
ballarin@27696
|
287 |
|
wenzelm@27793
|
288 |
|
huffman@27485
|
289 |
*** HOL-NSA ***
|
huffman@27485
|
290 |
|
huffman@27485
|
291 |
* Created new image HOL-NSA, containing theories of nonstandard
|
huffman@27485
|
292 |
analysis which were previously part of HOL-Complex. Entry point
|
huffman@27485
|
293 |
Hyperreal.thy remains valid, but theories formerly using
|
huffman@27485
|
294 |
Complex_Main.thy should now use new entry point Hypercomplex.thy.
|
huffman@27485
|
295 |
|
huffman@27485
|
296 |
|
ballarin@27704
|
297 |
*** ZF ***
|
ballarin@27704
|
298 |
|
ballarin@27704
|
299 |
* Proof of Zorn's Lemma for partial orders.
|
ballarin@27704
|
300 |
|
ballarin@27704
|
301 |
|
wenzelm@27246
|
302 |
*** ML ***
|
wenzelm@28088
|
303 |
|
wenzelm@28294
|
304 |
* Simplified ML oracle interface Thm.add_oracle promotes 'a -> cterm
|
wenzelm@28294
|
305 |
to 'a -> thm, while results are always tagged with an authentic oracle
|
wenzelm@28294
|
306 |
name. The Isar command 'oracle' is now polymorphic, no argument type
|
wenzelm@28294
|
307 |
is specified. INCOMPATIBILITY, need to simplify existing oracle code
|
wenzelm@28294
|
308 |
accordingly. Note that extra performance may be gained by producing
|
wenzelm@28294
|
309 |
the cterm carefully, avoiding slow Thm.cterm_of.
|
wenzelm@28294
|
310 |
|
wenzelm@28282
|
311 |
* ML bindings produced via Isar commands are stored within the Isar
|
wenzelm@28282
|
312 |
context (theory or proof). Consequently, commands like 'use' and 'ML'
|
wenzelm@28282
|
313 |
become thread-safe and work with undo as expected (concerning
|
wenzelm@28282
|
314 |
top-level bindings, not side-effects on global references).
|
wenzelm@28282
|
315 |
INCOMPATIBILITY, need to provide proper Isar context when invoking the
|
wenzelm@28282
|
316 |
compiler at runtime; really global bindings need to be given outside a
|
wenzelm@28282
|
317 |
theory. [Poly/ML 5.2 or later]
|
wenzelm@28282
|
318 |
|
wenzelm@28282
|
319 |
* Command 'ML_prf' is analogous to 'ML' but works within a proof
|
wenzelm@28282
|
320 |
context. Top-level ML bindings are stored within the proof context in
|
wenzelm@28282
|
321 |
a purely sequential fashion, disregarding the nested proof structure.
|
wenzelm@28282
|
322 |
ML bindings introduced by 'ML_prf' are discarded at the end of the
|
wenzelm@28282
|
323 |
proof. [Poly/ML 5.2 or later]
|
wenzelm@28282
|
324 |
|
wenzelm@28099
|
325 |
* Generic Toplevel.add_hook interface allows to analyze the result of
|
wenzelm@28103
|
326 |
transactions. E.g. see src/Pure/ProofGeneral/proof_general_pgip.ML
|
wenzelm@28103
|
327 |
for theorem dependency output of transactions resulting in a new
|
wenzelm@28103
|
328 |
theory state.
|
wenzelm@28099
|
329 |
|
wenzelm@28088
|
330 |
* Name bindings in higher specification mechanisms (notably
|
wenzelm@28088
|
331 |
LocalTheory.define, LocalTheory.note, and derived packages) are now
|
wenzelm@28088
|
332 |
formalized as type Name.binding, replacing old bstring.
|
wenzelm@28088
|
333 |
INCOMPATIBILITY, need to wrap strings via Name.binding function, see
|
wenzelm@28088
|
334 |
also Name.name_of. Packages should pass name bindings given by the
|
wenzelm@28088
|
335 |
user to underlying specification mechanisms; this enables precise
|
wenzelm@28088
|
336 |
tracking of source positions, for example.
|
wenzelm@28088
|
337 |
|
wenzelm@28089
|
338 |
* Result facts (from PureThy.note_thms, ProofContext.note_thms,
|
wenzelm@28089
|
339 |
LocalTheory.note etc.) now refer to the *full* internal name, not the
|
wenzelm@28089
|
340 |
bstring as before. INCOMPATIBILITY, not detected by ML type-checking!
|
wenzelm@28089
|
341 |
|
wenzelm@27246
|
342 |
* Rules and tactics that read instantiations (read_instantiate,
|
wenzelm@27246
|
343 |
res_inst_tac, thin_tac, subgoal_tac etc.) now demand a proper proof
|
wenzelm@27246
|
344 |
context, which is required for parsing and type-checking. Moreover,
|
wenzelm@27246
|
345 |
the variables are specified as plain indexnames, not string encodings
|
wenzelm@27246
|
346 |
thereof. INCOMPATIBILITY.
|
wenzelm@27246
|
347 |
|
wenzelm@27287
|
348 |
* Disposed old type and term read functions (Sign.read_def_typ,
|
wenzelm@27287
|
349 |
Sign.read_typ, Sign.read_def_terms, Sign.read_term,
|
wenzelm@27287
|
350 |
Thm.read_def_cterms, Thm.read_cterm etc.). INCOMPATIBILITY, should
|
wenzelm@27287
|
351 |
use regular Syntax.read_typ, Syntax.read_term, Syntax.read_typ_global,
|
wenzelm@27269
|
352 |
Syntax.read_term_global etc.; see also OldGoals.read_term as last
|
wenzelm@27269
|
353 |
resort for legacy applications.
|
wenzelm@27269
|
354 |
|
wenzelm@27380
|
355 |
* Antiquotations: block-structured compilation context indicated by
|
wenzelm@27391
|
356 |
\<lbrace> ... \<rbrace>; additional antiquotation forms:
|
wenzelm@27391
|
357 |
|
wenzelm@27519
|
358 |
@{let ?pat = term} - term abbreviation (HO matching)
|
wenzelm@27519
|
359 |
@{note name = fact} - fact abbreviation
|
wenzelm@27519
|
360 |
@{thm fact} - singleton fact (with attributes)
|
wenzelm@27519
|
361 |
@{thms fact} - general fact (with attributes)
|
wenzelm@27519
|
362 |
@{lemma prop by method} - singleton goal
|
wenzelm@27519
|
363 |
@{lemma prop by meth1 meth2} - singleton goal
|
wenzelm@27519
|
364 |
@{lemma prop1 ... propN by method} - general goal
|
wenzelm@27519
|
365 |
@{lemma prop1 ... propN by meth1 meth2} - general goal
|
wenzelm@27519
|
366 |
@{lemma (open) ...} - open derivation
|
wenzelm@27380
|
367 |
|
wenzelm@27246
|
368 |
|
wenzelm@27979
|
369 |
*** System ***
|
wenzelm@27979
|
370 |
|
wenzelm@28676
|
371 |
* Multithreading for Poly/ML 5.1/5.2 is no longer supported, only for
|
wenzelm@28676
|
372 |
Poly/ML 5.2.1 or later.
|
wenzelm@28254
|
373 |
|
wenzelm@28248
|
374 |
* The Isabelle "emacs" tool provides a specific interface to invoke
|
wenzelm@28248
|
375 |
Proof General / Emacs, with more explicit failure if that is not
|
wenzelm@28248
|
376 |
installed (the old isabelle-interface script silently falls back on
|
wenzelm@28248
|
377 |
isabelle-process). The PROOFGENERAL_HOME setting determines the
|
wenzelm@28248
|
378 |
installation location of the Proof General distribution.
|
wenzelm@28248
|
379 |
|
wenzelm@27979
|
380 |
* Isabelle/lib/classes/Pure.jar provides basic support to integrate
|
wenzelm@27979
|
381 |
the Isabelle process into a JVM/Scala application. See
|
wenzelm@27979
|
382 |
Isabelle/lib/jedit/plugin for a minimal example. (The obsolete Java
|
wenzelm@27979
|
383 |
process wrapper has been discontinued.)
|
wenzelm@27979
|
384 |
|
wenzelm@27979
|
385 |
* Status messages (with exact source position information) are
|
wenzelm@27979
|
386 |
emitted, if proper markup print mode is enabled. This allows
|
wenzelm@27979
|
387 |
user-interface components to provide detailed feedback on internal
|
wenzelm@27979
|
388 |
prover operations.
|
wenzelm@27979
|
389 |
|
wenzelm@27979
|
390 |
* Homegrown Isabelle font with unicode layout, see Isabelle/lib/fonts.
|
wenzelm@27979
|
391 |
|
wenzelm@27979
|
392 |
|
wenzelm@27143
|
393 |
|
wenzelm@27008
|
394 |
New in Isabelle2008 (June 2008)
|
wenzelm@27008
|
395 |
-------------------------------
|
wenzelm@25464
|
396 |
|
wenzelm@25522
|
397 |
*** General ***
|
wenzelm@25522
|
398 |
|
wenzelm@27061
|
399 |
* The Isabelle/Isar Reference Manual (isar-ref) has been reorganized
|
wenzelm@27061
|
400 |
and updated, with formally checked references as hyperlinks.
|
wenzelm@27061
|
401 |
|
wenzelm@25994
|
402 |
* Theory loader: use_thy (and similar operations) no longer set the
|
wenzelm@25994
|
403 |
implicit ML context, which was occasionally hard to predict and in
|
wenzelm@25994
|
404 |
conflict with concurrency. INCOMPATIBILITY, use ML within Isar which
|
wenzelm@25994
|
405 |
provides a proper context already.
|
wenzelm@25994
|
406 |
|
wenzelm@26323
|
407 |
* Theory loader: old-style ML proof scripts being *attached* to a thy
|
wenzelm@26323
|
408 |
file are no longer supported. INCOMPATIBILITY, regular 'uses' and
|
wenzelm@26323
|
409 |
'use' within a theory file will do the job.
|
wenzelm@26323
|
410 |
|
wenzelm@26650
|
411 |
* Name space merge now observes canonical order, i.e. the second space
|
wenzelm@26650
|
412 |
is inserted into the first one, while existing entries in the first
|
wenzelm@26659
|
413 |
space take precedence. INCOMPATIBILITY in rare situations, may try to
|
wenzelm@26650
|
414 |
swap theory imports.
|
wenzelm@26650
|
415 |
|
wenzelm@27067
|
416 |
* Syntax: symbol \<chi> is now considered a letter. Potential
|
wenzelm@27067
|
417 |
INCOMPATIBILITY in identifier syntax etc.
|
wenzelm@27067
|
418 |
|
wenzelm@27067
|
419 |
* Outer syntax: string tokens no longer admit escaped white space,
|
wenzelm@27067
|
420 |
which was an accidental (undocumented) feature. INCOMPATIBILITY, use
|
wenzelm@27067
|
421 |
white space without escapes.
|
wenzelm@27067
|
422 |
|
wenzelm@27067
|
423 |
* Outer syntax: string tokens may contain arbitrary character codes
|
wenzelm@27067
|
424 |
specified via 3 decimal digits (as in SML). E.g. "foo\095bar" for
|
wenzelm@27067
|
425 |
"foo_bar".
|
wenzelm@27067
|
426 |
|
wenzelm@25522
|
427 |
|
haftmann@25502
|
428 |
*** Pure ***
|
haftmann@25502
|
429 |
|
wenzelm@26718
|
430 |
* Context-dependent token translations. Default setup reverts locally
|
wenzelm@26718
|
431 |
fixed variables, and adds hilite markup for undeclared frees.
|
wenzelm@26718
|
432 |
|
berghofe@26681
|
433 |
* Unused theorems can be found using the new command 'unused_thms'.
|
berghofe@26681
|
434 |
There are three ways of invoking it:
|
berghofe@26681
|
435 |
|
berghofe@26681
|
436 |
(1) unused_thms
|
berghofe@26681
|
437 |
Only finds unused theorems in the current theory.
|
berghofe@26681
|
438 |
|
berghofe@26681
|
439 |
(2) unused_thms thy_1 ... thy_n -
|
berghofe@26681
|
440 |
Finds unused theorems in the current theory and all of its ancestors,
|
berghofe@26681
|
441 |
excluding the theories thy_1 ... thy_n and all of their ancestors.
|
berghofe@26681
|
442 |
|
berghofe@26681
|
443 |
(3) unused_thms thy_1 ... thy_n - thy'_1 ... thy'_m
|
berghofe@26681
|
444 |
Finds unused theorems in the theories thy'_1 ... thy'_m and all of
|
berghofe@26681
|
445 |
their ancestors, excluding the theories thy_1 ... thy_n and all of
|
berghofe@26681
|
446 |
their ancestors.
|
berghofe@26681
|
447 |
|
wenzelm@26718
|
448 |
In order to increase the readability of the list produced by
|
wenzelm@26718
|
449 |
unused_thms, theorems that have been created by a particular instance
|
wenzelm@26874
|
450 |
of a theory command such as 'inductive' or 'function' are considered
|
wenzelm@26874
|
451 |
to belong to the same "group", meaning that if at least one theorem in
|
wenzelm@26718
|
452 |
this group is used, the other theorems in the same group are no longer
|
wenzelm@26718
|
453 |
reported as unused. Moreover, if all theorems in the group are
|
wenzelm@26718
|
454 |
unused, only one theorem in the group is displayed.
|
wenzelm@26718
|
455 |
|
wenzelm@26718
|
456 |
Note that proof objects have to be switched on in order for
|
wenzelm@26718
|
457 |
unused_thms to work properly (i.e. !proofs must be >= 1, which is
|
wenzelm@26874
|
458 |
usually the case when using Proof General with the default settings).
|
berghofe@26681
|
459 |
|
wenzelm@26650
|
460 |
* Authentic naming of facts disallows ad-hoc overwriting of previous
|
wenzelm@26650
|
461 |
theorems within the same name space. INCOMPATIBILITY, need to remove
|
wenzelm@26650
|
462 |
duplicate fact bindings, or even accidental fact duplications. Note
|
wenzelm@26650
|
463 |
that tools may maintain dynamically scoped facts systematically, using
|
wenzelm@26650
|
464 |
PureThy.add_thms_dynamic.
|
wenzelm@26650
|
465 |
|
wenzelm@26660
|
466 |
* Command 'hide' now allows to hide from "fact" name space as well.
|
wenzelm@26660
|
467 |
|
wenzelm@26496
|
468 |
* Eliminated destructive theorem database, simpset, claset, and
|
wenzelm@26496
|
469 |
clasimpset. Potential INCOMPATIBILITY, really need to observe linear
|
wenzelm@26496
|
470 |
update of theories within ML code.
|
wenzelm@26479
|
471 |
|
wenzelm@26955
|
472 |
* Eliminated theory ProtoPure and CPure, leaving just one Pure theory.
|
wenzelm@26955
|
473 |
INCOMPATIBILITY, object-logics depending on former Pure require
|
wenzelm@26955
|
474 |
additional setup PureThy.old_appl_syntax_setup; object-logics
|
wenzelm@26955
|
475 |
depending on former CPure need to refer to Pure.
|
wenzelm@26650
|
476 |
|
wenzelm@26495
|
477 |
* Commands 'use' and 'ML' are now purely functional, operating on
|
wenzelm@26479
|
478 |
theory/local_theory. Removed former 'ML_setup' (on theory), use 'ML'
|
wenzelm@26479
|
479 |
instead. Added 'ML_val' as mere diagnostic replacement for 'ML'.
|
wenzelm@26479
|
480 |
INCOMPATIBILITY.
|
wenzelm@26479
|
481 |
|
wenzelm@26874
|
482 |
* Command 'setup': discontinued implicit version with ML reference.
|
wenzelm@26434
|
483 |
|
wenzelm@25970
|
484 |
* Instantiation target allows for simultaneous specification of class
|
wenzelm@25970
|
485 |
instance operations together with an instantiation proof.
|
wenzelm@25970
|
486 |
Type-checking phase allows to refer to class operations uniformly.
|
wenzelm@27067
|
487 |
See src/HOL/Complex/Complex.thy for an Isar example and
|
wenzelm@27067
|
488 |
src/HOL/Library/Eval.thy for an ML example.
|
haftmann@25502
|
489 |
|
wenzelm@26201
|
490 |
* Indexing of literal facts: be more serious about including only
|
wenzelm@26201
|
491 |
facts from the visible specification/proof context, but not the
|
wenzelm@26201
|
492 |
background context (locale etc.). Affects `prop` notation and method
|
wenzelm@26201
|
493 |
"fact". INCOMPATIBILITY: need to name facts explicitly in rare
|
wenzelm@26201
|
494 |
situations.
|
wenzelm@26201
|
495 |
|
wenzelm@26925
|
496 |
* Method "cases", "induct", "coinduct": removed obsolete/undocumented
|
wenzelm@26925
|
497 |
"(open)" option, which used to expose internal bound variables to the
|
wenzelm@26925
|
498 |
proof text.
|
wenzelm@26925
|
499 |
|
wenzelm@26925
|
500 |
* Isar statements: removed obsolete case "rule_context".
|
wenzelm@26925
|
501 |
INCOMPATIBILITY, better use explicit fixes/assumes.
|
wenzelm@26925
|
502 |
|
wenzelm@26874
|
503 |
* Locale proofs: default proof step now includes 'unfold_locales';
|
wenzelm@26874
|
504 |
hence 'proof' without argument may be used to unfold locale
|
wenzelm@26874
|
505 |
predicates.
|
ballarin@26765
|
506 |
|
ballarin@26765
|
507 |
|
haftmann@26762
|
508 |
*** Document preparation ***
|
haftmann@26762
|
509 |
|
wenzelm@26914
|
510 |
* Simplified pdfsetup.sty: color/hyperref is used unconditionally for
|
wenzelm@26914
|
511 |
both pdf and dvi (hyperlinks usually work in xdvi as well); removed
|
wenzelm@26914
|
512 |
obsolete thumbpdf setup (contemporary PDF viewers do this on the
|
wenzelm@26914
|
513 |
spot); renamed link color from "darkblue" to "linkcolor" (default
|
wenzelm@26920
|
514 |
value unchanged, can be redefined via \definecolor); no longer sets
|
wenzelm@26920
|
515 |
"a4paper" option (unnecessary or even intrusive).
|
wenzelm@26914
|
516 |
|
wenzelm@27008
|
517 |
* Antiquotation @{lemma A method} proves proposition A by the given
|
wenzelm@27008
|
518 |
method (either a method name or a method name plus (optional) method
|
wenzelm@27008
|
519 |
arguments in parentheses) and prints A just like @{prop A}.
|
haftmann@26762
|
520 |
|
haftmann@26762
|
521 |
|
wenzelm@25464
|
522 |
*** HOL ***
|
wenzelm@25464
|
523 |
|
wenzelm@27067
|
524 |
* New primrec package. Specification syntax conforms in style to
|
wenzelm@27067
|
525 |
definition/function/.... No separate induction rule is provided. The
|
wenzelm@27067
|
526 |
"primrec" command distinguishes old-style and new-style specifications
|
wenzelm@27067
|
527 |
by syntax. The former primrec package is now named OldPrimrecPackage.
|
wenzelm@27067
|
528 |
When adjusting theories, beware: constants stemming from new-style
|
wenzelm@27067
|
529 |
primrec specifications have authentic syntax.
|
wenzelm@27067
|
530 |
|
wenzelm@27067
|
531 |
* Metis prover is now an order of magnitude faster, and also works
|
wenzelm@27067
|
532 |
with multithreading.
|
wenzelm@27067
|
533 |
|
wenzelm@27067
|
534 |
* Metis: the maximum number of clauses that can be produced from a
|
wenzelm@27067
|
535 |
theorem is now given by the attribute max_clauses. Theorems that
|
wenzelm@27067
|
536 |
exceed this number are ignored, with a warning printed.
|
wenzelm@27067
|
537 |
|
wenzelm@27067
|
538 |
* Sledgehammer no longer produces structured proofs by default. To
|
wenzelm@27067
|
539 |
enable, declare [[sledgehammer_full = true]]. Attributes
|
wenzelm@27067
|
540 |
reconstruction_modulus, reconstruction_sorts renamed
|
wenzelm@27067
|
541 |
sledgehammer_modulus, sledgehammer_sorts. INCOMPATIBILITY.
|
wenzelm@27067
|
542 |
|
haftmann@27104
|
543 |
* Method "induct_scheme" derives user-specified induction rules
|
wenzelm@27067
|
544 |
from well-founded induction and completeness of patterns. This factors
|
wenzelm@27067
|
545 |
out some operations that are done internally by the function package
|
wenzelm@27067
|
546 |
and makes them available separately. See
|
wenzelm@27067
|
547 |
src/HOL/ex/Induction_Scheme.thy for examples.
|
wenzelm@27067
|
548 |
|
wenzelm@27067
|
549 |
* More flexible generation of measure functions for termination
|
wenzelm@27067
|
550 |
proofs: Measure functions can be declared by proving a rule of the
|
wenzelm@27067
|
551 |
form "is_measure f" and giving it the [measure_function] attribute.
|
wenzelm@27067
|
552 |
The "is_measure" predicate is logically meaningless (always true), and
|
wenzelm@27067
|
553 |
just guides the heuristic. To find suitable measure functions, the
|
wenzelm@27067
|
554 |
termination prover sets up the goal "is_measure ?f" of the appropriate
|
wenzelm@27067
|
555 |
type and generates all solutions by prolog-style backwards proof using
|
wenzelm@27067
|
556 |
the declared rules.
|
wenzelm@27067
|
557 |
|
wenzelm@27067
|
558 |
This setup also deals with rules like
|
wenzelm@27067
|
559 |
|
wenzelm@27067
|
560 |
"is_measure f ==> is_measure (list_size f)"
|
wenzelm@27067
|
561 |
|
wenzelm@27067
|
562 |
which accommodates nested datatypes that recurse through lists.
|
wenzelm@27067
|
563 |
Similar rules are predeclared for products and option types.
|
wenzelm@27067
|
564 |
|
berghofe@26964
|
565 |
* Turned the type of sets "'a set" into an abbreviation for "'a => bool"
|
berghofe@26964
|
566 |
|
berghofe@26964
|
567 |
INCOMPATIBILITIES:
|
berghofe@26964
|
568 |
|
wenzelm@27008
|
569 |
- Definitions of overloaded constants on sets have to be replaced by
|
wenzelm@27008
|
570 |
definitions on => and bool.
|
berghofe@26964
|
571 |
|
berghofe@26964
|
572 |
- Some definitions of overloaded operators on sets can now be proved
|
wenzelm@27008
|
573 |
using the definitions of the operators on => and bool. Therefore,
|
wenzelm@27008
|
574 |
the following theorems have been renamed:
|
berghofe@26964
|
575 |
|
berghofe@26964
|
576 |
subset_def -> subset_eq
|
berghofe@26964
|
577 |
psubset_def -> psubset_eq
|
berghofe@26964
|
578 |
set_diff_def -> set_diff_eq
|
berghofe@26964
|
579 |
Compl_def -> Compl_eq
|
berghofe@26964
|
580 |
Sup_set_def -> Sup_set_eq
|
berghofe@26964
|
581 |
Inf_set_def -> Inf_set_eq
|
berghofe@26964
|
582 |
sup_set_def -> sup_set_eq
|
berghofe@26964
|
583 |
inf_set_def -> inf_set_eq
|
berghofe@26964
|
584 |
|
berghofe@26964
|
585 |
- Due to the incompleteness of the HO unification algorithm, some
|
berghofe@26964
|
586 |
rules such as subst may require manual instantiation, if some of
|
berghofe@26964
|
587 |
the unknowns in the rule is a set.
|
berghofe@26964
|
588 |
|
berghofe@26964
|
589 |
- Higher order unification and forward proofs:
|
berghofe@26964
|
590 |
The proof pattern
|
berghofe@26964
|
591 |
|
berghofe@26964
|
592 |
have "P (S::'a set)" <...>
|
berghofe@26964
|
593 |
then have "EX S. P S" ..
|
berghofe@26964
|
594 |
|
wenzelm@27008
|
595 |
no longer works (due to the incompleteness of the HO unification
|
wenzelm@27008
|
596 |
algorithm) and must be replaced by the pattern
|
berghofe@26964
|
597 |
|
berghofe@26964
|
598 |
have "EX S. P S"
|
berghofe@26964
|
599 |
proof
|
berghofe@26964
|
600 |
show "P S" <...>
|
berghofe@26964
|
601 |
qed
|
berghofe@26964
|
602 |
|
berghofe@26964
|
603 |
- Calculational reasoning with subst (or similar rules):
|
berghofe@26964
|
604 |
The proof pattern
|
berghofe@26964
|
605 |
|
berghofe@26964
|
606 |
have "P (S::'a set)" <...>
|
berghofe@26964
|
607 |
also have "S = T" <...>
|
berghofe@26964
|
608 |
finally have "P T" .
|
berghofe@26964
|
609 |
|
wenzelm@27008
|
610 |
no longer works (for similar reasons as the previous example) and
|
wenzelm@27008
|
611 |
must be replaced by something like
|
berghofe@26964
|
612 |
|
berghofe@26964
|
613 |
have "P (S::'a set)" <...>
|
berghofe@26964
|
614 |
moreover have "S = T" <...>
|
berghofe@26964
|
615 |
ultimately have "P T" by simp
|
berghofe@26964
|
616 |
|
berghofe@26964
|
617 |
- Tactics or packages written in ML code:
|
berghofe@26964
|
618 |
Code performing pattern matching on types via
|
berghofe@26964
|
619 |
|
berghofe@26964
|
620 |
Type ("set", [T]) => ...
|
berghofe@26964
|
621 |
|
wenzelm@27008
|
622 |
must be rewritten. Moreover, functions like strip_type or
|
wenzelm@27008
|
623 |
binder_types no longer return the right value when applied to a
|
wenzelm@27008
|
624 |
type of the form
|
berghofe@26964
|
625 |
|
berghofe@26964
|
626 |
T1 => ... => Tn => U => bool
|
berghofe@26964
|
627 |
|
berghofe@26964
|
628 |
rather than
|
berghofe@26964
|
629 |
|
berghofe@26964
|
630 |
T1 => ... => Tn => U set
|
berghofe@26964
|
631 |
|
wenzelm@26874
|
632 |
* Merged theories Wellfounded_Recursion, Accessible_Part and
|
wenzelm@27067
|
633 |
Wellfounded_Relations to theory Wellfounded.
|
krauss@26748
|
634 |
|
haftmann@26513
|
635 |
* Explicit class "eq" for executable equality. INCOMPATIBILITY.
|
haftmann@26513
|
636 |
|
wenzelm@26874
|
637 |
* Class finite no longer treats UNIV as class parameter. Use class
|
wenzelm@26874
|
638 |
enum from theory Library/Enum instead to achieve a similar effect.
|
haftmann@26445
|
639 |
INCOMPATIBILITY.
|
haftmann@26445
|
640 |
|
wenzelm@26874
|
641 |
* Theory List: rule list_induct2 now has explicitly named cases "Nil"
|
wenzelm@26874
|
642 |
and "Cons". INCOMPATIBILITY.
|
wenzelm@26874
|
643 |
|
wenzelm@26422
|
644 |
* HOL (and FOL): renamed variables in rules imp_elim and swap.
|
wenzelm@26422
|
645 |
Potential INCOMPATIBILITY.
|
wenzelm@26422
|
646 |
|
wenzelm@26874
|
647 |
* Theory Product_Type: duplicated lemmas split_Pair_apply and
|
wenzelm@26874
|
648 |
injective_fst_snd removed, use split_eta and prod_eqI instead.
|
wenzelm@26874
|
649 |
Renamed upd_fst to apfst and upd_snd to apsnd. INCOMPATIBILITY.
|
haftmann@26355
|
650 |
|
wenzelm@26335
|
651 |
* Theory Nat: removed redundant lemmas that merely duplicate lemmas of
|
wenzelm@26335
|
652 |
the same name in theory Orderings:
|
wenzelm@26335
|
653 |
|
wenzelm@26335
|
654 |
less_trans
|
wenzelm@26335
|
655 |
less_linear
|
wenzelm@26335
|
656 |
le_imp_less_or_eq
|
wenzelm@26335
|
657 |
le_less_trans
|
wenzelm@26335
|
658 |
less_le_trans
|
wenzelm@26335
|
659 |
less_not_sym
|
wenzelm@26335
|
660 |
less_asym
|
wenzelm@26335
|
661 |
|
wenzelm@26335
|
662 |
Renamed less_imp_le to less_imp_le_nat, and less_irrefl to
|
wenzelm@26335
|
663 |
less_irrefl_nat. Potential INCOMPATIBILITY due to more general types
|
wenzelm@26335
|
664 |
and different variable names.
|
wenzelm@26315
|
665 |
|
haftmann@26231
|
666 |
* Library/Option_ord.thy: Canonical order on option type.
|
haftmann@26231
|
667 |
|
wenzelm@27008
|
668 |
* Library/RBT.thy: Red-black trees, an efficient implementation of
|
wenzelm@27008
|
669 |
finite maps.
|
krauss@26197
|
670 |
|
haftmann@26231
|
671 |
* Library/Countable.thy: Type class for countable types.
|
haftmann@26231
|
672 |
|
wenzelm@26180
|
673 |
* Theory Int: The representation of numerals has changed. The infix
|
wenzelm@26180
|
674 |
operator BIT and the bit datatype with constructors B0 and B1 have
|
wenzelm@26180
|
675 |
disappeared. INCOMPATIBILITY, use "Int.Bit0 x" and "Int.Bit1 y" in
|
wenzelm@26180
|
676 |
place of "x BIT bit.B0" and "y BIT bit.B1", respectively. Theorems
|
wenzelm@26180
|
677 |
involving BIT, B0, or B1 have been renamed with "Bit0" or "Bit1"
|
wenzelm@26180
|
678 |
accordingly.
|
wenzelm@26180
|
679 |
|
wenzelm@26180
|
680 |
* Theory Nat: definition of <= and < on natural numbers no longer
|
wenzelm@26180
|
681 |
depend on well-founded relations. INCOMPATIBILITY. Definitions
|
wenzelm@26180
|
682 |
le_def and less_def have disappeared. Consider lemmas not_less
|
wenzelm@26180
|
683 |
[symmetric, where ?'a = nat] and less_eq [symmetric] instead.
|
wenzelm@26180
|
684 |
|
wenzelm@26180
|
685 |
* Theory Finite_Set: locales ACf, ACe, ACIf, ACIfSL and ACIfSLlin
|
wenzelm@26180
|
686 |
(whose purpose mainly is for various fold_set functionals) have been
|
wenzelm@26874
|
687 |
abandoned in favor of the existing algebraic classes
|
wenzelm@26180
|
688 |
ab_semigroup_mult, comm_monoid_mult, ab_semigroup_idem_mult,
|
wenzelm@26180
|
689 |
lower_semilattice (resp. upper_semilattice) and linorder.
|
haftmann@26139
|
690 |
INCOMPATIBILITY.
|
haftmann@26041
|
691 |
|
wenzelm@26180
|
692 |
* Theory Transitive_Closure: induct and cases rules now declare proper
|
wenzelm@26180
|
693 |
case_names ("base" and "step"). INCOMPATIBILITY.
|
wenzelm@26180
|
694 |
|
wenzelm@26180
|
695 |
* Theorem Inductive.lfp_ordinal_induct generalized to complete
|
wenzelm@26180
|
696 |
lattices. The form set-specific version is available as
|
wenzelm@26180
|
697 |
Inductive.lfp_ordinal_induct_set.
|
haftmann@26013
|
698 |
|
wenzelm@26874
|
699 |
* Renamed theorems "power.simps" to "power_int.simps".
|
wenzelm@27067
|
700 |
INCOMPATIBILITY.
|
haftmann@25961
|
701 |
|
wenzelm@26180
|
702 |
* Class semiring_div provides basic abstract properties of semirings
|
haftmann@25942
|
703 |
with division and modulo operations. Subsumes former class dvd_mod.
|
haftmann@25942
|
704 |
|
wenzelm@26180
|
705 |
* Merged theories IntDef, Numeral and IntArith into unified theory
|
wenzelm@26180
|
706 |
Int. INCOMPATIBILITY.
|
wenzelm@26180
|
707 |
|
wenzelm@26180
|
708 |
* Theory Library/Code_Index: type "index" now represents natural
|
wenzelm@26180
|
709 |
numbers rather than integers. INCOMPATIBILITY.
|
wenzelm@26180
|
710 |
|
wenzelm@26180
|
711 |
* New class "uminus" with operation "uminus" (split of from class
|
wenzelm@26180
|
712 |
"minus" which now only has operation "minus", binary).
|
haftmann@25919
|
713 |
INCOMPATIBILITY.
|
haftmann@25919
|
714 |
|
wenzelm@25522
|
715 |
* Constants "card", "internal_split", "option_map" now with authentic
|
haftmann@25919
|
716 |
syntax. INCOMPATIBILITY.
|
wenzelm@25522
|
717 |
|
wenzelm@25522
|
718 |
* Definitions subset_def, psubset_def, set_diff_def, Compl_def,
|
wenzelm@25522
|
719 |
le_bool_def, less_bool_def, le_fun_def, less_fun_def, inf_bool_def,
|
wenzelm@25522
|
720 |
sup_bool_def, Inf_bool_def, Sup_bool_def, inf_fun_def, sup_fun_def,
|
wenzelm@25522
|
721 |
Inf_fun_def, Sup_fun_def, inf_set_def, sup_set_def, Inf_set_def,
|
wenzelm@25522
|
722 |
Sup_set_def, le_def, less_def, option_map_def now with object
|
haftmann@25919
|
723 |
equality. INCOMPATIBILITY.
|
wenzelm@25464
|
724 |
|
schirmer@25705
|
725 |
* Records. Removed K_record, and replaced it by pure lambda term
|
wenzelm@25726
|
726 |
%x. c. The simplifier setup is now more robust against eta expansion.
|
schirmer@25705
|
727 |
INCOMPATIBILITY: in cases explicitly referring to K_record.
|
wenzelm@25464
|
728 |
|
wenzelm@27067
|
729 |
* Library/Multiset: {#a, b, c#} abbreviates {#a#} + {#b#} + {#c#}.
|
wenzelm@27067
|
730 |
|
wenzelm@27067
|
731 |
* Library/ListVector: new theory of arithmetic vector operations.
|
wenzelm@27067
|
732 |
|
wenzelm@27067
|
733 |
* Library/Order_Relation: new theory of various orderings as sets of
|
wenzelm@27067
|
734 |
pairs. Defines preorders, partial orders, linear orders and
|
wenzelm@27067
|
735 |
well-orders on sets and on types.
|
krauss@26877
|
736 |
|
wenzelm@25726
|
737 |
|
krauss@26197
|
738 |
*** ZF ***
|
krauss@26197
|
739 |
|
wenzelm@26874
|
740 |
* Renamed some theories to allow to loading both ZF and HOL in the
|
wenzelm@26874
|
741 |
same session:
|
wenzelm@26874
|
742 |
|
wenzelm@26874
|
743 |
Datatype -> Datatype_ZF
|
wenzelm@26874
|
744 |
Inductive -> Inductive_ZF
|
wenzelm@26874
|
745 |
Int -> Int_ZF
|
wenzelm@26874
|
746 |
IntDiv -> IntDiv_ZF
|
wenzelm@26874
|
747 |
Nat -> Nat_ZF
|
wenzelm@26874
|
748 |
List -> List_ZF
|
wenzelm@26874
|
749 |
Main -> Main_ZF
|
wenzelm@26874
|
750 |
|
wenzelm@26874
|
751 |
INCOMPATIBILITY: ZF theories that import individual theories below
|
wenzelm@26874
|
752 |
Main might need to be adapted. Regular theory Main is still
|
wenzelm@26874
|
753 |
available, as trivial extension of Main_ZF.
|
krauss@26197
|
754 |
|
krauss@26197
|
755 |
|
wenzelm@25737
|
756 |
*** ML ***
|
wenzelm@25737
|
757 |
|
wenzelm@27067
|
758 |
* ML within Isar: antiquotation @{const name} or @{const
|
wenzelm@27067
|
759 |
name(typargs)} produces statically-checked Const term.
|
wenzelm@27067
|
760 |
|
wenzelm@26401
|
761 |
* Functor NamedThmsFun: data is available to the user as dynamic fact
|
wenzelm@26724
|
762 |
(of the same name). Removed obsolete print command.
|
wenzelm@26401
|
763 |
|
wenzelm@27067
|
764 |
* Removed obsolete "use_legacy_bindings" function.
|
wenzelm@26188
|
765 |
|
wenzelm@25737
|
766 |
* The ``print mode'' is now a thread-local value derived from a global
|
wenzelm@25737
|
767 |
template (the former print_mode reference), thus access becomes
|
wenzelm@25737
|
768 |
non-critical. The global print_mode reference is for session
|
wenzelm@25737
|
769 |
management only; user-code should use print_mode_value,
|
wenzelm@25737
|
770 |
print_mode_active, PrintMode.setmp etc. INCOMPATIBILITY.
|
wenzelm@25737
|
771 |
|
wenzelm@26874
|
772 |
* Functions system/system_out provide a robust way to invoke external
|
wenzelm@27008
|
773 |
shell commands, with propagation of interrupts (requires Poly/ML 5.2).
|
wenzelm@26874
|
774 |
Do not use OS.Process.system etc. from the basis library!
|
wenzelm@26222
|
775 |
|
wenzelm@25737
|
776 |
|
wenzelm@25626
|
777 |
*** System ***
|
wenzelm@25626
|
778 |
|
wenzelm@25971
|
779 |
* Default settings: PROOFGENERAL_OPTIONS no longer impose xemacs ---
|
wenzelm@25971
|
780 |
in accordance with Proof General 3.7, which prefers GNU emacs.
|
wenzelm@25970
|
781 |
|
wenzelm@25626
|
782 |
* isatool tty runs Isabelle process with plain tty interaction;
|
wenzelm@25626
|
783 |
optional line editor may be specified via ISABELLE_LINE_EDITOR
|
wenzelm@25626
|
784 |
setting, the default settings attempt to locate "ledit" and "rlwrap".
|
wenzelm@25626
|
785 |
|
wenzelm@25651
|
786 |
* isatool browser now works with Cygwin as well, using general
|
wenzelm@25651
|
787 |
"javapath" function defined in Isabelle process environment.
|
wenzelm@25651
|
788 |
|
wenzelm@27067
|
789 |
* YXML notation provides a simple and efficient alternative to
|
wenzelm@27067
|
790 |
standard XML transfer syntax. See src/Pure/General/yxml.ML and
|
wenzelm@27067
|
791 |
isatool yxml as described in the Isabelle system manual.
|
wenzelm@25651
|
792 |
|
wenzelm@25652
|
793 |
* JVM class isabelle.IsabelleProcess (located in Isabelle/lib/classes)
|
wenzelm@25651
|
794 |
provides general wrapper for managing an Isabelle process in a robust
|
wenzelm@25651
|
795 |
fashion, with ``cooked'' output from stdin/stderr.
|
wenzelm@25651
|
796 |
|
wenzelm@25855
|
797 |
* Rudimentary Isabelle plugin for jEdit (see Isabelle/lib/jedit),
|
wenzelm@25855
|
798 |
based on Isabelle/JVM process wrapper (see Isabelle/lib/classes).
|
wenzelm@25855
|
799 |
|
wenzelm@27067
|
800 |
* Removed obsolete THIS_IS_ISABELLE_BUILD feature. NB: the documented
|
wenzelm@27067
|
801 |
way of changing the user's settings is via
|
wenzelm@27067
|
802 |
ISABELLE_HOME_USER/etc/settings, which is a fully featured bash
|
wenzelm@27067
|
803 |
script.
|
wenzelm@27067
|
804 |
|
wenzelm@27067
|
805 |
* Multithreading.max_threads := 0 refers to the number of actual CPU
|
wenzelm@27067
|
806 |
cores of the underlying machine, which is a good starting point for
|
wenzelm@27067
|
807 |
optimal performance tuning. The corresponding usedir option -M allows
|
wenzelm@27067
|
808 |
"max" as an alias for "0". WARNING: does not work on certain versions
|
wenzelm@27067
|
809 |
of Mac OS (with Poly/ML 5.1).
|
wenzelm@27067
|
810 |
|
wenzelm@27067
|
811 |
* isabelle-process: non-ML sessions are run with "nice", to reduce the
|
wenzelm@27067
|
812 |
adverse effect of Isabelle flooding interactive front-ends (notably
|
wenzelm@27067
|
813 |
ProofGeneral / XEmacs).
|
wenzelm@27067
|
814 |
|
wenzelm@25626
|
815 |
|
wenzelm@25464
|
816 |
|
wenzelm@25429
|
817 |
New in Isabelle2007 (November 2007)
|
wenzelm@25429
|
818 |
-----------------------------------
|
wenzelm@17754
|
819 |
|
wenzelm@17754
|
820 |
*** General ***
|
wenzelm@17754
|
821 |
|
wenzelm@22826
|
822 |
* More uniform information about legacy features, notably a
|
wenzelm@22826
|
823 |
warning/error of "Legacy feature: ...", depending on the state of the
|
wenzelm@23367
|
824 |
tolerate_legacy_features flag (default true). FUTURE INCOMPATIBILITY:
|
wenzelm@23367
|
825 |
legacy features will disappear eventually.
|
wenzelm@22826
|
826 |
|
wenzelm@17918
|
827 |
* Theory syntax: the header format ``theory A = B + C:'' has been
|
wenzelm@17918
|
828 |
discontinued in favour of ``theory A imports B C begin''. Use isatool
|
wenzelm@17918
|
829 |
fixheaders to convert existing theory files. INCOMPATIBILITY.
|
wenzelm@17918
|
830 |
|
wenzelm@17918
|
831 |
* Theory syntax: the old non-Isar theory file format has been
|
wenzelm@17918
|
832 |
discontinued altogether. Note that ML proof scripts may still be used
|
wenzelm@17918
|
833 |
with Isar theories; migration is usually quite simple with the ML
|
wenzelm@17918
|
834 |
function use_legacy_bindings. INCOMPATIBILITY.
|
wenzelm@17918
|
835 |
|
wenzelm@22871
|
836 |
* Theory syntax: some popular names (e.g. 'class', 'declaration',
|
wenzelm@22871
|
837 |
'fun', 'help', 'if') are now keywords. INCOMPATIBILITY, use double
|
wenzelm@22871
|
838 |
quotes.
|
wenzelm@19814
|
839 |
|
wenzelm@23888
|
840 |
* Theory loader: be more serious about observing the static theory
|
wenzelm@23888
|
841 |
header specifications (including optional directories), but not the
|
wenzelm@24172
|
842 |
accidental file locations of previously successful loads. The strict
|
wenzelm@24172
|
843 |
update policy of former update_thy is now already performed by
|
wenzelm@24172
|
844 |
use_thy, so the former has been removed; use_thys updates several
|
wenzelm@24172
|
845 |
theories simultaneously, just as 'imports' within a theory header
|
wenzelm@24172
|
846 |
specification, but without merging the results. Potential
|
wenzelm@24172
|
847 |
INCOMPATIBILITY: may need to refine theory headers and commands
|
wenzelm@24172
|
848 |
ROOT.ML which depend on load order.
|
wenzelm@23888
|
849 |
|
wenzelm@23888
|
850 |
* Theory loader: optional support for content-based file
|
wenzelm@23888
|
851 |
identification, instead of the traditional scheme of full physical
|
wenzelm@23889
|
852 |
path plus date stamp; configured by the ISABELLE_FILE_IDENT setting
|
wenzelm@23888
|
853 |
(cf. the system manual). The new scheme allows to work with
|
wenzelm@23888
|
854 |
non-finished theories in persistent session images, such that source
|
wenzelm@23888
|
855 |
files may be moved later on without requiring reloads.
|
wenzelm@23888
|
856 |
|
wenzelm@24187
|
857 |
* Theory loader: old-style ML proof scripts being *attached* to a thy
|
wenzelm@24187
|
858 |
file (with the same base name as the theory) are considered a legacy
|
wenzelm@24800
|
859 |
feature, which will disappear eventually. Even now, the theory loader
|
wenzelm@24800
|
860 |
no longer maintains dependencies on such files.
|
wenzelm@24800
|
861 |
|
wenzelm@24800
|
862 |
* Syntax: the scope for resolving ambiguities via type-inference is
|
wenzelm@24800
|
863 |
now limited to individual terms, instead of whole simultaneous
|
wenzelm@24234
|
864 |
specifications as before. This greatly reduces the complexity of the
|
wenzelm@24234
|
865 |
syntax module and improves flexibility by separating parsing and
|
wenzelm@24234
|
866 |
type-checking. INCOMPATIBILITY: additional type-constraints (explicit
|
wenzelm@24234
|
867 |
'fixes' etc.) are required in rare situations.
|
wenzelm@24234
|
868 |
|
wenzelm@25034
|
869 |
* Syntax: constants introduced by new-style packages ('definition',
|
wenzelm@25034
|
870 |
'abbreviation' etc.) are passed through the syntax module in
|
wenzelm@25034
|
871 |
``authentic mode''. This means that associated mixfix annotations
|
wenzelm@25034
|
872 |
really stick to such constants, independently of potential name space
|
wenzelm@25034
|
873 |
ambiguities introduced later on. INCOMPATIBILITY: constants in parse
|
wenzelm@25034
|
874 |
trees are represented slightly differently, may need to adapt syntax
|
wenzelm@25034
|
875 |
translations accordingly. Use CONST marker in 'translations' and
|
wenzelm@25034
|
876 |
@{const_syntax} antiquotation in 'parse_translation' etc.
|
wenzelm@25034
|
877 |
|
wenzelm@17981
|
878 |
* Legacy goal package: reduced interface to the bare minimum required
|
wenzelm@17981
|
879 |
to keep existing proof scripts running. Most other user-level
|
wenzelm@17981
|
880 |
functions are now part of the OldGoals structure, which is *not* open
|
wenzelm@17981
|
881 |
by default (consider isatool expandshort before open OldGoals).
|
wenzelm@17981
|
882 |
Removed top_sg, prin, printyp, pprint_term/typ altogether, because
|
wenzelm@17981
|
883 |
these tend to cause confusion about the actual goal (!) context being
|
wenzelm@17981
|
884 |
used here, which is not necessarily the same as the_context().
|
wenzelm@17918
|
885 |
|
wenzelm@23379
|
886 |
* Command 'find_theorems': supports "*" wild-card in "name:"
|
wenzelm@23379
|
887 |
criterion; "with_dups" option. Certain ProofGeneral versions might
|
wenzelm@23379
|
888 |
support a specific search form (see ProofGeneral/CHANGES).
|
webertj@22965
|
889 |
|
wenzelm@20370
|
890 |
* The ``prems limit'' option (cf. ProofContext.prems_limit) is now -1
|
wenzelm@20370
|
891 |
by default, which means that "prems" (and also "fixed variables") are
|
wenzelm@20370
|
892 |
suppressed from proof state output. Note that the ProofGeneral
|
wenzelm@20370
|
893 |
settings mechanism allows to change and save options persistently, but
|
wenzelm@20370
|
894 |
older versions of Isabelle will fail to start up if a negative prems
|
wenzelm@20370
|
895 |
limit is imposed.
|
wenzelm@20370
|
896 |
|
wenzelm@21308
|
897 |
* Local theory targets may be specified by non-nested blocks of
|
wenzelm@21308
|
898 |
``context/locale/class ... begin'' followed by ``end''. The body may
|
wenzelm@21308
|
899 |
contain definitions, theorems etc., including any derived mechanism
|
wenzelm@21308
|
900 |
that has been implemented on top of these primitives. This concept
|
wenzelm@21308
|
901 |
generalizes the existing ``theorem (in ...)'' towards more versatility
|
wenzelm@21308
|
902 |
and scalability.
|
wenzelm@21308
|
903 |
|
wenzelm@21960
|
904 |
* Proof General interface: proper undo of final 'end' command;
|
wenzelm@21960
|
905 |
discontinued Isabelle/classic mode (ML proof scripts).
|
wenzelm@21960
|
906 |
|
wenzelm@17754
|
907 |
|
wenzelm@17865
|
908 |
*** Document preparation ***
|
wenzelm@17865
|
909 |
|
wenzelm@21717
|
910 |
* Added antiquotation @{theory name} which prints the given name,
|
wenzelm@21717
|
911 |
after checking that it refers to a valid ancestor theory in the
|
wenzelm@21717
|
912 |
current context.
|
haftmann@21339
|
913 |
|
wenzelm@17869
|
914 |
* Added antiquotations @{ML_type text} and @{ML_struct text} which
|
wenzelm@17869
|
915 |
check the given source text as ML type/structure, printing verbatim.
|
wenzelm@17865
|
916 |
|
wenzelm@21717
|
917 |
* Added antiquotation @{abbrev "c args"} which prints the abbreviation
|
wenzelm@21717
|
918 |
"c args == rhs" given in the current context. (Any number of
|
wenzelm@21735
|
919 |
arguments may be given on the LHS.)
|
wenzelm@21717
|
920 |
|
wenzelm@21717
|
921 |
|
wenzelm@17779
|
922 |
*** Pure ***
|
wenzelm@17779
|
923 |
|
wenzelm@24800
|
924 |
* The 'class' package offers a combination of axclass and locale to
|
wenzelm@25129
|
925 |
achieve Haskell-like type classes in Isabelle. Definitions and
|
wenzelm@25129
|
926 |
theorems within a class context produce both relative results (with
|
wenzelm@25129
|
927 |
implicit parameters according to the locale context), and polymorphic
|
wenzelm@25129
|
928 |
constants with qualified polymorphism (according to the class
|
wenzelm@25129
|
929 |
context). Within the body context of a 'class' target, a separate
|
wenzelm@25129
|
930 |
syntax layer ("user space type system") takes care of converting
|
wenzelm@25129
|
931 |
between global polymorphic consts and internal locale representation.
|
wenzelm@25177
|
932 |
See src/HOL/ex/Classpackage.thy for examples (as well as main HOL).
|
haftmann@25184
|
933 |
"isatool doc classes" provides a tutorial.
|
wenzelm@20807
|
934 |
|
haftmann@25199
|
935 |
* Generic code generator framework allows to generate executable
|
wenzelm@24800
|
936 |
code for ML and Haskell (including Isabelle classes). A short usage
|
wenzelm@24800
|
937 |
sketch:
|
haftmann@20188
|
938 |
|
haftmann@20188
|
939 |
internal compilation:
|
haftmann@25199
|
940 |
export_code <list of constants (term syntax)> in SML
|
haftmann@20453
|
941 |
writing SML code to a file:
|
haftmann@25199
|
942 |
export_code <list of constants (term syntax)> in SML <filename>
|
haftmann@22735
|
943 |
writing OCaml code to a file:
|
haftmann@25199
|
944 |
export_code <list of constants (term syntax)> in OCaml <filename>
|
haftmann@20188
|
945 |
writing Haskell code to a bunch of files:
|
haftmann@25199
|
946 |
export_code <list of constants (term syntax)> in Haskell <filename>
|
haftmann@25199
|
947 |
|
haftmann@25199
|
948 |
evaluating closed propositions to True/False using code generation:
|
haftmann@25184
|
949 |
method ``eval''
|
haftmann@25184
|
950 |
|
haftmann@25184
|
951 |
Reasonable default setup of framework in HOL.
|
haftmann@20453
|
952 |
|
haftmann@20453
|
953 |
Theorem attributs for selecting and transforming function equations theorems:
|
haftmann@20453
|
954 |
|
haftmann@22845
|
955 |
[code fun]: select a theorem as function equation for a specific constant
|
haftmann@22845
|
956 |
[code fun del]: deselect a theorem as function equation for a specific constant
|
haftmann@22845
|
957 |
[code inline]: select an equation theorem for unfolding (inlining) in place
|
haftmann@22845
|
958 |
[code inline del]: deselect an equation theorem for unfolding (inlining) in place
|
haftmann@20453
|
959 |
|
haftmann@22735
|
960 |
User-defined serializations (target in {SML, OCaml, Haskell}):
|
haftmann@20453
|
961 |
|
haftmann@20453
|
962 |
code_const <and-list of constants (term syntax)>
|
haftmann@20453
|
963 |
{(target) <and-list of const target syntax>}+
|
haftmann@20453
|
964 |
|
haftmann@20453
|
965 |
code_type <and-list of type constructors>
|
haftmann@20453
|
966 |
{(target) <and-list of type target syntax>}+
|
haftmann@20453
|
967 |
|
haftmann@20453
|
968 |
code_instance <and-list of instances>
|
haftmann@20453
|
969 |
{(target)}+
|
haftmann@20453
|
970 |
where instance ::= <type constructor> :: <class>
|
haftmann@20453
|
971 |
|
haftmann@20453
|
972 |
code_class <and_list of classes>
|
haftmann@20453
|
973 |
{(target) <and-list of class target syntax>}+
|
haftmann@20453
|
974 |
where class target syntax ::= <class name> {where {<classop> == <target syntax>}+}?
|
haftmann@20453
|
975 |
|
haftmann@25199
|
976 |
code_instance and code_class only are effective to target Haskell.
|
haftmann@22735
|
977 |
|
wenzelm@25177
|
978 |
For example usage see src/HOL/ex/Codegenerator.thy and
|
wenzelm@25177
|
979 |
src/HOL/ex/Codegenerator_Pretty.thy. A separate tutorial on code
|
wenzelm@24800
|
980 |
generation from Isabelle/HOL theories is available via "isatool doc
|
wenzelm@24800
|
981 |
codegen".
|
haftmann@20188
|
982 |
|
wenzelm@25129
|
983 |
* Code generator: consts in 'consts_code' Isar commands are now
|
wenzelm@25129
|
984 |
referred to by usual term syntax (including optional type
|
wenzelm@25129
|
985 |
annotations).
|
wenzelm@25129
|
986 |
|
wenzelm@19254
|
987 |
* Command 'no_translations' removes translation rules from theory
|
wenzelm@19254
|
988 |
syntax.
|
wenzelm@19254
|
989 |
|
wenzelm@19625
|
990 |
* Overloaded definitions are now actually checked for acyclic
|
wenzelm@19714
|
991 |
dependencies. The overloading scheme is slightly more general than
|
wenzelm@19714
|
992 |
that of Haskell98, although Isabelle does not demand an exact
|
wenzelm@19714
|
993 |
correspondence to type class and instance declarations.
|
wenzelm@19714
|
994 |
INCOMPATIBILITY, use ``defs (unchecked overloaded)'' to admit more
|
wenzelm@19714
|
995 |
exotic versions of overloading -- at the discretion of the user!
|
wenzelm@19711
|
996 |
|
wenzelm@19711
|
997 |
Polymorphic constants are represented via type arguments, i.e. the
|
wenzelm@19711
|
998 |
instantiation that matches an instance against the most general
|
wenzelm@19711
|
999 |
declaration given in the signature. For example, with the declaration
|
wenzelm@19711
|
1000 |
c :: 'a => 'a => 'a, an instance c :: nat => nat => nat is represented
|
wenzelm@19711
|
1001 |
as c(nat). Overloading is essentially simultaneous structural
|
wenzelm@19711
|
1002 |
recursion over such type arguments. Incomplete specification patterns
|
wenzelm@19714
|
1003 |
impose global constraints on all occurrences, e.g. c('a * 'a) on the
|
wenzelm@19715
|
1004 |
LHS means that more general c('a * 'b) will be disallowed on any RHS.
|
wenzelm@19714
|
1005 |
Command 'print_theory' outputs the normalized system of recursive
|
wenzelm@19714
|
1006 |
equations, see section "definitions".
|
wenzelm@19625
|
1007 |
|
wenzelm@24086
|
1008 |
* Configuration options are maintained within the theory or proof
|
wenzelm@24086
|
1009 |
context (with name and type bool/int/string), providing a very simple
|
wenzelm@24086
|
1010 |
interface to a poor-man's version of general context data. Tools may
|
wenzelm@24110
|
1011 |
declare options in ML (e.g. using Attrib.config_int) and then refer to
|
wenzelm@24110
|
1012 |
these values using Config.get etc. Users may change options via an
|
wenzelm@24110
|
1013 |
associated attribute of the same name. This form of context
|
wenzelm@24110
|
1014 |
declaration works particularly well with commands 'declare' or
|
wenzelm@24110
|
1015 |
'using', for example ``declare [[foo = 42]]''. Thus it has become
|
wenzelm@24110
|
1016 |
very easy to avoid global references, which would not observe Isar
|
wenzelm@24110
|
1017 |
toplevel undo/redo and fail to work with multithreading.
|
wenzelm@24086
|
1018 |
|
wenzelm@24172
|
1019 |
Various global ML references of Pure and HOL have been turned into
|
wenzelm@24172
|
1020 |
configuration options:
|
wenzelm@24172
|
1021 |
|
wenzelm@24172
|
1022 |
Unify.search_bound unify_search_bound
|
wenzelm@24172
|
1023 |
Unify.trace_bound unify_trace_bound
|
wenzelm@24172
|
1024 |
Unify.trace_simp unify_trace_simp
|
wenzelm@24172
|
1025 |
Unify.trace_types unify_trace_types
|
wenzelm@24172
|
1026 |
Simplifier.simp_depth_limit simp_depth_limit
|
wenzelm@24172
|
1027 |
Blast.depth_limit blast_depth_limit
|
wenzelm@24172
|
1028 |
DatatypeProp.dtK datatype_distinctness_limit
|
wenzelm@24172
|
1029 |
fast_arith_neq_limit fast_arith_neq_limit
|
wenzelm@24172
|
1030 |
fast_arith_split_limit fast_arith_split_limit
|
wenzelm@24172
|
1031 |
|
wenzelm@24086
|
1032 |
* Named collections of theorems may be easily installed as context
|
wenzelm@24800
|
1033 |
data using the functor NamedThmsFun (see also
|
wenzelm@24086
|
1034 |
src/Pure/Tools/named_thms.ML). The user may add or delete facts via
|
wenzelm@24110
|
1035 |
attributes; there is also a toplevel print command. This facility is
|
wenzelm@24110
|
1036 |
just a common case of general context data, which is the preferred way
|
wenzelm@24110
|
1037 |
for anything more complex than just a list of facts in canonical
|
wenzelm@24110
|
1038 |
order.
|
wenzelm@24086
|
1039 |
|
wenzelm@24032
|
1040 |
* Isar: command 'declaration' augments a local theory by generic
|
wenzelm@24032
|
1041 |
declaration functions written in ML. This enables arbitrary content
|
wenzelm@24032
|
1042 |
being added to the context, depending on a morphism that tells the
|
wenzelm@24032
|
1043 |
difference of the original declaration context wrt. the application
|
wenzelm@24032
|
1044 |
context encountered later on.
|
wenzelm@24032
|
1045 |
|
wenzelm@24032
|
1046 |
* Isar: proper interfaces for simplification procedures. Command
|
wenzelm@24032
|
1047 |
'simproc_setup' declares named simprocs (with match patterns, and body
|
wenzelm@24032
|
1048 |
text in ML). Attribute "simproc" adds/deletes simprocs in the current
|
wenzelm@24032
|
1049 |
context. ML antiquotation @{simproc name} retrieves named simprocs.
|
wenzelm@24032
|
1050 |
|
wenzelm@24032
|
1051 |
* Isar: an extra pair of brackets around attribute declarations
|
wenzelm@24032
|
1052 |
abbreviates a theorem reference involving an internal dummy fact,
|
wenzelm@24032
|
1053 |
which will be ignored later --- only the effect of the attribute on
|
wenzelm@24032
|
1054 |
the background context will persist. This form of in-place
|
wenzelm@24032
|
1055 |
declarations is particularly useful with commands like 'declare' and
|
wenzelm@24032
|
1056 |
'using', for example ``have A using [[simproc a]] by simp''.
|
wenzelm@24032
|
1057 |
|
wenzelm@23369
|
1058 |
* Isar: method "assumption" (and implicit closing of subproofs) now
|
wenzelm@23369
|
1059 |
takes simple non-atomic goal assumptions into account: after applying
|
wenzelm@23369
|
1060 |
an assumption as a rule the resulting subgoals are solved by atomic
|
wenzelm@23369
|
1061 |
assumption steps. This is particularly useful to finish 'obtain'
|
wenzelm@23369
|
1062 |
goals, such as "!!x. (!!x. P x ==> thesis) ==> P x ==> thesis",
|
wenzelm@23369
|
1063 |
without referring to the original premise "!!x. P x ==> thesis" in the
|
wenzelm@23369
|
1064 |
Isar proof context. POTENTIAL INCOMPATIBILITY: method "assumption" is
|
wenzelm@23369
|
1065 |
more permissive.
|
wenzelm@23369
|
1066 |
|
wenzelm@23369
|
1067 |
* Isar: implicit use of prems from the Isar proof context is
|
wenzelm@23369
|
1068 |
considered a legacy feature. Common applications like ``have A .''
|
wenzelm@23369
|
1069 |
may be replaced by ``have A by fact'' or ``note `A`''. In general,
|
wenzelm@23369
|
1070 |
referencing facts explicitly here improves readability and
|
wenzelm@23369
|
1071 |
maintainability of proof texts.
|
wenzelm@23369
|
1072 |
|
wenzelm@17865
|
1073 |
* Isar: improper proof element 'guess' is like 'obtain', but derives
|
wenzelm@17865
|
1074 |
the obtained context from the course of reasoning! For example:
|
wenzelm@17865
|
1075 |
|
wenzelm@17865
|
1076 |
assume "EX x y. A x & B y" -- "any previous fact"
|
wenzelm@17865
|
1077 |
then guess x and y by clarify
|
wenzelm@17865
|
1078 |
|
wenzelm@17865
|
1079 |
This technique is potentially adventurous, depending on the facts and
|
wenzelm@17865
|
1080 |
proof tools being involved here.
|
wenzelm@17865
|
1081 |
|
wenzelm@18020
|
1082 |
* Isar: known facts from the proof context may be specified as literal
|
wenzelm@18020
|
1083 |
propositions, using ASCII back-quote syntax. This works wherever
|
wenzelm@18020
|
1084 |
named facts used to be allowed so far, in proof commands, proof
|
wenzelm@18020
|
1085 |
methods, attributes etc. Literal facts are retrieved from the context
|
wenzelm@18020
|
1086 |
according to unification of type and term parameters. For example,
|
wenzelm@18020
|
1087 |
provided that "A" and "A ==> B" and "!!x. P x ==> Q x" are known
|
wenzelm@18020
|
1088 |
theorems in the current context, then these are valid literal facts:
|
wenzelm@18020
|
1089 |
`A` and `A ==> B` and `!!x. P x ==> Q x" as well as `P a ==> Q a` etc.
|
wenzelm@18020
|
1090 |
|
wenzelm@18020
|
1091 |
There is also a proof method "fact" which does the same composition
|
wenzelm@18044
|
1092 |
for explicit goal states, e.g. the following proof texts coincide with
|
wenzelm@18044
|
1093 |
certain special cases of literal facts:
|
wenzelm@18020
|
1094 |
|
wenzelm@18020
|
1095 |
have "A" by fact == note `A`
|
wenzelm@18020
|
1096 |
have "A ==> B" by fact == note `A ==> B`
|
wenzelm@18020
|
1097 |
have "!!x. P x ==> Q x" by fact == note `!!x. P x ==> Q x`
|
wenzelm@18020
|
1098 |
have "P a ==> Q a" by fact == note `P a ==> Q a`
|
wenzelm@18020
|
1099 |
|
wenzelm@20118
|
1100 |
* Isar: ":" (colon) is no longer a symbolic identifier character in
|
wenzelm@20118
|
1101 |
outer syntax. Thus symbolic identifiers may be used without
|
wenzelm@20118
|
1102 |
additional white space in declarations like this: ``assume *: A''.
|
wenzelm@20118
|
1103 |
|
wenzelm@20013
|
1104 |
* Isar: 'print_facts' prints all local facts of the current context,
|
wenzelm@20013
|
1105 |
both named and unnamed ones.
|
wenzelm@20013
|
1106 |
|
wenzelm@18308
|
1107 |
* Isar: 'def' now admits simultaneous definitions, e.g.:
|
wenzelm@18308
|
1108 |
|
wenzelm@18308
|
1109 |
def x == "t" and y == "u"
|
wenzelm@18308
|
1110 |
|
wenzelm@18540
|
1111 |
* Isar: added command 'unfolding', which is structurally similar to
|
wenzelm@18540
|
1112 |
'using', but affects both the goal state and facts by unfolding given
|
wenzelm@18815
|
1113 |
rewrite rules. Thus many occurrences of the 'unfold' method or
|
wenzelm@18540
|
1114 |
'unfolded' attribute may be replaced by first-class proof text.
|
wenzelm@18540
|
1115 |
|
wenzelm@18815
|
1116 |
* Isar: methods 'unfold' / 'fold', attributes 'unfolded' / 'folded',
|
wenzelm@18815
|
1117 |
and command 'unfolding' now all support object-level equalities
|
wenzelm@18815
|
1118 |
(potentially conditional). The underlying notion of rewrite rule is
|
wenzelm@18815
|
1119 |
analogous to the 'rule_format' attribute, but *not* that of the
|
wenzelm@18815
|
1120 |
Simplifier (which is usually more generous).
|
wenzelm@18815
|
1121 |
|
kleing@24238
|
1122 |
* Isar: the new attribute [rotated n] (default n = 1) rotates the
|
kleing@24238
|
1123 |
premises of a theorem by n. Useful in conjunction with drule.
|
kleing@24238
|
1124 |
|
wenzelm@19220
|
1125 |
* Isar: the goal restriction operator [N] (default N = 1) evaluates a
|
wenzelm@19220
|
1126 |
method expression within a sandbox consisting of the first N
|
wenzelm@19240
|
1127 |
sub-goals, which need to exist. For example, ``simp_all [3]''
|
wenzelm@19240
|
1128 |
simplifies the first three sub-goals, while (rule foo, simp_all)[]
|
wenzelm@19240
|
1129 |
simplifies all new goals that emerge from applying rule foo to the
|
wenzelm@19240
|
1130 |
originally first one.
|
wenzelm@19220
|
1131 |
|
wenzelm@19814
|
1132 |
* Isar: schematic goals are no longer restricted to higher-order
|
wenzelm@19814
|
1133 |
patterns; e.g. ``lemma "?P(?x)" by (rule TrueI)'' now works as
|
wenzelm@19814
|
1134 |
expected.
|
wenzelm@19814
|
1135 |
|
wenzelm@18901
|
1136 |
* Isar: the conclusion of a long theorem statement is now either
|
wenzelm@18901
|
1137 |
'shows' (a simultaneous conjunction, as before), or 'obtains'
|
wenzelm@18901
|
1138 |
(essentially a disjunction of cases with local parameters and
|
wenzelm@18901
|
1139 |
assumptions). The latter allows to express general elimination rules
|
wenzelm@18910
|
1140 |
adequately; in this notation common elimination rules look like this:
|
wenzelm@18901
|
1141 |
|
wenzelm@18901
|
1142 |
lemma exE: -- "EX x. P x ==> (!!x. P x ==> thesis) ==> thesis"
|
wenzelm@18901
|
1143 |
assumes "EX x. P x"
|
wenzelm@18901
|
1144 |
obtains x where "P x"
|
wenzelm@18901
|
1145 |
|
wenzelm@18901
|
1146 |
lemma conjE: -- "A & B ==> (A ==> B ==> thesis) ==> thesis"
|
wenzelm@18901
|
1147 |
assumes "A & B"
|
wenzelm@18901
|
1148 |
obtains A and B
|
wenzelm@18901
|
1149 |
|
wenzelm@18901
|
1150 |
lemma disjE: -- "A | B ==> (A ==> thesis) ==> (B ==> thesis) ==> thesis"
|
wenzelm@18901
|
1151 |
assumes "A | B"
|
wenzelm@18901
|
1152 |
obtains
|
wenzelm@18901
|
1153 |
A
|
wenzelm@18901
|
1154 |
| B
|
wenzelm@18901
|
1155 |
|
wenzelm@18910
|
1156 |
The subsequent classical rules even refer to the formal "thesis"
|
wenzelm@18901
|
1157 |
explicitly:
|
wenzelm@18901
|
1158 |
|
wenzelm@18901
|
1159 |
lemma classical: -- "(~ thesis ==> thesis) ==> thesis"
|
wenzelm@18901
|
1160 |
obtains "~ thesis"
|
wenzelm@18901
|
1161 |
|
wenzelm@18910
|
1162 |
lemma Peirce's_Law: -- "((thesis ==> something) ==> thesis) ==> thesis"
|
wenzelm@18910
|
1163 |
obtains "thesis ==> something"
|
wenzelm@18901
|
1164 |
|
wenzelm@18901
|
1165 |
The actual proof of an 'obtains' statement is analogous to that of the
|
wenzelm@18910
|
1166 |
Isar proof element 'obtain', only that there may be several cases.
|
wenzelm@18910
|
1167 |
Optional case names may be specified in parentheses; these will be
|
wenzelm@18910
|
1168 |
available both in the present proof and as annotations in the
|
wenzelm@18910
|
1169 |
resulting rule, for later use with the 'cases' method (cf. attribute
|
wenzelm@18910
|
1170 |
case_names).
|
wenzelm@18901
|
1171 |
|
wenzelm@21447
|
1172 |
* Isar: the assumptions of a long theorem statement are available as
|
wenzelm@21447
|
1173 |
"assms" fact in the proof context. This is more appropriate than the
|
wenzelm@21447
|
1174 |
(historical) "prems", which refers to all assumptions of the current
|
wenzelm@21447
|
1175 |
context, including those from the target locale, proof body etc.
|
wenzelm@21447
|
1176 |
|
wenzelm@19263
|
1177 |
* Isar: 'print_statement' prints theorems from the current theory or
|
wenzelm@19263
|
1178 |
proof context in long statement form, according to the syntax of a
|
wenzelm@19263
|
1179 |
top-level lemma.
|
wenzelm@19263
|
1180 |
|
wenzelm@18901
|
1181 |
* Isar: 'obtain' takes an optional case name for the local context
|
wenzelm@18901
|
1182 |
introduction rule (default "that").
|
wenzelm@18901
|
1183 |
|
wenzelm@19587
|
1184 |
* Isar: removed obsolete 'concl is' patterns. INCOMPATIBILITY, use
|
wenzelm@19587
|
1185 |
explicit (is "_ ==> ?foo") in the rare cases where this still happens
|
wenzelm@19587
|
1186 |
to occur.
|
wenzelm@19587
|
1187 |
|
wenzelm@19682
|
1188 |
* Pure: syntax "CONST name" produces a fully internalized constant
|
wenzelm@19682
|
1189 |
according to the current context. This is particularly useful for
|
wenzelm@19682
|
1190 |
syntax translations that should refer to internal constant
|
wenzelm@19682
|
1191 |
representations independently of name spaces.
|
wenzelm@19682
|
1192 |
|
wenzelm@21537
|
1193 |
* Pure: syntax constant for foo (binder "FOO ") is called "foo_binder"
|
wenzelm@21537
|
1194 |
instead of "FOO ". This allows multiple binder declarations to coexist
|
wenzelm@21537
|
1195 |
in the same context. INCOMPATIBILITY.
|
wenzelm@21537
|
1196 |
|
wenzelm@21209
|
1197 |
* Isar/locales: 'notation' provides a robust interface to the 'syntax'
|
wenzelm@21209
|
1198 |
primitive that also works in a locale context (both for constants and
|
wenzelm@24950
|
1199 |
fixed variables). Type declaration and internal syntactic representation
|
wenzelm@24950
|
1200 |
of given constants retrieved from the context. Likewise, the
|
wenzelm@24950
|
1201 |
'no_notation' command allows to remove given syntax annotations from the
|
wenzelm@24950
|
1202 |
current context.
|
wenzelm@19682
|
1203 |
|
wenzelm@19665
|
1204 |
* Isar/locales: new derived specification elements 'axiomatization',
|
wenzelm@19665
|
1205 |
'definition', 'abbreviation', which support type-inference, admit
|
wenzelm@19083
|
1206 |
object-level specifications (equality, equivalence). See also the
|
wenzelm@19083
|
1207 |
isar-ref manual. Examples:
|
wenzelm@19081
|
1208 |
|
wenzelm@19665
|
1209 |
axiomatization
|
wenzelm@21595
|
1210 |
eq (infix "===" 50) where
|
wenzelm@21595
|
1211 |
eq_refl: "x === x" and eq_subst: "x === y ==> P x ==> P y"
|
wenzelm@21595
|
1212 |
|
wenzelm@21595
|
1213 |
definition "f x y = x + y + 1"
|
wenzelm@21595
|
1214 |
definition g where "g x = f x x"
|
wenzelm@19081
|
1215 |
|
wenzelm@19363
|
1216 |
abbreviation
|
wenzelm@21595
|
1217 |
neq (infix "=!=" 50) where
|
wenzelm@19363
|
1218 |
"x =!= y == ~ (x === y)"
|
wenzelm@19081
|
1219 |
|
wenzelm@19083
|
1220 |
These specifications may be also used in a locale context. Then the
|
wenzelm@19083
|
1221 |
constants being introduced depend on certain fixed parameters, and the
|
wenzelm@19083
|
1222 |
constant name is qualified by the locale base name. An internal
|
wenzelm@19083
|
1223 |
abbreviation takes care for convenient input and output, making the
|
wenzelm@19088
|
1224 |
parameters implicit and using the original short name. See also
|
wenzelm@25177
|
1225 |
src/HOL/ex/Abstract_NAT.thy for an example of deriving polymorphic
|
wenzelm@19083
|
1226 |
entities from a monomorphic theory.
|
wenzelm@19083
|
1227 |
|
wenzelm@19083
|
1228 |
Presently, abbreviations are only available 'in' a target locale, but
|
wenzelm@19363
|
1229 |
not inherited by general import expressions. Also note that
|
wenzelm@19363
|
1230 |
'abbreviation' may be used as a type-safe replacement for 'syntax' +
|
wenzelm@24735
|
1231 |
'translations' in common applications. The "no_abbrevs" print mode
|
wenzelm@24735
|
1232 |
prevents folding of abbreviations in term output.
|
wenzelm@19084
|
1233 |
|
wenzelm@19682
|
1234 |
Concrete syntax is attached to specified constants in internal form,
|
wenzelm@19682
|
1235 |
independently of name spaces. The parse tree representation is
|
wenzelm@21209
|
1236 |
slightly different -- use 'notation' instead of raw 'syntax', and
|
wenzelm@19682
|
1237 |
'translations' with explicit "CONST" markup to accommodate this.
|
wenzelm@19665
|
1238 |
|
wenzelm@24800
|
1239 |
* Pure/Isar: unified syntax for new-style specification mechanisms
|
wenzelm@24800
|
1240 |
(e.g. 'definition', 'abbreviation', or 'inductive' in HOL) admits
|
wenzelm@24800
|
1241 |
full type inference and dummy patterns ("_"). For example:
|
wenzelm@24735
|
1242 |
|
wenzelm@24735
|
1243 |
definition "K x _ = x"
|
wenzelm@24735
|
1244 |
|
wenzelm@24738
|
1245 |
inductive conj for A B
|
wenzelm@24738
|
1246 |
where "A ==> B ==> conj A B"
|
wenzelm@24738
|
1247 |
|
wenzelm@21735
|
1248 |
* Pure: command 'print_abbrevs' prints all constant abbreviations of
|
wenzelm@21735
|
1249 |
the current context. Print mode "no_abbrevs" prevents inversion of
|
wenzelm@21735
|
1250 |
abbreviations on output.
|
wenzelm@21735
|
1251 |
|
wenzelm@24800
|
1252 |
* Isar/locales: improved parameter handling: use of locales "var" and
|
wenzelm@24800
|
1253 |
"struct" no longer necessary; - parameter renamings are no longer
|
wenzelm@24800
|
1254 |
required to be injective. For example, this allows to define
|
wenzelm@24800
|
1255 |
endomorphisms as locale endom = homom mult mult h.
|
ballarin@19783
|
1256 |
|
ballarin@19931
|
1257 |
* Isar/locales: changed the way locales with predicates are defined.
|
ballarin@19931
|
1258 |
Instead of accumulating the specification, the imported expression is
|
wenzelm@22126
|
1259 |
now an interpretation. INCOMPATIBILITY: different normal form of
|
wenzelm@22126
|
1260 |
locale expressions. In particular, in interpretations of locales with
|
wenzelm@22126
|
1261 |
predicates, goals repesenting already interpreted fragments are not
|
wenzelm@22126
|
1262 |
removed automatically. Use methods `intro_locales' and
|
wenzelm@22126
|
1263 |
`unfold_locales'; see below.
|
wenzelm@22126
|
1264 |
|
wenzelm@22126
|
1265 |
* Isar/locales: new methods `intro_locales' and `unfold_locales'
|
wenzelm@22126
|
1266 |
provide backward reasoning on locales predicates. The methods are
|
wenzelm@22126
|
1267 |
aware of interpretations and discharge corresponding goals.
|
wenzelm@22126
|
1268 |
`intro_locales' is less aggressive then `unfold_locales' and does not
|
wenzelm@22126
|
1269 |
unfold predicates to assumptions.
|
ballarin@19931
|
1270 |
|
ballarin@19931
|
1271 |
* Isar/locales: the order in which locale fragments are accumulated
|
wenzelm@22126
|
1272 |
has changed. This enables to override declarations from fragments due
|
wenzelm@22126
|
1273 |
to interpretations -- for example, unwanted simp rules.
|
ballarin@19931
|
1274 |
|
ballarin@23920
|
1275 |
* Isar/locales: interpretation in theories and proof contexts has been
|
ballarin@23920
|
1276 |
extended. One may now specify (and prove) equations, which are
|
ballarin@23920
|
1277 |
unfolded in interpreted theorems. This is useful for replacing
|
ballarin@23920
|
1278 |
defined concepts (constants depending on locale parameters) by
|
ballarin@23920
|
1279 |
concepts already existing in the target context. Example:
|
ballarin@23920
|
1280 |
|
ballarin@23920
|
1281 |
interpretation partial_order ["op <= :: [int, int] => bool"]
|
ballarin@23920
|
1282 |
where "partial_order.less (op <=) (x::int) y = (x < y)"
|
ballarin@23920
|
1283 |
|
wenzelm@24800
|
1284 |
Typically, the constant `partial_order.less' is created by a
|
wenzelm@24800
|
1285 |
definition specification element in the context of locale
|
wenzelm@24800
|
1286 |
partial_order.
|
wenzelm@24800
|
1287 |
|
wenzelm@24859
|
1288 |
* Method "induct": improved internal context management to support
|
wenzelm@24800
|
1289 |
local fixes and defines on-the-fly. Thus explicit meta-level
|
wenzelm@24800
|
1290 |
connectives !! and ==> are rarely required anymore in inductive goals
|
wenzelm@24800
|
1291 |
(using object-logic connectives for this purpose has been long
|
wenzelm@24800
|
1292 |
obsolete anyway). Common proof patterns are explained in
|
wenzelm@25177
|
1293 |
src/HOL/Induct/Common_Patterns.thy, see also
|
wenzelm@25177
|
1294 |
src/HOL/Isar_examples/Puzzle.thy and src/HOL/Lambda for realistic
|
wenzelm@25177
|
1295 |
examples.
|
wenzelm@24606
|
1296 |
|
wenzelm@24859
|
1297 |
* Method "induct": improved handling of simultaneous goals. Instead of
|
wenzelm@24606
|
1298 |
introducing object-level conjunction, the statement is now split into
|
wenzelm@24606
|
1299 |
several conclusions, while the corresponding symbolic cases are nested
|
wenzelm@24606
|
1300 |
accordingly. INCOMPATIBILITY, proofs need to be structured explicitly,
|
wenzelm@25177
|
1301 |
see src/HOL/Induct/Common_Patterns.thy, for example.
|
wenzelm@24606
|
1302 |
|
wenzelm@24859
|
1303 |
* Method "induct": mutual induction rules are now specified as a list
|
wenzelm@24800
|
1304 |
of rule sharing the same induction cases. HOL packages usually provide
|
wenzelm@24606
|
1305 |
foo_bar.inducts for mutually defined items foo and bar (e.g. inductive
|
wenzelm@24859
|
1306 |
predicates/sets or datatypes). INCOMPATIBILITY, users need to specify
|
wenzelm@24859
|
1307 |
mutual induction rules differently, i.e. like this:
|
wenzelm@18506
|
1308 |
|
wenzelm@18506
|
1309 |
(induct rule: foo_bar.inducts)
|
wenzelm@18506
|
1310 |
(induct set: foo bar)
|
wenzelm@24859
|
1311 |
(induct pred: foo bar)
|
wenzelm@18506
|
1312 |
(induct type: foo bar)
|
wenzelm@18506
|
1313 |
|
wenzelm@18506
|
1314 |
The ML function ProjectRule.projections turns old-style rules into the
|
wenzelm@18506
|
1315 |
new format.
|
wenzelm@18506
|
1316 |
|
wenzelm@24859
|
1317 |
* Method "coinduct": dual of induction, see
|
wenzelm@18399
|
1318 |
src/HOL/Library/Coinductive_List.thy for various examples.
|
wenzelm@18399
|
1319 |
|
wenzelm@24859
|
1320 |
* Method "cases", "induct", "coinduct": the ``(open)'' option is
|
wenzelm@24859
|
1321 |
considered a legacy feature.
|
wenzelm@24859
|
1322 |
|
wenzelm@20919
|
1323 |
* Attribute "symmetric" produces result with standardized schematic
|
wenzelm@20919
|
1324 |
variables (index 0). Potential INCOMPATIBILITY.
|
wenzelm@20919
|
1325 |
|
wenzelm@22126
|
1326 |
* Simplifier: by default the simplifier trace only shows top level
|
wenzelm@22126
|
1327 |
rewrites now. That is, trace_simp_depth_limit is set to 1 by
|
wenzelm@22126
|
1328 |
default. Thus there is less danger of being flooded by the trace. The
|
wenzelm@22126
|
1329 |
trace indicates where parts have been suppressed.
|
nipkow@18674
|
1330 |
|
wenzelm@18536
|
1331 |
* Provers/classical: removed obsolete classical version of elim_format
|
wenzelm@18536
|
1332 |
attribute; classical elim/dest rules are now treated uniformly when
|
wenzelm@18536
|
1333 |
manipulating the claset.
|
wenzelm@18536
|
1334 |
|
wenzelm@18694
|
1335 |
* Provers/classical: stricter checks to ensure that supplied intro,
|
wenzelm@18694
|
1336 |
dest and elim rules are well-formed; dest and elim rules must have at
|
wenzelm@18694
|
1337 |
least one premise.
|
wenzelm@18694
|
1338 |
|
wenzelm@18694
|
1339 |
* Provers/classical: attributes dest/elim/intro take an optional
|
wenzelm@18695
|
1340 |
weight argument for the rule (just as the Pure versions). Weights are
|
wenzelm@18696
|
1341 |
ignored by automated tools, but determine the search order of single
|
wenzelm@18694
|
1342 |
rule steps.
|
paulson@18557
|
1343 |
|
wenzelm@18536
|
1344 |
* Syntax: input syntax now supports dummy variable binding "%_. b",
|
wenzelm@18536
|
1345 |
where the body does not mention the bound variable. Note that dummy
|
wenzelm@18536
|
1346 |
patterns implicitly depend on their context of bounds, which makes
|
wenzelm@18536
|
1347 |
"{_. _}" match any set comprehension as expected. Potential
|
wenzelm@18536
|
1348 |
INCOMPATIBILITY -- parse translations need to cope with syntactic
|
wenzelm@18536
|
1349 |
constant "_idtdummy" in the binding position.
|
wenzelm@18536
|
1350 |
|
wenzelm@18536
|
1351 |
* Syntax: removed obsolete syntactic constant "_K" and its associated
|
wenzelm@18536
|
1352 |
parse translation. INCOMPATIBILITY -- use dummy abstraction instead,
|
wenzelm@18536
|
1353 |
for example "A -> B" => "Pi A (%_. B)".
|
wenzelm@17779
|
1354 |
|
wenzelm@20582
|
1355 |
* Pure: 'class_deps' command visualizes the subclass relation, using
|
wenzelm@20582
|
1356 |
the graph browser tool.
|
wenzelm@20582
|
1357 |
|
wenzelm@24800
|
1358 |
* Pure: 'print_theory' now suppresses certain internal declarations by
|
wenzelm@24800
|
1359 |
default; use '!' option for full details.
|
wenzelm@20620
|
1360 |
|
wenzelm@17865
|
1361 |
|
nipkow@17806
|
1362 |
*** HOL ***
|
nipkow@17806
|
1363 |
|
wenzelm@25129
|
1364 |
* Method "metis" proves goals by applying the Metis general-purpose
|
wenzelm@25129
|
1365 |
resolution prover (see also http://gilith.com/software/metis/).
|
wenzelm@25129
|
1366 |
Examples are in the directory MetisExamples. WARNING: the
|
wenzelm@25129
|
1367 |
Isabelle/HOL-Metis integration does not yet work properly with
|
wenzelm@25129
|
1368 |
multi-threading.
|
wenzelm@25129
|
1369 |
|
wenzelm@25129
|
1370 |
* Command 'sledgehammer' invokes external automatic theorem provers as
|
wenzelm@25129
|
1371 |
background processes. It generates calls to the "metis" method if
|
wenzelm@25129
|
1372 |
successful. These can be pasted into the proof. Users do not have to
|
wenzelm@25129
|
1373 |
wait for the automatic provers to return. WARNING: does not really
|
wenzelm@25129
|
1374 |
work with multi-threading.
|
wenzelm@25129
|
1375 |
|
wenzelm@24804
|
1376 |
* New "auto_quickcheck" feature tests outermost goal statements for
|
wenzelm@24804
|
1377 |
potential counter-examples. Controlled by ML references
|
wenzelm@24804
|
1378 |
auto_quickcheck (default true) and auto_quickcheck_time_limit (default
|
wenzelm@25129
|
1379 |
5000 milliseconds). Fails silently if statements is outside of
|
wenzelm@25129
|
1380 |
executable fragment, or any other codgenerator problem occurs.
|
wenzelm@24804
|
1381 |
|
haftmann@25184
|
1382 |
* New constant "undefined" with axiom "undefined x = undefined".
|
haftmann@25184
|
1383 |
|
haftmann@25184
|
1384 |
* Added class "HOL.eq", allowing for code generation with polymorphic
|
haftmann@25184
|
1385 |
equality.
|
haftmann@25184
|
1386 |
|
haftmann@25184
|
1387 |
* Some renaming of class constants due to canonical name prefixing in
|
haftmann@25184
|
1388 |
the new 'class' package:
|
haftmann@25184
|
1389 |
|
haftmann@25184
|
1390 |
HOL.abs ~> HOL.abs_class.abs
|
haftmann@25184
|
1391 |
HOL.divide ~> HOL.divide_class.divide
|
haftmann@25184
|
1392 |
0 ~> HOL.zero_class.zero
|
haftmann@25184
|
1393 |
1 ~> HOL.one_class.one
|
haftmann@25184
|
1394 |
op + ~> HOL.plus_class.plus
|
haftmann@25184
|
1395 |
op - ~> HOL.minus_class.minus
|
haftmann@25184
|
1396 |
uminus ~> HOL.minus_class.uminus
|
haftmann@25184
|
1397 |
op * ~> HOL.times_class.times
|
haftmann@25184
|
1398 |
op < ~> HOL.ord_class.less
|
haftmann@25184
|
1399 |
op <= > HOL.ord_class.less_eq
|
haftmann@25184
|
1400 |
Nat.power ~> Power.power_class.power
|
haftmann@25184
|
1401 |
Nat.size ~> Nat.size_class.size
|
haftmann@25184
|
1402 |
Numeral.number_of ~> Numeral.number_class.number_of
|
haftmann@25184
|
1403 |
FixedPoint.Inf ~> Lattices.complete_lattice_class.Inf
|
haftmann@25184
|
1404 |
FixedPoint.Sup ~> Lattices.complete_lattice_class.Sup
|
haftmann@25184
|
1405 |
Orderings.min ~> Orderings.ord_class.min
|
haftmann@25184
|
1406 |
Orderings.max ~> Orderings.ord_class.max
|
haftmann@25184
|
1407 |
Divides.op div ~> Divides.div_class.div
|
haftmann@25184
|
1408 |
Divides.op mod ~> Divides.div_class.mod
|
haftmann@25184
|
1409 |
Divides.op dvd ~> Divides.div_class.dvd
|
haftmann@25184
|
1410 |
|
haftmann@25184
|
1411 |
INCOMPATIBILITY. Adaptions may be required in the following cases:
|
haftmann@25184
|
1412 |
|
haftmann@25184
|
1413 |
a) User-defined constants using any of the names "plus", "minus",
|
haftmann@25184
|
1414 |
"times", "less" or "less_eq". The standard syntax translations for
|
haftmann@25184
|
1415 |
"+", "-" and "*" may go wrong. INCOMPATIBILITY: use more specific
|
haftmann@25184
|
1416 |
names.
|
haftmann@25184
|
1417 |
|
haftmann@25184
|
1418 |
b) Variables named "plus", "minus", "times", "less", "less_eq"
|
haftmann@25184
|
1419 |
INCOMPATIBILITY: use more specific names.
|
haftmann@25184
|
1420 |
|
haftmann@25184
|
1421 |
c) Permutative equations (e.g. "a + b = b + a")
|
haftmann@25184
|
1422 |
Since the change of names also changes the order of terms, permutative
|
haftmann@25184
|
1423 |
rewrite rules may get applied in a different order. Experience shows
|
haftmann@25184
|
1424 |
that this is rarely the case (only two adaptions in the whole Isabelle
|
haftmann@25184
|
1425 |
distribution). INCOMPATIBILITY: rewrite proofs
|
haftmann@25184
|
1426 |
|
haftmann@25184
|
1427 |
d) ML code directly refering to constant names
|
haftmann@25184
|
1428 |
This in general only affects hand-written proof tactics, simprocs and
|
haftmann@25184
|
1429 |
so on. INCOMPATIBILITY: grep your sourcecode and replace names.
|
haftmann@25184
|
1430 |
Consider using @{const_name} antiquotation.
|
haftmann@25184
|
1431 |
|
haftmann@25184
|
1432 |
* New class "default" with associated constant "default".
|
haftmann@25184
|
1433 |
|
haftmann@25184
|
1434 |
* Function "sgn" is now overloaded and available on int, real, complex
|
haftmann@25184
|
1435 |
(and other numeric types), using class "sgn". Two possible defs of
|
haftmann@25184
|
1436 |
sgn are given as equational assumptions in the classes sgn_if and
|
haftmann@25184
|
1437 |
sgn_div_norm; ordered_idom now also inherits from sgn_if.
|
haftmann@25184
|
1438 |
INCOMPATIBILITY.
|
haftmann@25184
|
1439 |
|
haftmann@25184
|
1440 |
* Locale "partial_order" now unified with class "order" (cf. theory
|
haftmann@25184
|
1441 |
Orderings), added parameter "less". INCOMPATIBILITY.
|
haftmann@25184
|
1442 |
|
haftmann@25184
|
1443 |
* Renamings in classes "order" and "linorder": facts "refl", "trans" and
|
haftmann@25184
|
1444 |
"cases" to "order_refl", "order_trans" and "linorder_cases", to avoid
|
haftmann@25184
|
1445 |
clashes with HOL "refl" and "trans". INCOMPATIBILITY.
|
haftmann@25184
|
1446 |
|
haftmann@25184
|
1447 |
* Classes "order" and "linorder": potential INCOMPATIBILITY due to
|
haftmann@25184
|
1448 |
changed order of proof goals in instance proofs.
|
haftmann@25184
|
1449 |
|
haftmann@25184
|
1450 |
* The transitivity reasoner for partial and linear orders is set up
|
haftmann@25184
|
1451 |
for classes "order" and "linorder". Instances of the reasoner are available
|
haftmann@25184
|
1452 |
in all contexts importing or interpreting the corresponding locales.
|
haftmann@25184
|
1453 |
Method "order" invokes the reasoner separately; the reasoner
|
haftmann@25184
|
1454 |
is also integrated with the Simplifier as a solver. Diagnostic
|
haftmann@25184
|
1455 |
command 'print_orders' shows the available instances of the reasoner
|
haftmann@25184
|
1456 |
in the current context.
|
haftmann@25184
|
1457 |
|
haftmann@25184
|
1458 |
* Localized monotonicity predicate in theory "Orderings"; integrated
|
haftmann@25184
|
1459 |
lemmas max_of_mono and min_of_mono with this predicate.
|
haftmann@25184
|
1460 |
INCOMPATIBILITY.
|
haftmann@25184
|
1461 |
|
haftmann@25184
|
1462 |
* Formulation of theorem "dense" changed slightly due to integration
|
haftmann@25184
|
1463 |
with new class dense_linear_order.
|
haftmann@25184
|
1464 |
|
haftmann@25184
|
1465 |
* Uniform lattice theory development in HOL.
|
haftmann@25184
|
1466 |
|
haftmann@25184
|
1467 |
constants "meet" and "join" now named "inf" and "sup"
|
haftmann@25184
|
1468 |
constant "Meet" now named "Inf"
|
haftmann@25184
|
1469 |
|
haftmann@25184
|
1470 |
classes "meet_semilorder" and "join_semilorder" now named
|
haftmann@25184
|
1471 |
"lower_semilattice" and "upper_semilattice"
|
haftmann@25184
|
1472 |
class "lorder" now named "lattice"
|
haftmann@25184
|
1473 |
class "comp_lat" now named "complete_lattice"
|
haftmann@25184
|
1474 |
|
haftmann@25184
|
1475 |
Instantiation of lattice classes allows explicit definitions
|
haftmann@25184
|
1476 |
for "inf" and "sup" operations (or "Inf" and "Sup" for complete lattices).
|
haftmann@25184
|
1477 |
|
haftmann@25184
|
1478 |
INCOMPATIBILITY. Theorem renames:
|
haftmann@25184
|
1479 |
|
haftmann@25184
|
1480 |
meet_left_le ~> inf_le1
|
haftmann@25184
|
1481 |
meet_right_le ~> inf_le2
|
haftmann@25184
|
1482 |
join_left_le ~> sup_ge1
|
haftmann@25184
|
1483 |
join_right_le ~> sup_ge2
|
haftmann@25184
|
1484 |
meet_join_le ~> inf_sup_ord
|
haftmann@25184
|
1485 |
le_meetI ~> le_infI
|
haftmann@25184
|
1486 |
join_leI ~> le_supI
|
haftmann@25184
|
1487 |
le_meet ~> le_inf_iff
|
haftmann@25184
|
1488 |
le_join ~> ge_sup_conv
|
haftmann@25184
|
1489 |
meet_idempotent ~> inf_idem
|
haftmann@25184
|
1490 |
join_idempotent ~> sup_idem
|
haftmann@25184
|
1491 |
meet_comm ~> inf_commute
|
haftmann@25184
|
1492 |
join_comm ~> sup_commute
|
haftmann@25184
|
1493 |
meet_leI1 ~> le_infI1
|
haftmann@25184
|
1494 |
meet_leI2 ~> le_infI2
|
haftmann@25184
|
1495 |
le_joinI1 ~> le_supI1
|
haftmann@25184
|
1496 |
le_joinI2 ~> le_supI2
|
haftmann@25184
|
1497 |
meet_assoc ~> inf_assoc
|
haftmann@25184
|
1498 |
join_assoc ~> sup_assoc
|
haftmann@25184
|
1499 |
meet_left_comm ~> inf_left_commute
|
haftmann@25184
|
1500 |
meet_left_idempotent ~> inf_left_idem
|
haftmann@25184
|
1501 |
join_left_comm ~> sup_left_commute
|
haftmann@25184
|
1502 |
join_left_idempotent ~> sup_left_idem
|
haftmann@25184
|
1503 |
meet_aci ~> inf_aci
|
haftmann@25184
|
1504 |
join_aci ~> sup_aci
|
haftmann@25184
|
1505 |
le_def_meet ~> le_iff_inf
|
haftmann@25184
|
1506 |
le_def_join ~> le_iff_sup
|
haftmann@25184
|
1507 |
join_absorp2 ~> sup_absorb2
|
haftmann@25184
|
1508 |
join_absorp1 ~> sup_absorb1
|
haftmann@25184
|
1509 |
meet_absorp1 ~> inf_absorb1
|
haftmann@25184
|
1510 |
meet_absorp2 ~> inf_absorb2
|
haftmann@25184
|
1511 |
meet_join_absorp ~> inf_sup_absorb
|
haftmann@25184
|
1512 |
join_meet_absorp ~> sup_inf_absorb
|
haftmann@25184
|
1513 |
distrib_join_le ~> distrib_sup_le
|
haftmann@25184
|
1514 |
distrib_meet_le ~> distrib_inf_le
|
haftmann@25184
|
1515 |
|
haftmann@25184
|
1516 |
add_meet_distrib_left ~> add_inf_distrib_left
|
haftmann@25184
|
1517 |
add_join_distrib_left ~> add_sup_distrib_left
|
haftmann@25184
|
1518 |
is_join_neg_meet ~> is_join_neg_inf
|
haftmann@25184
|
1519 |
is_meet_neg_join ~> is_meet_neg_sup
|
haftmann@25184
|
1520 |
add_meet_distrib_right ~> add_inf_distrib_right
|
haftmann@25184
|
1521 |
add_join_distrib_right ~> add_sup_distrib_right
|
haftmann@25184
|
1522 |
add_meet_join_distribs ~> add_sup_inf_distribs
|
haftmann@25184
|
1523 |
join_eq_neg_meet ~> sup_eq_neg_inf
|
haftmann@25184
|
1524 |
meet_eq_neg_join ~> inf_eq_neg_sup
|
haftmann@25184
|
1525 |
add_eq_meet_join ~> add_eq_inf_sup
|
haftmann@25184
|
1526 |
meet_0_imp_0 ~> inf_0_imp_0
|
haftmann@25184
|
1527 |
join_0_imp_0 ~> sup_0_imp_0
|
haftmann@25184
|
1528 |
meet_0_eq_0 ~> inf_0_eq_0
|
haftmann@25184
|
1529 |
join_0_eq_0 ~> sup_0_eq_0
|
haftmann@25184
|
1530 |
neg_meet_eq_join ~> neg_inf_eq_sup
|
haftmann@25184
|
1531 |
neg_join_eq_meet ~> neg_sup_eq_inf
|
haftmann@25184
|
1532 |
join_eq_if ~> sup_eq_if
|
haftmann@25184
|
1533 |
|
haftmann@25184
|
1534 |
mono_meet ~> mono_inf
|
haftmann@25184
|
1535 |
mono_join ~> mono_sup
|
haftmann@25184
|
1536 |
meet_bool_eq ~> inf_bool_eq
|
haftmann@25184
|
1537 |
join_bool_eq ~> sup_bool_eq
|
haftmann@25184
|
1538 |
meet_fun_eq ~> inf_fun_eq
|
haftmann@25184
|
1539 |
join_fun_eq ~> sup_fun_eq
|
haftmann@25184
|
1540 |
meet_set_eq ~> inf_set_eq
|
haftmann@25184
|
1541 |
join_set_eq ~> sup_set_eq
|
haftmann@25184
|
1542 |
meet1_iff ~> inf1_iff
|
haftmann@25184
|
1543 |
meet2_iff ~> inf2_iff
|
haftmann@25184
|
1544 |
meet1I ~> inf1I
|
haftmann@25184
|
1545 |
meet2I ~> inf2I
|
haftmann@25184
|
1546 |
meet1D1 ~> inf1D1
|
haftmann@25184
|
1547 |
meet2D1 ~> inf2D1
|
haftmann@25184
|
1548 |
meet1D2 ~> inf1D2
|
haftmann@25184
|
1549 |
meet2D2 ~> inf2D2
|
haftmann@25184
|
1550 |
meet1E ~> inf1E
|
haftmann@25184
|
1551 |
meet2E ~> inf2E
|
haftmann@25184
|
1552 |
join1_iff ~> sup1_iff
|
haftmann@25184
|
1553 |
join2_iff ~> sup2_iff
|
haftmann@25184
|
1554 |
join1I1 ~> sup1I1
|
haftmann@25184
|
1555 |
join2I1 ~> sup2I1
|
haftmann@25184
|
1556 |
join1I1 ~> sup1I1
|
haftmann@25184
|
1557 |
join2I2 ~> sup1I2
|
haftmann@25184
|
1558 |
join1CI ~> sup1CI
|
haftmann@25184
|
1559 |
join2CI ~> sup2CI
|
haftmann@25184
|
1560 |
join1E ~> sup1E
|
haftmann@25184
|
1561 |
join2E ~> sup2E
|
haftmann@25184
|
1562 |
|
haftmann@25184
|
1563 |
is_meet_Meet ~> is_meet_Inf
|
haftmann@25184
|
1564 |
Meet_bool_def ~> Inf_bool_def
|
haftmann@25184
|
1565 |
Meet_fun_def ~> Inf_fun_def
|
haftmann@25184
|
1566 |
Meet_greatest ~> Inf_greatest
|
haftmann@25184
|
1567 |
Meet_lower ~> Inf_lower
|
haftmann@25184
|
1568 |
Meet_set_def ~> Inf_set_def
|
haftmann@25184
|
1569 |
|
haftmann@25184
|
1570 |
Sup_def ~> Sup_Inf
|
haftmann@25184
|
1571 |
Sup_bool_eq ~> Sup_bool_def
|
haftmann@25184
|
1572 |
Sup_fun_eq ~> Sup_fun_def
|
haftmann@25184
|
1573 |
Sup_set_eq ~> Sup_set_def
|
haftmann@25184
|
1574 |
|
haftmann@25184
|
1575 |
listsp_meetI ~> listsp_infI
|
haftmann@25184
|
1576 |
listsp_meet_eq ~> listsp_inf_eq
|
haftmann@25184
|
1577 |
|
haftmann@25184
|
1578 |
meet_min ~> inf_min
|
haftmann@25184
|
1579 |
join_max ~> sup_max
|
haftmann@25184
|
1580 |
|
haftmann@25184
|
1581 |
* Added syntactic class "size"; overloaded constant "size" now has
|
haftmann@25184
|
1582 |
type "'a::size ==> bool"
|
haftmann@25184
|
1583 |
|
wenzelm@24800
|
1584 |
* Internal reorganisation of `size' of datatypes: size theorems
|
wenzelm@24800
|
1585 |
"foo.size" are no longer subsumed by "foo.simps" (but are still
|
wenzelm@24800
|
1586 |
simplification rules by default!); theorems "prod.size" now named
|
haftmann@25184
|
1587 |
"*.size".
|
haftmann@25184
|
1588 |
|
haftmann@25184
|
1589 |
* Class "div" now inherits from class "times" rather than "type".
|
haftmann@25184
|
1590 |
INCOMPATIBILITY.
|
wenzelm@24800
|
1591 |
|
wenzelm@24800
|
1592 |
* HOL/Finite_Set: "name-space" locales Lattice, Distrib_lattice,
|
wenzelm@24800
|
1593 |
Linorder etc. have disappeared; operations defined in terms of
|
wenzelm@24800
|
1594 |
fold_set now are named Inf_fin, Sup_fin. INCOMPATIBILITY.
|
wenzelm@24800
|
1595 |
|
wenzelm@25129
|
1596 |
* HOL/Nat: neq0_conv no longer declared as iff. INCOMPATIBILITY.
|
wenzelm@25129
|
1597 |
|
wenzelm@24800
|
1598 |
* HOL-Word: New extensive library and type for generic, fixed size
|
wenzelm@24800
|
1599 |
machine words, with arithemtic, bit-wise, shifting and rotating
|
wenzelm@24800
|
1600 |
operations, reflection into int, nat, and bool lists, automation for
|
wenzelm@24800
|
1601 |
linear arithmetic (by automatic reflection into nat or int), including
|
wenzelm@24800
|
1602 |
lemmas on overflow and monotonicity. Instantiated to all appropriate
|
wenzelm@24800
|
1603 |
arithmetic type classes, supporting automatic simplification of
|
wenzelm@24800
|
1604 |
numerals on all operations.
|
kleing@24333
|
1605 |
|
kleing@24333
|
1606 |
* Library/Boolean_Algebra: locales for abstract boolean algebras.
|
kleing@24333
|
1607 |
|
kleing@24333
|
1608 |
* Library/Numeral_Type: numbers as types, e.g. TYPE(32).
|
kleing@24333
|
1609 |
|
haftmann@23850
|
1610 |
* Code generator library theories:
|
haftmann@24993
|
1611 |
- Code_Integer represents HOL integers by big integer literals in target
|
haftmann@23850
|
1612 |
languages.
|
haftmann@24993
|
1613 |
- Code_Char represents HOL characters by character literals in target
|
haftmann@23850
|
1614 |
languages.
|
haftmann@24993
|
1615 |
- Code_Char_chr like Code_Char, but also offers treatment of character
|
haftmann@24993
|
1616 |
codes; includes Code_Integer.
|
wenzelm@24800
|
1617 |
- Executable_Set allows to generate code for finite sets using lists.
|
wenzelm@24800
|
1618 |
- Executable_Rat implements rational numbers as triples (sign, enumerator,
|
haftmann@23850
|
1619 |
denominator).
|
wenzelm@24800
|
1620 |
- Executable_Real implements a subset of real numbers, namly those
|
haftmann@23850
|
1621 |
representable by rational numbers.
|
wenzelm@24800
|
1622 |
- Efficient_Nat implements natural numbers by integers, which in general will
|
haftmann@23850
|
1623 |
result in higher efficency; pattern matching with 0/Suc is eliminated;
|
haftmann@24993
|
1624 |
includes Code_Integer.
|
haftmann@24993
|
1625 |
- Code_Index provides an additional datatype index which is mapped to
|
haftmann@24993
|
1626 |
target-language built-in integers.
|
haftmann@26355
|
1627 |
- Code_Message provides an additional datatype message_string which is isomorphic to
|
haftmann@24993
|
1628 |
strings; messages are mapped to target-language strings.
|
haftmann@23850
|
1629 |
|
berghofe@23783
|
1630 |
* New package for inductive predicates
|
berghofe@23783
|
1631 |
|
berghofe@23783
|
1632 |
An n-ary predicate p with m parameters z_1, ..., z_m can now be defined via
|
berghofe@23783
|
1633 |
|
berghofe@23783
|
1634 |
inductive
|
berghofe@23783
|
1635 |
p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool"
|
berghofe@23783
|
1636 |
for z_1 :: U_1 and ... and z_n :: U_m
|
berghofe@23783
|
1637 |
where
|
berghofe@23783
|
1638 |
rule_1: "... ==> p z_1 ... z_m t_1_1 ... t_1_n"
|
berghofe@23783
|
1639 |
| ...
|
berghofe@23783
|
1640 |
|
wenzelm@24800
|
1641 |
with full support for type-inference, rather than
|
berghofe@23783
|
1642 |
|
berghofe@23783
|
1643 |
consts s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set"
|
berghofe@23783
|
1644 |
|
berghofe@23783
|
1645 |
abbreviation p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool"
|
berghofe@23783
|
1646 |
where "p z_1 ... z_m x_1 ... x_n == (x_1, ..., x_n) : s z_1 ... z_m"
|
berghofe@23783
|
1647 |
|
berghofe@23783
|
1648 |
inductive "s z_1 ... z_m"
|
berghofe@23783
|
1649 |
intros
|
berghofe@23783
|
1650 |
rule_1: "... ==> (t_1_1, ..., t_1_n) : s z_1 ... z_m"
|
berghofe@23783
|
1651 |
...
|
berghofe@23783
|
1652 |
|
berghofe@23783
|
1653 |
For backward compatibility, there is a wrapper allowing inductive
|
berghofe@23783
|
1654 |
sets to be defined with the new package via
|
berghofe@23783
|
1655 |
|
berghofe@23783
|
1656 |
inductive_set
|
berghofe@23783
|
1657 |
s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set"
|
berghofe@23783
|
1658 |
for z_1 :: U_1 and ... and z_n :: U_m
|
berghofe@23783
|
1659 |
where
|
berghofe@23783
|
1660 |
rule_1: "... ==> (t_1_1, ..., t_1_n) : s z_1 ... z_m"
|
berghofe@23783
|
1661 |
| ...
|
berghofe@23783
|
1662 |
|
berghofe@23783
|
1663 |
or
|
berghofe@23783
|
1664 |
|
berghofe@23783
|
1665 |
inductive_set
|
berghofe@23783
|
1666 |
s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set"
|
berghofe@23783
|
1667 |
and p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool"
|
berghofe@23783
|
1668 |
for z_1 :: U_1 and ... and z_n :: U_m
|
berghofe@23783
|
1669 |
where
|
berghofe@23783
|
1670 |
"p z_1 ... z_m x_1 ... x_n == (x_1, ..., x_n) : s z_1 ... z_m"
|
berghofe@23783
|
1671 |
| rule_1: "... ==> p z_1 ... z_m t_1_1 ... t_1_n"
|
berghofe@23783
|
1672 |
| ...
|
berghofe@23783
|
1673 |
|
berghofe@23783
|
1674 |
if the additional syntax "p ..." is required.
|
berghofe@23783
|
1675 |
|
wenzelm@25177
|
1676 |
Numerous examples can be found in the subdirectories src/HOL/Auth,
|
wenzelm@25177
|
1677 |
src/HOL/Bali, src/HOL/Induct, and src/HOL/MicroJava.
|
berghofe@23783
|
1678 |
|
berghofe@23783
|
1679 |
INCOMPATIBILITIES:
|
berghofe@23783
|
1680 |
|
berghofe@23783
|
1681 |
- Since declaration and definition of inductive sets or predicates
|
wenzelm@24800
|
1682 |
is no longer separated, abbreviations involving the newly
|
wenzelm@24800
|
1683 |
introduced sets or predicates must be specified together with the
|
wenzelm@24800
|
1684 |
introduction rules after the 'where' keyword (see above), rather
|
wenzelm@24800
|
1685 |
than before the actual inductive definition.
|
wenzelm@24800
|
1686 |
|
wenzelm@24800
|
1687 |
- The variables in induction and elimination rules are now
|
wenzelm@24800
|
1688 |
quantified in the order of their occurrence in the introduction
|
wenzelm@24800
|
1689 |
rules, rather than in alphabetical order. Since this may break
|
wenzelm@24800
|
1690 |
some proofs, these proofs either have to be repaired, e.g. by
|
wenzelm@24800
|
1691 |
reordering the variables a_i_1 ... a_i_{k_i} in Isar 'case'
|
wenzelm@24800
|
1692 |
statements of the form
|
berghofe@23783
|
1693 |
|
berghofe@23783
|
1694 |
case (rule_i a_i_1 ... a_i_{k_i})
|
berghofe@23783
|
1695 |
|
berghofe@23783
|
1696 |
or the old order of quantification has to be restored by explicitly adding
|
berghofe@23783
|
1697 |
meta-level quantifiers in the introduction rules, i.e.
|
berghofe@23783
|
1698 |
|
berghofe@23783
|
1699 |
| rule_i: "!!a_i_1 ... a_i_{k_i}. ... ==> p z_1 ... z_m t_i_1 ... t_i_n"
|
berghofe@23783
|
1700 |
|
berghofe@23783
|
1701 |
- The format of the elimination rules is now
|
berghofe@23783
|
1702 |
|
berghofe@23783
|
1703 |
p z_1 ... z_m x_1 ... x_n ==>
|
berghofe@23783
|
1704 |
(!!a_1_1 ... a_1_{k_1}. x_1 = t_1_1 ==> ... ==> x_n = t_1_n ==> ... ==> P)
|
berghofe@23783
|
1705 |
==> ... ==> P
|
berghofe@23783
|
1706 |
|
berghofe@23783
|
1707 |
for predicates and
|
berghofe@23783
|
1708 |
|
berghofe@23783
|
1709 |
(x_1, ..., x_n) : s z_1 ... z_m ==>
|
berghofe@23783
|
1710 |
(!!a_1_1 ... a_1_{k_1}. x_1 = t_1_1 ==> ... ==> x_n = t_1_n ==> ... ==> P)
|
berghofe@23783
|
1711 |
==> ... ==> P
|
berghofe@23783
|
1712 |
|
berghofe@23783
|
1713 |
for sets rather than
|
berghofe@23783
|
1714 |
|
berghofe@23783
|
1715 |
x : s z_1 ... z_m ==>
|
berghofe@23783
|
1716 |
(!!a_1_1 ... a_1_{k_1}. x = (t_1_1, ..., t_1_n) ==> ... ==> P)
|
berghofe@23783
|
1717 |
==> ... ==> P
|
berghofe@23783
|
1718 |
|
wenzelm@24800
|
1719 |
This may require terms in goals to be expanded to n-tuples
|
wenzelm@24800
|
1720 |
(e.g. using case_tac or simplification with the split_paired_all
|
wenzelm@24800
|
1721 |
rule) before the above elimination rule is applicable.
|
wenzelm@24800
|
1722 |
|
wenzelm@24800
|
1723 |
- The elimination or case analysis rules for (mutually) inductive
|
wenzelm@24800
|
1724 |
sets or predicates are now called "p_1.cases" ... "p_k.cases". The
|
wenzelm@24800
|
1725 |
list of rules "p_1_..._p_k.elims" is no longer available.
|
berghofe@23783
|
1726 |
|
krauss@25198
|
1727 |
* New package "function"/"fun" for general recursive functions,
|
krauss@25198
|
1728 |
supporting mutual and nested recursion, definitions in local contexts,
|
krauss@25198
|
1729 |
more general pattern matching and partiality. See HOL/ex/Fundefs.thy
|
krauss@25198
|
1730 |
for small examples, and the separate tutorial on the function
|
krauss@25198
|
1731 |
package. The old recdef "package" is still available as before, but
|
krauss@25198
|
1732 |
users are encouraged to use the new package.
|
krauss@25198
|
1733 |
|
krauss@25198
|
1734 |
* Method "lexicographic_order" automatically synthesizes termination
|
krauss@25198
|
1735 |
relations as lexicographic combinations of size measures.
|
krauss@25198
|
1736 |
|
wenzelm@24800
|
1737 |
* Case-expressions allow arbitrary constructor-patterns (including
|
wenzelm@24800
|
1738 |
"_") and take their order into account, like in functional
|
wenzelm@24800
|
1739 |
programming. Internally, this is translated into nested
|
wenzelm@24800
|
1740 |
case-expressions; missing cases are added and mapped to the predefined
|
wenzelm@24800
|
1741 |
constant "undefined". In complicated cases printing may no longer show
|
wenzelm@24800
|
1742 |
the original input but the internal form. Lambda-abstractions allow
|
wenzelm@24800
|
1743 |
the same form of pattern matching: "% pat1 => e1 | ..." is an
|
wenzelm@24800
|
1744 |
abbreviation for "%x. case x of pat1 => e1 | ..." where x is a new
|
wenzelm@24800
|
1745 |
variable.
|
nipkow@23564
|
1746 |
|
huffman@23468
|
1747 |
* IntDef: The constant "int :: nat => int" has been removed; now "int"
|
wenzelm@24800
|
1748 |
is an abbreviation for "of_nat :: nat => int". The simplification
|
wenzelm@24800
|
1749 |
rules for "of_nat" have been changed to work like "int" did
|
wenzelm@24800
|
1750 |
previously. Potential INCOMPATIBILITY:
|
huffman@23468
|
1751 |
- "of_nat (Suc m)" simplifies to "1 + of_nat m" instead of "of_nat m + 1"
|
huffman@23468
|
1752 |
- of_nat_diff and of_nat_mult are no longer default simp rules
|
huffman@23377
|
1753 |
|
chaieb@23295
|
1754 |
* Method "algebra" solves polynomial equations over (semi)rings using
|
wenzelm@24800
|
1755 |
Groebner bases. The (semi)ring structure is defined by locales and the
|
wenzelm@24800
|
1756 |
tool setup depends on that generic context. Installing the method for
|
wenzelm@24800
|
1757 |
a specific type involves instantiating the locale and possibly adding
|
wenzelm@24800
|
1758 |
declarations for computation on the coefficients. The method is
|
wenzelm@24800
|
1759 |
already instantiated for natural numbers and for the axiomatic class
|
wenzelm@24800
|
1760 |
of idoms with numerals. See also the paper by Chaieb and Wenzel at
|
wenzelm@24800
|
1761 |
CALCULEMUS 2007 for the general principles underlying this
|
wenzelm@24800
|
1762 |
architecture of context-aware proof-tools.
|
wenzelm@24800
|
1763 |
|
wenzelm@25033
|
1764 |
* Method "ferrack" implements quantifier elimination over
|
wenzelm@25033
|
1765 |
special-purpose dense linear orders using locales (analogous to
|
wenzelm@25033
|
1766 |
"algebra"). The method is already installed for class
|
wenzelm@25033
|
1767 |
{ordered_field,recpower,number_ring} which subsumes real, hyperreal,
|
wenzelm@25033
|
1768 |
rat, etc.
|
wenzelm@25033
|
1769 |
|
wenzelm@24800
|
1770 |
* Former constant "List.op @" now named "List.append". Use ML
|
wenzelm@24800
|
1771 |
antiquotations @{const_name List.append} or @{term " ... @ ... "} to
|
wenzelm@24800
|
1772 |
circumvent possible incompatibilities when working on ML level.
|
wenzelm@24800
|
1773 |
|
haftmann@24996
|
1774 |
* primrec: missing cases mapped to "undefined" instead of "arbitrary".
|
haftmann@22845
|
1775 |
|
wenzelm@24800
|
1776 |
* New function listsum :: 'a list => 'a for arbitrary monoids.
|
wenzelm@24800
|
1777 |
Special syntax: "SUM x <- xs. f x" (and latex variants)
|
wenzelm@24800
|
1778 |
|
wenzelm@24800
|
1779 |
* New syntax for Haskell-like list comprehension (input only), eg.
|
wenzelm@25177
|
1780 |
[(x,y). x <- xs, y <- ys, x ~= y], see also src/HOL/List.thy.
|
wenzelm@24800
|
1781 |
|
wenzelm@24800
|
1782 |
* The special syntax for function "filter" has changed from [x :
|
wenzelm@24800
|
1783 |
xs. P] to [x <- xs. P] to avoid an ambiguity caused by list
|
wenzelm@24800
|
1784 |
comprehension syntax, and for uniformity. INCOMPATIBILITY.
|
wenzelm@24800
|
1785 |
|
wenzelm@24800
|
1786 |
* [a..b] is now defined for arbitrary linear orders. It used to be
|
wenzelm@24800
|
1787 |
defined on nat only, as an abbreviation for [a..<Suc b]
|
wenzelm@24800
|
1788 |
INCOMPATIBILITY.
|
wenzelm@24800
|
1789 |
|
wenzelm@24800
|
1790 |
* Renamed lemma "set_take_whileD" to "set_takeWhileD".
|
wenzelm@24800
|
1791 |
|
wenzelm@25177
|
1792 |
* New functions "sorted" and "sort" in src/HOL/List.thy.
|
wenzelm@24800
|
1793 |
|
wenzelm@24800
|
1794 |
* New lemma collection field_simps (an extension of ring_simps) for
|
wenzelm@24800
|
1795 |
manipulating (in)equations involving division. Multiplies with all
|
wenzelm@24800
|
1796 |
denominators that can be proved to be non-zero (in equations) or
|
wenzelm@24800
|
1797 |
positive/negative (in inequations).
|
nipkow@23480
|
1798 |
|
nipkow@23480
|
1799 |
* Lemma collections ring_eq_simps, group_eq_simps and ring_distrib
|
wenzelm@24800
|
1800 |
have been improved and renamed to ring_simps, group_simps and
|
wenzelm@24800
|
1801 |
ring_distribs. Removed lemmas field_xyz in theory Ring_and_Field
|
wenzelm@24800
|
1802 |
because they were subsumed by lemmas xyz. INCOMPATIBILITY.
|
wenzelm@24800
|
1803 |
|
wenzelm@25177
|
1804 |
* Theory Library/Commutative_Ring: switched from recdef to function
|
wenzelm@24800
|
1805 |
package; constants add, mul, pow now curried. Infix syntax for
|
wenzelm@24800
|
1806 |
algebraic operations.
|
haftmann@22735
|
1807 |
|
wenzelm@24800
|
1808 |
* Dropped redundant lemma def_imp_eq in favor of meta_eq_to_obj_eq.
|
haftmann@22218
|
1809 |
INCOMPATIBILITY.
|
haftmann@22218
|
1810 |
|
wenzelm@24800
|
1811 |
* Dropped redundant lemma if_def2 in favor of if_bool_eq_conj.
|
haftmann@22218
|
1812 |
INCOMPATIBILITY.
|
haftmann@22218
|
1813 |
|
wenzelm@22126
|
1814 |
* HOL/records: generalised field-update to take a function on the
|
wenzelm@22126
|
1815 |
field rather than the new value: r(|A := x|) is translated to A_update
|
wenzelm@22126
|
1816 |
(K x) r The K-combinator that is internally used is called K_record.
|
schirmer@21226
|
1817 |
INCOMPATIBILITY: Usage of the plain update functions has to be
|
schirmer@21226
|
1818 |
adapted.
|
schirmer@21226
|
1819 |
|
wenzelm@24800
|
1820 |
* Class "semiring_0" now contains annihilation axioms x * 0 = 0 and 0
|
wenzelm@24800
|
1821 |
* x = 0, which are required for a semiring. Richer structures do not
|
wenzelm@24800
|
1822 |
inherit from semiring_0 anymore, because this property is a theorem
|
wenzelm@24800
|
1823 |
there, not an axiom. INCOMPATIBILITY: In instances of semiring_0,
|
wenzelm@24800
|
1824 |
there is more to prove, but this is mostly trivial.
|
wenzelm@24800
|
1825 |
|
wenzelm@24800
|
1826 |
* Class "recpower" is generalized to arbitrary monoids, not just
|
wenzelm@24800
|
1827 |
commutative semirings. INCOMPATIBILITY: may need to incorporate
|
haftmann@25163
|
1828 |
commutativity or semiring properties additionally.
|
haftmann@21215
|
1829 |
|
haftmann@21099
|
1830 |
* Constant "List.list_all2" in List.thy now uses authentic syntax.
|
wenzelm@24800
|
1831 |
INCOMPATIBILITY: translations containing list_all2 may go wrong,
|
wenzelm@24800
|
1832 |
better use 'abbreviation'.
|
wenzelm@24800
|
1833 |
|
wenzelm@24800
|
1834 |
* Renamed constant "List.op mem" to "List.member". INCOMPATIBILITY.
|
wenzelm@24800
|
1835 |
|
wenzelm@22126
|
1836 |
* Numeral syntax: type 'bin' which was a mere type copy of 'int' has
|
wenzelm@24800
|
1837 |
been abandoned in favour of plain 'int'. INCOMPATIBILITY --
|
wenzelm@22126
|
1838 |
significant changes for setting up numeral syntax for types:
|
wenzelm@24800
|
1839 |
- New constants Numeral.pred and Numeral.succ instead
|
haftmann@20485
|
1840 |
of former Numeral.bin_pred and Numeral.bin_succ.
|
haftmann@20485
|
1841 |
- Use integer operations instead of bin_add, bin_mult and so on.
|
haftmann@20485
|
1842 |
- Numeral simplification theorems named Numeral.numeral_simps instead of Bin_simps.
|
haftmann@20485
|
1843 |
- ML structure Bin_Simprocs now named Int_Numeral_Base_Simprocs.
|
haftmann@20485
|
1844 |
|
wenzelm@25177
|
1845 |
See src/HOL/Integ/IntArith.thy for an example setup.
|
wenzelm@25177
|
1846 |
|
wenzelm@25177
|
1847 |
* Command 'normal_form' computes the normal form of a term that may
|
wenzelm@25177
|
1848 |
contain free variables. For example ``normal_form "rev [a, b, c]"''
|
wenzelm@25177
|
1849 |
produces ``[b, c, a]'' (without proof). This command is suitable for
|
wenzelm@25177
|
1850 |
heavy-duty computations because the functions are compiled to ML
|
wenzelm@25177
|
1851 |
first. Correspondingly, a method "normalization" is provided. See
|
wenzelm@25177
|
1852 |
further src/HOL/ex/NormalForm.thy and src/Tools/nbe.ML.
|
nipkow@19895
|
1853 |
|
wenzelm@17996
|
1854 |
* Alternative iff syntax "A <-> B" for equality on bool (with priority
|
wenzelm@17996
|
1855 |
25 like -->); output depends on the "iff" print_mode, the default is
|
wenzelm@17996
|
1856 |
"A = B" (with priority 50).
|
wenzelm@17996
|
1857 |
|
wenzelm@21265
|
1858 |
* Relations less (<) and less_eq (<=) are also available on type bool.
|
wenzelm@21265
|
1859 |
Modified syntax to disallow nesting without explicit parentheses,
|
wenzelm@24800
|
1860 |
e.g. "(x < y) < z" or "x < (y < z)", but NOT "x < y < z". Potential
|
wenzelm@24800
|
1861 |
INCOMPATIBILITY.
|
wenzelm@21265
|
1862 |
|
nipkow@18674
|
1863 |
* "LEAST x:A. P" expands to "LEAST x. x:A & P" (input only).
|
nipkow@18674
|
1864 |
|
krauss@20716
|
1865 |
* Relation composition operator "op O" now has precedence 75 and binds
|
krauss@20716
|
1866 |
stronger than union and intersection. INCOMPATIBILITY.
|
krauss@20716
|
1867 |
|
wenzelm@22126
|
1868 |
* The old set interval syntax "{m..n(}" (and relatives) has been
|
wenzelm@22126
|
1869 |
removed. Use "{m..<n}" (and relatives) instead.
|
nipkow@19377
|
1870 |
|
wenzelm@17865
|
1871 |
* In the context of the assumption "~(s = t)" the Simplifier rewrites
|
wenzelm@24800
|
1872 |
"t = s" to False (by simproc "neq"). INCOMPATIBILITY, consider using
|
wenzelm@24800
|
1873 |
``declare [[simproc del: neq]]''.
|
wenzelm@24800
|
1874 |
|
wenzelm@24800
|
1875 |
* Simplifier: "m dvd n" where m and n are numbers is evaluated to
|
wenzelm@24800
|
1876 |
True/False.
|
wenzelm@24800
|
1877 |
|
wenzelm@24800
|
1878 |
* Theorem Cons_eq_map_conv no longer declared as "simp".
|
nipkow@19211
|
1879 |
|
ballarin@19279
|
1880 |
* Theorem setsum_mult renamed to setsum_right_distrib.
|
ballarin@19279
|
1881 |
|
nipkow@19211
|
1882 |
* Prefer ex1I over ex_ex1I in single-step reasoning, e.g. by the
|
wenzelm@22126
|
1883 |
``rule'' method.
|
wenzelm@22126
|
1884 |
|
wenzelm@24800
|
1885 |
* Reimplemented methods "sat" and "satx", with several improvements:
|
wenzelm@24800
|
1886 |
goals no longer need to be stated as "<prems> ==> False", equivalences
|
wenzelm@24800
|
1887 |
(i.e. "=" on type bool) are handled, variable names of the form
|
wenzelm@24800
|
1888 |
"lit_<n>" are no longer reserved, significant speedup.
|
wenzelm@24800
|
1889 |
|
wenzelm@24800
|
1890 |
* Methods "sat" and "satx" can now replay MiniSat proof traces.
|
wenzelm@22126
|
1891 |
zChaff is still supported as well.
|
wenzelm@22126
|
1892 |
|
wenzelm@22126
|
1893 |
* 'inductive' and 'datatype': provide projections of mutual rules,
|
wenzelm@22126
|
1894 |
bundled as foo_bar.inducts;
|
wenzelm@22126
|
1895 |
|
wenzelm@22126
|
1896 |
* Library: moved theories Parity, GCD, Binomial, Infinite_Set to
|
wenzelm@22126
|
1897 |
Library.
|
wenzelm@21256
|
1898 |
|
wenzelm@21256
|
1899 |
* Library: moved theory Accessible_Part to main HOL.
|
wenzelm@19572
|
1900 |
|
wenzelm@18446
|
1901 |
* Library: added theory Coinductive_List of potentially infinite lists
|
wenzelm@18446
|
1902 |
as greatest fixed-point.
|
wenzelm@18399
|
1903 |
|
wenzelm@19254
|
1904 |
* Library: added theory AssocList which implements (finite) maps as
|
schirmer@19252
|
1905 |
association lists.
|
webertj@17809
|
1906 |
|
wenzelm@24800
|
1907 |
* Method "evaluation" solves goals (i.e. a boolean expression)
|
wenzelm@24800
|
1908 |
efficiently by compiling it to ML. The goal is "proved" (via an
|
wenzelm@24800
|
1909 |
oracle) if it evaluates to True.
|
wenzelm@20807
|
1910 |
|
wenzelm@20807
|
1911 |
* Linear arithmetic now splits certain operators (e.g. min, max, abs)
|
wenzelm@24800
|
1912 |
also when invoked by the simplifier. This results in the Simplifier
|
wenzelm@24800
|
1913 |
being more powerful on arithmetic goals. INCOMPATIBILITY.
|
wenzelm@24800
|
1914 |
Configuration option fast_arith_split_limit=0 recovers the old
|
wenzelm@24800
|
1915 |
behavior.
|
webertj@20217
|
1916 |
|
wenzelm@22126
|
1917 |
* Support for hex (0x20) and binary (0b1001) numerals.
|
wenzelm@19254
|
1918 |
|
wenzelm@20807
|
1919 |
* New method: reify eqs (t), where eqs are equations for an
|
wenzelm@20807
|
1920 |
interpretation I :: 'a list => 'b => 'c and t::'c is an optional
|
wenzelm@20807
|
1921 |
parameter, computes a term s::'b and a list xs::'a list and proves the
|
wenzelm@20807
|
1922 |
theorem I xs s = t. This is also known as reification or quoting. The
|
wenzelm@20807
|
1923 |
resulting theorem is applied to the subgoal to substitute t with I xs
|
wenzelm@20807
|
1924 |
s. If t is omitted, the subgoal itself is reified.
|
wenzelm@20807
|
1925 |
|
wenzelm@20807
|
1926 |
* New method: reflection corr_thm eqs (t). The parameters eqs and (t)
|
wenzelm@20807
|
1927 |
are as explained above. corr_thm is a theorem for I vs (f t) = I vs t,
|
wenzelm@20807
|
1928 |
where f is supposed to be a computable function (in the sense of code
|
wenzelm@20807
|
1929 |
generattion). The method uses reify to compute s and xs as above then
|
wenzelm@20807
|
1930 |
applies corr_thm and uses normalization by evaluation to "prove" f s =
|
wenzelm@20807
|
1931 |
r and finally gets the theorem t = r, which is again applied to the
|
wenzelm@25177
|
1932 |
subgoal. An Example is available in src/HOL/ex/ReflectionEx.thy.
|
wenzelm@25177
|
1933 |
|
wenzelm@25177
|
1934 |
* Reflection: Automatic reification now handels binding, an example is
|
wenzelm@25177
|
1935 |
available in src/HOL/ex/ReflectionEx.thy
|
wenzelm@20807
|
1936 |
|
wenzelm@25397
|
1937 |
* HOL-Statespace: ``State Spaces: The Locale Way'' introduces a
|
schirmer@25409
|
1938 |
command 'statespace' that is similar to 'record', but introduces an
|
wenzelm@25397
|
1939 |
abstract specification based on the locale infrastructure instead of
|
wenzelm@25397
|
1940 |
HOL types. This leads to extra flexibility in composing state spaces,
|
wenzelm@25397
|
1941 |
in particular multiple inheritance and renaming of components.
|
wenzelm@25397
|
1942 |
|
wenzelm@25397
|
1943 |
|
wenzelm@19653
|
1944 |
*** HOL-Complex ***
|
wenzelm@19653
|
1945 |
|
huffman@22971
|
1946 |
* Hyperreal: Functions root and sqrt are now defined on negative real
|
huffman@22971
|
1947 |
inputs so that root n (- x) = - root n x and sqrt (- x) = - sqrt x.
|
huffman@22971
|
1948 |
Nonnegativity side conditions have been removed from many lemmas, so
|
huffman@22971
|
1949 |
that more subgoals may now be solved by simplification; potential
|
huffman@22971
|
1950 |
INCOMPATIBILITY.
|
huffman@22971
|
1951 |
|
wenzelm@24800
|
1952 |
* Real: new type classes formalize real normed vector spaces and
|
huffman@21791
|
1953 |
algebras, using new overloaded constants scaleR :: real => 'a => 'a
|
huffman@21791
|
1954 |
and norm :: 'a => real.
|
huffman@21791
|
1955 |
|
wenzelm@24800
|
1956 |
* Real: constant of_real :: real => 'a::real_algebra_1 injects from
|
wenzelm@24800
|
1957 |
reals into other types. The overloaded constant Reals :: 'a set is now
|
wenzelm@24800
|
1958 |
defined as range of_real; potential INCOMPATIBILITY.
|
wenzelm@24800
|
1959 |
|
wenzelm@24800
|
1960 |
* Real: proper support for ML code generation, including 'quickcheck'.
|
nipkow@23013
|
1961 |
Reals are implemented as arbitrary precision rationals.
|
nipkow@23013
|
1962 |
|
wenzelm@22126
|
1963 |
* Hyperreal: Several constants that previously worked only for the
|
wenzelm@22126
|
1964 |
reals have been generalized, so they now work over arbitrary vector
|
wenzelm@22126
|
1965 |
spaces. Type annotations may need to be added in some cases; potential
|
wenzelm@22126
|
1966 |
INCOMPATIBILITY.
|
huffman@21791
|
1967 |
|
huffman@22972
|
1968 |
Infinitesimal :: ('a::real_normed_vector) star set
|
huffman@22972
|
1969 |
HFinite :: ('a::real_normed_vector) star set
|
huffman@22972
|
1970 |
HInfinite :: ('a::real_normed_vector) star set
|
huffman@21791
|
1971 |
approx :: ('a::real_normed_vector) star => 'a star => bool
|
huffman@21791
|
1972 |
monad :: ('a::real_normed_vector) star => 'a star set
|
huffman@21791
|
1973 |
galaxy :: ('a::real_normed_vector) star => 'a star set
|
huffman@22972
|
1974 |
(NS)LIMSEQ :: [nat => 'a::real_normed_vector, 'a] => bool
|
huffman@21791
|
1975 |
(NS)convergent :: (nat => 'a::real_normed_vector) => bool
|
huffman@21791
|
1976 |
(NS)Bseq :: (nat => 'a::real_normed_vector) => bool
|
huffman@21791
|
1977 |
(NS)Cauchy :: (nat => 'a::real_normed_vector) => bool
|
huffman@21791
|
1978 |
(NS)LIM :: ['a::real_normed_vector => 'b::real_normed_vector, 'a, 'b] => bool
|
huffman@21791
|
1979 |
is(NS)Cont :: ['a::real_normed_vector => 'b::real_normed_vector, 'a] => bool
|
huffman@21791
|
1980 |
deriv :: ['a::real_normed_field => 'a, 'a, 'a] => bool
|
huffman@22972
|
1981 |
sgn :: 'a::real_normed_vector => 'a
|
huffman@23116
|
1982 |
exp :: 'a::{recpower,real_normed_field,banach} => 'a
|
huffman@21791
|
1983 |
|
huffman@21791
|
1984 |
* Complex: Some complex-specific constants are now abbreviations for
|
wenzelm@22126
|
1985 |
overloaded ones: complex_of_real = of_real, cmod = norm, hcmod =
|
wenzelm@22126
|
1986 |
hnorm. Other constants have been entirely removed in favor of the
|
wenzelm@22126
|
1987 |
polymorphic versions (INCOMPATIBILITY):
|
huffman@21791
|
1988 |
|
huffman@21791
|
1989 |
approx <-- capprox
|
huffman@21791
|
1990 |
HFinite <-- CFinite
|
huffman@21791
|
1991 |
HInfinite <-- CInfinite
|
huffman@21791
|
1992 |
Infinitesimal <-- CInfinitesimal
|
huffman@21791
|
1993 |
monad <-- cmonad
|
huffman@21791
|
1994 |
galaxy <-- cgalaxy
|
huffman@21791
|
1995 |
(NS)LIM <-- (NS)CLIM, (NS)CRLIM
|
huffman@21791
|
1996 |
is(NS)Cont <-- is(NS)Contc, is(NS)contCR
|
huffman@21791
|
1997 |
(ns)deriv <-- (ns)cderiv
|
huffman@21791
|
1998 |
|
wenzelm@19653
|
1999 |
|
wenzelm@24801
|
2000 |
*** HOL-Algebra ***
|
wenzelm@24801
|
2001 |
|
wenzelm@24801
|
2002 |
* Formalisation of ideals and the quotient construction over rings.
|
wenzelm@24801
|
2003 |
|
wenzelm@24801
|
2004 |
* Order and lattice theory no longer based on records.
|
wenzelm@24801
|
2005 |
INCOMPATIBILITY.
|
wenzelm@24801
|
2006 |
|
wenzelm@24801
|
2007 |
* Renamed lemmas least_carrier -> least_closed and greatest_carrier ->
|
wenzelm@24801
|
2008 |
greatest_closed. INCOMPATIBILITY.
|
wenzelm@24801
|
2009 |
|
wenzelm@24801
|
2010 |
* Method algebra is now set up via an attribute. For examples see
|
wenzelm@24801
|
2011 |
Ring.thy. INCOMPATIBILITY: the method is now weaker on combinations
|
wenzelm@24801
|
2012 |
of algebraic structures.
|
wenzelm@24801
|
2013 |
|
wenzelm@24801
|
2014 |
* Renamed theory CRing to Ring.
|
wenzelm@24801
|
2015 |
|
wenzelm@24801
|
2016 |
|
wenzelm@24801
|
2017 |
*** HOL-Nominal ***
|
wenzelm@24801
|
2018 |
|
wenzelm@25148
|
2019 |
* Substantial, yet incomplete support for nominal datatypes (binding
|
wenzelm@25177
|
2020 |
structures) based on HOL-Nominal logic. See src/HOL/Nominal and
|
wenzelm@25177
|
2021 |
src/HOL/Nominal/Examples. Prospective users should consult
|
wenzelm@25148
|
2022 |
http://isabelle.in.tum.de/nominal/
|
wenzelm@25148
|
2023 |
|
wenzelm@24801
|
2024 |
|
wenzelm@17878
|
2025 |
*** ML ***
|
wenzelm@17878
|
2026 |
|
wenzelm@24643
|
2027 |
* ML basics: just one true type int, which coincides with IntInf.int
|
wenzelm@24643
|
2028 |
(even on SML/NJ).
|
wenzelm@24643
|
2029 |
|
wenzelm@22138
|
2030 |
* ML within Isar: antiquotations allow to embed statically-checked
|
wenzelm@22138
|
2031 |
formal entities in the source, referring to the context available at
|
wenzelm@22138
|
2032 |
compile-time. For example:
|
wenzelm@22138
|
2033 |
|
wenzelm@25142
|
2034 |
ML {* @{sort "{zero,one}"} *}
|
wenzelm@22138
|
2035 |
ML {* @{typ "'a => 'b"} *}
|
wenzelm@22138
|
2036 |
ML {* @{term "%x. x"} *}
|
wenzelm@22138
|
2037 |
ML {* @{prop "x == y"} *}
|
wenzelm@22138
|
2038 |
ML {* @{ctyp "'a => 'b"} *}
|
wenzelm@22138
|
2039 |
ML {* @{cterm "%x. x"} *}
|
wenzelm@22138
|
2040 |
ML {* @{cprop "x == y"} *}
|
wenzelm@22138
|
2041 |
ML {* @{thm asm_rl} *}
|
wenzelm@22138
|
2042 |
ML {* @{thms asm_rl} *}
|
wenzelm@24692
|
2043 |
ML {* @{type_name c} *}
|
wenzelm@25142
|
2044 |
ML {* @{type_syntax c} *}
|
wenzelm@22376
|
2045 |
ML {* @{const_name c} *}
|
wenzelm@22376
|
2046 |
ML {* @{const_syntax c} *}
|
wenzelm@22138
|
2047 |
ML {* @{context} *}
|
wenzelm@22138
|
2048 |
ML {* @{theory} *}
|
wenzelm@22138
|
2049 |
ML {* @{theory Pure} *}
|
wenzelm@24692
|
2050 |
ML {* @{theory_ref} *}
|
wenzelm@24692
|
2051 |
ML {* @{theory_ref Pure} *}
|
wenzelm@22138
|
2052 |
ML {* @{simpset} *}
|
wenzelm@22138
|
2053 |
ML {* @{claset} *}
|
wenzelm@22138
|
2054 |
ML {* @{clasimpset} *}
|
wenzelm@22138
|
2055 |
|
wenzelm@22151
|
2056 |
The same works for sources being ``used'' within an Isar context.
|
wenzelm@22151
|
2057 |
|
wenzelm@22152
|
2058 |
* ML in Isar: improved error reporting; extra verbosity with
|
wenzelm@24706
|
2059 |
ML_Context.trace enabled.
|
wenzelm@22152
|
2060 |
|
wenzelm@19032
|
2061 |
* Pure/General/table.ML: the join operations now works via exceptions
|
wenzelm@24706
|
2062 |
DUP/SAME instead of type option. This is simpler in simple cases, and
|
wenzelm@19081
|
2063 |
admits slightly more efficient complex applications.
|
wenzelm@18446
|
2064 |
|
wenzelm@24800
|
2065 |
* Pure: 'advanced' translation functions (parse_translation etc.) now
|
wenzelm@24800
|
2066 |
use Context.generic instead of just theory.
|
wenzelm@24800
|
2067 |
|
wenzelm@18642
|
2068 |
* Pure: datatype Context.generic joins theory/Proof.context and
|
wenzelm@18644
|
2069 |
provides some facilities for code that works in either kind of
|
wenzelm@18642
|
2070 |
context, notably GenericDataFun for uniform theory and proof data.
|
wenzelm@18642
|
2071 |
|
wenzelm@18737
|
2072 |
* Pure: simplified internal attribute type, which is now always
|
wenzelm@24706
|
2073 |
Context.generic * thm -> Context.generic * thm. Global (theory) vs.
|
wenzelm@24706
|
2074 |
local (Proof.context) attributes have been discontinued, while
|
wenzelm@24706
|
2075 |
minimizing code duplication. Thm.rule_attribute and
|
wenzelm@24706
|
2076 |
Thm.declaration_attribute build canonical attributes; see also structure
|
wenzelm@24706
|
2077 |
Context for further operations on Context.generic, notably
|
wenzelm@24706
|
2078 |
GenericDataFun. INCOMPATIBILITY, need to adapt attribute type
|
wenzelm@19006
|
2079 |
declarations and definitions.
|
wenzelm@19006
|
2080 |
|
wenzelm@24800
|
2081 |
* Context data interfaces (Theory/Proof/GenericDataFun): removed
|
wenzelm@24800
|
2082 |
name/print, uninitialized data defaults to ad-hoc copy of empty value,
|
wenzelm@24800
|
2083 |
init only required for impure data. INCOMPATIBILITY: empty really need
|
wenzelm@24800
|
2084 |
to be empty (no dependencies on theory content!)
|
wenzelm@24800
|
2085 |
|
wenzelm@19508
|
2086 |
* Pure/kernel: consts certification ignores sort constraints given in
|
wenzelm@24800
|
2087 |
signature declarations. (This information is not relevant to the
|
wenzelm@24800
|
2088 |
logic, but only for type inference.) SIGNIFICANT INTERNAL CHANGE,
|
wenzelm@24800
|
2089 |
potential INCOMPATIBILITY.
|
wenzelm@19508
|
2090 |
|
wenzelm@19508
|
2091 |
* Pure: axiomatic type classes are now purely definitional, with
|
wenzelm@19508
|
2092 |
explicit proofs of class axioms and super class relations performed
|
wenzelm@24706
|
2093 |
internally. See Pure/axclass.ML for the main internal interfaces --
|
wenzelm@19508
|
2094 |
notably AxClass.define_class supercedes AxClass.add_axclass, and
|
wenzelm@24706
|
2095 |
AxClass.axiomatize_class/classrel/arity supersede
|
wenzelm@19508
|
2096 |
Sign.add_classes/classrel/arities.
|
wenzelm@19508
|
2097 |
|
wenzelm@19006
|
2098 |
* Pure/Isar: Args/Attrib parsers operate on Context.generic --
|
wenzelm@19006
|
2099 |
global/local versions on theory vs. Proof.context have been
|
wenzelm@19006
|
2100 |
discontinued; Attrib.syntax and Method.syntax have been adapted
|
wenzelm@19006
|
2101 |
accordingly. INCOMPATIBILITY, need to adapt parser expressions for
|
wenzelm@19006
|
2102 |
attributes, methods, etc.
|
wenzelm@18642
|
2103 |
|
wenzelm@18446
|
2104 |
* Pure: several functions of signature "... -> theory -> theory * ..."
|
wenzelm@18446
|
2105 |
have been reoriented to "... -> theory -> ... * theory" in order to
|
wenzelm@18446
|
2106 |
allow natural usage in combination with the ||>, ||>>, |-> and
|
wenzelm@18446
|
2107 |
fold_map combinators.
|
haftmann@18051
|
2108 |
|
wenzelm@21647
|
2109 |
* Pure: official theorem names (closed derivations) and additional
|
wenzelm@21647
|
2110 |
comments (tags) are now strictly separate. Name hints -- which are
|
wenzelm@21647
|
2111 |
maintained as tags -- may be attached any time without affecting the
|
wenzelm@21647
|
2112 |
derivation.
|
wenzelm@21647
|
2113 |
|
wenzelm@18020
|
2114 |
* Pure: primitive rule lift_rule now takes goal cterm instead of an
|
wenzelm@18145
|
2115 |
actual goal state (thm). Use Thm.lift_rule (Thm.cprem_of st i) to
|
wenzelm@18020
|
2116 |
achieve the old behaviour.
|
wenzelm@18020
|
2117 |
|
wenzelm@18020
|
2118 |
* Pure: the "Goal" constant is now called "prop", supporting a
|
wenzelm@18020
|
2119 |
slightly more general idea of ``protecting'' meta-level rule
|
wenzelm@18020
|
2120 |
statements.
|
wenzelm@18020
|
2121 |
|
wenzelm@20040
|
2122 |
* Pure: Logic.(un)varify only works in a global context, which is now
|
wenzelm@20040
|
2123 |
enforced instead of silently assumed. INCOMPATIBILITY, may use
|
wenzelm@20040
|
2124 |
Logic.legacy_(un)varify as temporary workaround.
|
wenzelm@20040
|
2125 |
|
wenzelm@20090
|
2126 |
* Pure: structure Name provides scalable operations for generating
|
wenzelm@20090
|
2127 |
internal variable names, notably Name.variants etc. This replaces
|
wenzelm@20090
|
2128 |
some popular functions from term.ML:
|
wenzelm@20090
|
2129 |
|
wenzelm@20090
|
2130 |
Term.variant -> Name.variant
|
wenzelm@24800
|
2131 |
Term.variantlist -> Name.variant_list
|
wenzelm@20090
|
2132 |
Term.invent_names -> Name.invent_list
|
wenzelm@20090
|
2133 |
|
wenzelm@20090
|
2134 |
Note that low-level renaming rarely occurs in new code -- operations
|
wenzelm@20090
|
2135 |
from structure Variable are used instead (see below).
|
wenzelm@20090
|
2136 |
|
wenzelm@20040
|
2137 |
* Pure: structure Variable provides fundamental operations for proper
|
wenzelm@20040
|
2138 |
treatment of fixed/schematic variables in a context. For example,
|
wenzelm@20040
|
2139 |
Variable.import introduces fixes for schematics of given facts and
|
wenzelm@20040
|
2140 |
Variable.export reverses the effect (up to renaming) -- this replaces
|
wenzelm@20040
|
2141 |
various freeze_thaw operations.
|
wenzelm@20040
|
2142 |
|
wenzelm@18567
|
2143 |
* Pure: structure Goal provides simple interfaces for
|
wenzelm@17981
|
2144 |
init/conclude/finish and tactical prove operations (replacing former
|
wenzelm@20040
|
2145 |
Tactic.prove). Goal.prove is the canonical way to prove results
|
wenzelm@20040
|
2146 |
within a given context; Goal.prove_global is a degraded version for
|
wenzelm@20040
|
2147 |
theory level goals, including a global Drule.standard. Note that
|
wenzelm@20040
|
2148 |
OldGoals.prove_goalw_cterm has long been obsolete, since it is
|
wenzelm@20040
|
2149 |
ill-behaved in a local proof context (e.g. with local fixes/assumes or
|
wenzelm@20040
|
2150 |
in a locale context).
|
wenzelm@17981
|
2151 |
|
wenzelm@24706
|
2152 |
* Pure/Syntax: generic interfaces for parsing (Syntax.parse_term etc.)
|
wenzelm@24706
|
2153 |
and type checking (Syntax.check_term etc.), with common combinations
|
wenzelm@24706
|
2154 |
(Syntax.read_term etc.). These supersede former Sign.read_term etc.
|
wenzelm@24706
|
2155 |
which are considered legacy and await removal.
|
wenzelm@24706
|
2156 |
|
wenzelm@24920
|
2157 |
* Pure/Syntax: generic interfaces for type unchecking
|
wenzelm@24920
|
2158 |
(Syntax.uncheck_terms etc.) and unparsing (Syntax.unparse_term etc.),
|
wenzelm@24920
|
2159 |
with common combinations (Syntax.pretty_term, Syntax.string_of_term
|
wenzelm@24920
|
2160 |
etc.). Former Sign.pretty_term, Sign.string_of_term etc. are still
|
wenzelm@24924
|
2161 |
available for convenience, but refer to the very same operations using
|
wenzelm@24924
|
2162 |
a mere theory instead of a full context.
|
wenzelm@24920
|
2163 |
|
wenzelm@18815
|
2164 |
* Isar: simplified treatment of user-level errors, using exception
|
wenzelm@18687
|
2165 |
ERROR of string uniformly. Function error now merely raises ERROR,
|
wenzelm@18686
|
2166 |
without any side effect on output channels. The Isar toplevel takes
|
wenzelm@18686
|
2167 |
care of proper display of ERROR exceptions. ML code may use plain
|
wenzelm@18686
|
2168 |
handle/can/try; cat_error may be used to concatenate errors like this:
|
wenzelm@18686
|
2169 |
|
wenzelm@18686
|
2170 |
... handle ERROR msg => cat_error msg "..."
|
wenzelm@18686
|
2171 |
|
wenzelm@18686
|
2172 |
Toplevel ML code (run directly or through the Isar toplevel) may be
|
wenzelm@18687
|
2173 |
embedded into the Isar toplevel with exception display/debug like
|
wenzelm@18687
|
2174 |
this:
|
wenzelm@18686
|
2175 |
|
wenzelm@18686
|
2176 |
Isar.toplevel (fn () => ...)
|
wenzelm@18686
|
2177 |
|
wenzelm@18686
|
2178 |
INCOMPATIBILITY, removed special transform_error facilities, removed
|
wenzelm@18686
|
2179 |
obsolete variants of user-level exceptions (ERROR_MESSAGE,
|
wenzelm@18686
|
2180 |
Context.PROOF, ProofContext.CONTEXT, Proof.STATE, ProofHistory.FAIL)
|
wenzelm@18686
|
2181 |
-- use plain ERROR instead.
|
wenzelm@18686
|
2182 |
|
wenzelm@18815
|
2183 |
* Isar: theory setup now has type (theory -> theory), instead of a
|
wenzelm@18722
|
2184 |
list. INCOMPATIBILITY, may use #> to compose setup functions.
|
wenzelm@18722
|
2185 |
|
wenzelm@24706
|
2186 |
* Isar: ML toplevel pretty printer for type Proof.context, subject to
|
wenzelm@24706
|
2187 |
ProofContext.debug/verbose flags.
|
wenzelm@18815
|
2188 |
|
wenzelm@18815
|
2189 |
* Isar: Toplevel.theory_to_proof admits transactions that modify the
|
wenzelm@18815
|
2190 |
theory before entering a proof state. Transactions now always see a
|
wenzelm@18815
|
2191 |
quasi-functional intermediate checkpoint, both in interactive and
|
wenzelm@18590
|
2192 |
batch mode.
|
wenzelm@18567
|
2193 |
|
wenzelm@24867
|
2194 |
* Isar: simplified interfaces for outer syntax. Renamed
|
wenzelm@24867
|
2195 |
OuterSyntax.add_keywords to OuterSyntax.keywords. Removed
|
wenzelm@24867
|
2196 |
OuterSyntax.add_parsers -- this functionality is now included in
|
wenzelm@24867
|
2197 |
OuterSyntax.command etc. INCOMPATIBILITY.
|
wenzelm@24867
|
2198 |
|
wenzelm@17878
|
2199 |
* Simplifier: the simpset of a running simplification process now
|
wenzelm@17878
|
2200 |
contains a proof context (cf. Simplifier.the_context), which is the
|
wenzelm@17878
|
2201 |
very context that the initial simpset has been retrieved from (by
|
wenzelm@17890
|
2202 |
simpset_of/local_simpset_of). Consequently, all plug-in components
|
wenzelm@17878
|
2203 |
(solver, looper etc.) may depend on arbitrary proof data.
|
wenzelm@17878
|
2204 |
|
wenzelm@17878
|
2205 |
* Simplifier.inherit_context inherits the proof context (plus the
|
wenzelm@17878
|
2206 |
local bounds) of the current simplification process; any simproc
|
wenzelm@17878
|
2207 |
etc. that calls the Simplifier recursively should do this! Removed
|
wenzelm@17878
|
2208 |
former Simplifier.inherit_bounds, which is already included here --
|
wenzelm@17890
|
2209 |
INCOMPATIBILITY. Tools based on low-level rewriting may even have to
|
wenzelm@17890
|
2210 |
specify an explicit context using Simplifier.context/theory_context.
|
wenzelm@17878
|
2211 |
|
wenzelm@17878
|
2212 |
* Simplifier/Classical Reasoner: more abstract interfaces
|
wenzelm@17878
|
2213 |
change_simpset/claset for modifying the simpset/claset reference of a
|
wenzelm@17878
|
2214 |
theory; raw versions simpset/claset_ref etc. have been discontinued --
|
wenzelm@17878
|
2215 |
INCOMPATIBILITY.
|
wenzelm@17878
|
2216 |
|
wenzelm@18540
|
2217 |
* Provers: more generic wrt. syntax of object-logics, avoid hardwired
|
wenzelm@18540
|
2218 |
"Trueprop" etc.
|
wenzelm@18540
|
2219 |
|
wenzelm@17878
|
2220 |
|
wenzelm@20988
|
2221 |
*** System ***
|
wenzelm@20988
|
2222 |
|
wenzelm@25433
|
2223 |
* settings: the default heap location within ISABELLE_HOME_USER now
|
wenzelm@25433
|
2224 |
includes ISABELLE_IDENTIFIER. This simplifies use of multiple
|
wenzelm@25433
|
2225 |
Isabelle installations.
|
wenzelm@21471
|
2226 |
|
wenzelm@20988
|
2227 |
* isabelle-process: option -S (secure mode) disables some critical
|
wenzelm@20988
|
2228 |
operations, notably runtime compilation and evaluation of ML source
|
wenzelm@20988
|
2229 |
code.
|
wenzelm@20988
|
2230 |
|
wenzelm@24891
|
2231 |
* Basic Isabelle mode for jEdit, see Isabelle/lib/jedit/.
|
wenzelm@24891
|
2232 |
|
wenzelm@24801
|
2233 |
* Support for parallel execution, using native multicore support of
|
wenzelm@24800
|
2234 |
Poly/ML 5.1. The theory loader exploits parallelism when processing
|
wenzelm@24800
|
2235 |
independent theories, according to the given theory header
|
wenzelm@24800
|
2236 |
specifications. The maximum number of worker threads is specified via
|
wenzelm@24800
|
2237 |
usedir option -M or the "max-threads" setting in Proof General. A
|
wenzelm@24800
|
2238 |
speedup factor of 1.5--3.5 can be expected on a 4-core machine, and up
|
wenzelm@24800
|
2239 |
to 6 on a 8-core machine. User-code needs to observe certain
|
wenzelm@24800
|
2240 |
guidelines for thread-safe programming, see appendix A in the Isar
|
wenzelm@24800
|
2241 |
Implementation manual.
|
wenzelm@24210
|
2242 |
|
wenzelm@17754
|
2243 |
|
wenzelm@25448
|
2244 |
|
wenzelm@17720
|
2245 |
New in Isabelle2005 (October 2005)
|
wenzelm@17720
|
2246 |
----------------------------------
|
wenzelm@14655
|
2247 |
|
wenzelm@14655
|
2248 |
*** General ***
|
wenzelm@14655
|
2249 |
|
nipkow@15130
|
2250 |
* Theory headers: the new header syntax for Isar theories is
|
nipkow@15130
|
2251 |
|
nipkow@15130
|
2252 |
theory <name>
|
wenzelm@16234
|
2253 |
imports <theory1> ... <theoryN>
|
wenzelm@16234
|
2254 |
uses <file1> ... <fileM>
|
nipkow@15130
|
2255 |
begin
|
nipkow@15130
|
2256 |
|
wenzelm@16234
|
2257 |
where the 'uses' part is optional. The previous syntax
|
wenzelm@16234
|
2258 |
|
wenzelm@16234
|
2259 |
theory <name> = <theory1> + ... + <theoryN>:
|
wenzelm@16234
|
2260 |
|
wenzelm@16717
|
2261 |
will disappear in the next release. Use isatool fixheaders to convert
|
wenzelm@16717
|
2262 |
existing theory files. Note that there is no change in ancient
|
wenzelm@17371
|
2263 |
non-Isar theories now, but these will disappear soon.
|
nipkow@15130
|
2264 |
|
berghofe@15475
|
2265 |
* Theory loader: parent theories can now also be referred to via
|
wenzelm@16234
|
2266 |
relative and absolute paths.
|
wenzelm@16234
|
2267 |
|
wenzelm@17408
|
2268 |
* Command 'find_theorems' searches for a list of criteria instead of a
|
wenzelm@17408
|
2269 |
list of constants. Known criteria are: intro, elim, dest, name:string,
|
wenzelm@17408
|
2270 |
simp:term, and any term. Criteria can be preceded by '-' to select
|
wenzelm@17408
|
2271 |
theorems that do not match. Intro, elim, dest select theorems that
|
wenzelm@17408
|
2272 |
match the current goal, name:s selects theorems whose fully qualified
|
wenzelm@17408
|
2273 |
name contain s, and simp:term selects all simplification rules whose
|
wenzelm@17408
|
2274 |
lhs match term. Any other term is interpreted as pattern and selects
|
wenzelm@17408
|
2275 |
all theorems matching the pattern. Available in ProofGeneral under
|
wenzelm@17408
|
2276 |
'ProofGeneral -> Find Theorems' or C-c C-f. Example:
|
wenzelm@16234
|
2277 |
|
wenzelm@17275
|
2278 |
C-c C-f (100) "(_::nat) + _ + _" intro -name: "HOL."
|
wenzelm@16234
|
2279 |
|
wenzelm@16234
|
2280 |
prints the last 100 theorems matching the pattern "(_::nat) + _ + _",
|
wenzelm@16234
|
2281 |
matching the current goal as introduction rule and not having "HOL."
|
wenzelm@16234
|
2282 |
in their name (i.e. not being defined in theory HOL).
|
wenzelm@16013
|
2283 |
|
wenzelm@17408
|
2284 |
* Command 'thms_containing' has been discontinued in favour of
|
wenzelm@17408
|
2285 |
'find_theorems'; INCOMPATIBILITY.
|
wenzelm@17408
|
2286 |
|
wenzelm@17385
|
2287 |
* Communication with Proof General is now 8bit clean, which means that
|
wenzelm@17385
|
2288 |
Unicode text in UTF-8 encoding may be used within theory texts (both
|
wenzelm@17408
|
2289 |
formal and informal parts). Cf. option -U of the Isabelle Proof
|
wenzelm@17538
|
2290 |
General interface. Here are some simple examples (cf. src/HOL/ex):
|
wenzelm@17538
|
2291 |
|
wenzelm@17538
|
2292 |
http://isabelle.in.tum.de/library/HOL/ex/Hebrew.html
|
wenzelm@17538
|
2293 |
http://isabelle.in.tum.de/library/HOL/ex/Chinese.html
|
wenzelm@17385
|
2294 |
|
wenzelm@17425
|
2295 |
* Improved efficiency of the Simplifier and, to a lesser degree, the
|
wenzelm@17425
|
2296 |
Classical Reasoner. Typical big applications run around 2 times
|
wenzelm@17425
|
2297 |
faster.
|
wenzelm@17425
|
2298 |
|
wenzelm@15703
|
2299 |
|
wenzelm@15703
|
2300 |
*** Document preparation ***
|
wenzelm@15703
|
2301 |
|
wenzelm@16234
|
2302 |
* Commands 'display_drafts' and 'print_drafts' perform simple output
|
wenzelm@16234
|
2303 |
of raw sources. Only those symbols that do not require additional
|
wenzelm@16234
|
2304 |
LaTeX packages (depending on comments in isabellesym.sty) are
|
wenzelm@16234
|
2305 |
displayed properly, everything else is left verbatim. isatool display
|
wenzelm@16234
|
2306 |
and isatool print are used as front ends (these are subject to the
|
wenzelm@16234
|
2307 |
DVI/PDF_VIEWER and PRINT_COMMAND settings, respectively).
|
wenzelm@16234
|
2308 |
|
wenzelm@17047
|
2309 |
* Command tags control specific markup of certain regions of text,
|
wenzelm@17047
|
2310 |
notably folding and hiding. Predefined tags include "theory" (for
|
wenzelm@17047
|
2311 |
theory begin and end), "proof" for proof commands, and "ML" for
|
wenzelm@17047
|
2312 |
commands involving ML code; the additional tags "visible" and
|
wenzelm@17047
|
2313 |
"invisible" are unused by default. Users may give explicit tag
|
wenzelm@17047
|
2314 |
specifications in the text, e.g. ''by %invisible (auto)''. The
|
wenzelm@17047
|
2315 |
interpretation of tags is determined by the LaTeX job during document
|
wenzelm@17047
|
2316 |
preparation: see option -V of isatool usedir, or options -n and -t of
|
wenzelm@17047
|
2317 |
isatool document, or even the LaTeX macros \isakeeptag, \isafoldtag,
|
wenzelm@17047
|
2318 |
\isadroptag.
|
wenzelm@17047
|
2319 |
|
wenzelm@17047
|
2320 |
Several document versions may be produced at the same time via isatool
|
wenzelm@17047
|
2321 |
usedir (the generated index.html will link all of them). Typical
|
wenzelm@17047
|
2322 |
specifications include ''-V document=theory,proof,ML'' to present
|
wenzelm@17047
|
2323 |
theory/proof/ML parts faithfully, ''-V outline=/proof,/ML'' to fold
|
wenzelm@17047
|
2324 |
proof and ML commands, and ''-V mutilated=-theory,-proof,-ML'' to omit
|
wenzelm@17047
|
2325 |
these parts without any formal replacement text. The Isabelle site
|
wenzelm@17047
|
2326 |
default settings produce ''document'' and ''outline'' versions as
|
wenzelm@17047
|
2327 |
specified above.
|
wenzelm@16234
|
2328 |
|
haftmann@17402
|
2329 |
* Several new antiquotations:
|
wenzelm@15979
|
2330 |
|
wenzelm@15979
|
2331 |
@{term_type term} prints a term with its type annotated;
|
wenzelm@15979
|
2332 |
|
wenzelm@15979
|
2333 |
@{typeof term} prints the type of a term;
|
wenzelm@15979
|
2334 |
|
wenzelm@16234
|
2335 |
@{const const} is the same as @{term const}, but checks that the
|
wenzelm@16234
|
2336 |
argument is a known logical constant;
|
wenzelm@15979
|
2337 |
|
wenzelm@15979
|
2338 |
@{term_style style term} and @{thm_style style thm} print a term or
|
wenzelm@16234
|
2339 |
theorem applying a "style" to it
|
wenzelm@16234
|
2340 |
|
wenzelm@17117
|
2341 |
@{ML text}
|
wenzelm@17117
|
2342 |
|
wenzelm@16234
|
2343 |
Predefined styles are 'lhs' and 'rhs' printing the lhs/rhs of
|
wenzelm@16234
|
2344 |
definitions, equations, inequations etc., 'concl' printing only the
|
schirmer@17393
|
2345 |
conclusion of a meta-logical statement theorem, and 'prem1' .. 'prem19'
|
wenzelm@16234
|
2346 |
to print the specified premise. TermStyle.add_style provides an ML
|
wenzelm@16234
|
2347 |
interface for introducing further styles. See also the "LaTeX Sugar"
|
wenzelm@17117
|
2348 |
document practical applications. The ML antiquotation prints
|
wenzelm@17117
|
2349 |
type-checked ML expressions verbatim.
|
wenzelm@16234
|
2350 |
|
wenzelm@17259
|
2351 |
* Markup commands 'chapter', 'section', 'subsection', 'subsubsection',
|
wenzelm@17259
|
2352 |
and 'text' support optional locale specification '(in loc)', which
|
wenzelm@17269
|
2353 |
specifies the default context for interpreting antiquotations. For
|
wenzelm@17269
|
2354 |
example: 'text (in lattice) {* @{thm inf_assoc}*}'.
|
wenzelm@17259
|
2355 |
|
wenzelm@17259
|
2356 |
* Option 'locale=NAME' of antiquotations specifies an alternative
|
wenzelm@17259
|
2357 |
context interpreting the subsequent argument. For example: @{thm
|
wenzelm@17269
|
2358 |
[locale=lattice] inf_assoc}.
|
wenzelm@17259
|
2359 |
|
wenzelm@17097
|
2360 |
* Proper output of proof terms (@{prf ...} and @{full_prf ...}) within
|
wenzelm@17097
|
2361 |
a proof context.
|
wenzelm@17097
|
2362 |
|
wenzelm@17097
|
2363 |
* Proper output of antiquotations for theory commands involving a
|
wenzelm@17097
|
2364 |
proof context (such as 'locale' or 'theorem (in loc) ...').
|
wenzelm@17097
|
2365 |
|
wenzelm@17193
|
2366 |
* Delimiters of outer tokens (string etc.) now produce separate LaTeX
|
wenzelm@17193
|
2367 |
macros (\isachardoublequoteopen, isachardoublequoteclose etc.).
|
wenzelm@17193
|
2368 |
|
wenzelm@17193
|
2369 |
* isatool usedir: new option -C (default true) controls whether option
|
wenzelm@17193
|
2370 |
-D should include a copy of the original document directory; -C false
|
wenzelm@17193
|
2371 |
prevents unwanted effects such as copying of administrative CVS data.
|
wenzelm@17193
|
2372 |
|
wenzelm@16234
|
2373 |
|
wenzelm@16234
|
2374 |
*** Pure ***
|
wenzelm@16234
|
2375 |
|
wenzelm@16234
|
2376 |
* Considerably improved version of 'constdefs' command. Now performs
|
wenzelm@16234
|
2377 |
automatic type-inference of declared constants; additional support for
|
wenzelm@16234
|
2378 |
local structure declarations (cf. locales and HOL records), see also
|
wenzelm@16234
|
2379 |
isar-ref manual. Potential INCOMPATIBILITY: need to observe strictly
|
wenzelm@16234
|
2380 |
sequential dependencies of definitions within a single 'constdefs'
|
wenzelm@16234
|
2381 |
section; moreover, the declared name needs to be an identifier. If
|
wenzelm@16234
|
2382 |
all fails, consider to fall back on 'consts' and 'defs' separately.
|
wenzelm@16234
|
2383 |
|
wenzelm@16234
|
2384 |
* Improved indexed syntax and implicit structures. First of all,
|
wenzelm@16234
|
2385 |
indexed syntax provides a notational device for subscripted
|
wenzelm@16234
|
2386 |
application, using the new syntax \<^bsub>term\<^esub> for arbitrary
|
wenzelm@16234
|
2387 |
expressions. Secondly, in a local context with structure
|
wenzelm@16234
|
2388 |
declarations, number indexes \<^sub>n or the empty index (default
|
wenzelm@16234
|
2389 |
number 1) refer to a certain fixed variable implicitly; option
|
wenzelm@16234
|
2390 |
show_structs controls printing of implicit structures. Typical
|
wenzelm@16234
|
2391 |
applications of these concepts involve record types and locales.
|
wenzelm@16234
|
2392 |
|
wenzelm@16234
|
2393 |
* New command 'no_syntax' removes grammar declarations (and
|
wenzelm@16234
|
2394 |
translations) resulting from the given syntax specification, which is
|
wenzelm@16234
|
2395 |
interpreted in the same manner as for the 'syntax' command.
|
wenzelm@16234
|
2396 |
|
wenzelm@16234
|
2397 |
* 'Advanced' translation functions (parse_translation etc.) may depend
|
wenzelm@16234
|
2398 |
on the signature of the theory context being presently used for
|
wenzelm@16234
|
2399 |
parsing/printing, see also isar-ref manual.
|
wenzelm@16234
|
2400 |
|
wenzelm@16856
|
2401 |
* Improved 'oracle' command provides a type-safe interface to turn an
|
wenzelm@16856
|
2402 |
ML expression of type theory -> T -> term into a primitive rule of
|
wenzelm@16856
|
2403 |
type theory -> T -> thm (i.e. the functionality of Thm.invoke_oracle
|
wenzelm@16856
|
2404 |
is already included here); see also FOL/ex/IffExample.thy;
|
wenzelm@16856
|
2405 |
INCOMPATIBILITY.
|
wenzelm@16856
|
2406 |
|
wenzelm@17275
|
2407 |
* axclass: name space prefix for class "c" is now "c_class" (was "c"
|
wenzelm@17275
|
2408 |
before); "cI" is no longer bound, use "c.intro" instead.
|
wenzelm@17275
|
2409 |
INCOMPATIBILITY. This change avoids clashes of fact bindings for
|
wenzelm@17275
|
2410 |
axclasses vs. locales.
|
wenzelm@17275
|
2411 |
|
wenzelm@16234
|
2412 |
* Improved internal renaming of symbolic identifiers -- attach primes
|
wenzelm@16234
|
2413 |
instead of base 26 numbers.
|
wenzelm@16234
|
2414 |
|
wenzelm@16234
|
2415 |
* New flag show_question_marks controls printing of leading question
|
wenzelm@16234
|
2416 |
marks in schematic variable names.
|
wenzelm@16234
|
2417 |
|
wenzelm@16234
|
2418 |
* In schematic variable names, *any* symbol following \<^isub> or
|
wenzelm@16234
|
2419 |
\<^isup> is now treated as part of the base name. For example, the
|
wenzelm@16234
|
2420 |
following works without printing of awkward ".0" indexes:
|
wenzelm@16234
|
2421 |
|
wenzelm@16234
|
2422 |
lemma "x\<^isub>1 = x\<^isub>2 ==> x\<^isub>2 = x\<^isub>1"
|
wenzelm@16234
|
2423 |
by simp
|
wenzelm@16234
|
2424 |
|
wenzelm@16234
|
2425 |
* Inner syntax includes (*(*nested*) comments*).
|
wenzelm@16234
|
2426 |
|
wenzelm@17548
|
2427 |
* Pretty printer now supports unbreakable blocks, specified in mixfix
|
wenzelm@16234
|
2428 |
annotations as "(00...)".
|
wenzelm@16234
|
2429 |
|
wenzelm@16234
|
2430 |
* Clear separation of logical types and nonterminals, where the latter
|
wenzelm@16234
|
2431 |
may only occur in 'syntax' specifications or type abbreviations.
|
wenzelm@16234
|
2432 |
Before that distinction was only partially implemented via type class
|
wenzelm@16234
|
2433 |
"logic" vs. "{}". Potential INCOMPATIBILITY in rare cases of improper
|
wenzelm@16234
|
2434 |
use of 'types'/'consts' instead of 'nonterminals'/'syntax'. Some very
|
wenzelm@16234
|
2435 |
exotic syntax specifications may require further adaption
|
wenzelm@17691
|
2436 |
(e.g. Cube/Cube.thy).
|
wenzelm@16234
|
2437 |
|
wenzelm@16234
|
2438 |
* Removed obsolete type class "logic", use the top sort {} instead.
|
wenzelm@16234
|
2439 |
Note that non-logical types should be declared as 'nonterminals'
|
wenzelm@16234
|
2440 |
rather than 'types'. INCOMPATIBILITY for new object-logic
|
wenzelm@16234
|
2441 |
specifications.
|
wenzelm@16234
|
2442 |
|
ballarin@17095
|
2443 |
* Attributes 'induct' and 'cases': type or set names may now be
|
ballarin@17095
|
2444 |
locally fixed variables as well.
|
ballarin@17095
|
2445 |
|
wenzelm@16234
|
2446 |
* Simplifier: can now control the depth to which conditional rewriting
|
wenzelm@16234
|
2447 |
is traced via the PG menu Isabelle -> Settings -> Trace Simp Depth
|
wenzelm@16234
|
2448 |
Limit.
|
wenzelm@16234
|
2449 |
|
wenzelm@16234
|
2450 |
* Simplifier: simplification procedures may now take the current
|
wenzelm@16234
|
2451 |
simpset into account (cf. Simplifier.simproc(_i) / mk_simproc
|
wenzelm@16234
|
2452 |
interface), which is very useful for calling the Simplifier
|
wenzelm@16234
|
2453 |
recursively. Minor INCOMPATIBILITY: the 'prems' argument of simprocs
|
wenzelm@16234
|
2454 |
is gone -- use prems_of_ss on the simpset instead. Moreover, the
|
wenzelm@16234
|
2455 |
low-level mk_simproc no longer applies Logic.varify internally, to
|
wenzelm@16234
|
2456 |
allow for use in a context of fixed variables.
|
wenzelm@16234
|
2457 |
|
wenzelm@16234
|
2458 |
* thin_tac now works even if the assumption being deleted contains !!
|
wenzelm@16234
|
2459 |
or ==>. More generally, erule now works even if the major premise of
|
wenzelm@16234
|
2460 |
the elimination rule contains !! or ==>.
|
wenzelm@16234
|
2461 |
|
wenzelm@17597
|
2462 |
* Method 'rules' has been renamed to 'iprover'. INCOMPATIBILITY.
|
nipkow@17590
|
2463 |
|
wenzelm@16234
|
2464 |
* Reorganized bootstrapping of the Pure theories; CPure is now derived
|
wenzelm@16234
|
2465 |
from Pure, which contains all common declarations already. Both
|
wenzelm@16234
|
2466 |
theories are defined via plain Isabelle/Isar .thy files.
|
wenzelm@16234
|
2467 |
INCOMPATIBILITY: elements of CPure (such as the CPure.intro /
|
wenzelm@16234
|
2468 |
CPure.elim / CPure.dest attributes) now appear in the Pure name space;
|
wenzelm@16234
|
2469 |
use isatool fixcpure to adapt your theory and ML sources.
|
wenzelm@16234
|
2470 |
|
wenzelm@16234
|
2471 |
* New syntax 'name(i-j, i-, i, ...)' for referring to specific
|
wenzelm@16234
|
2472 |
selections of theorems in named facts via index ranges.
|
wenzelm@16234
|
2473 |
|
wenzelm@17097
|
2474 |
* 'print_theorems': in theory mode, really print the difference
|
wenzelm@17097
|
2475 |
wrt. the last state (works for interactive theory development only),
|
wenzelm@17097
|
2476 |
in proof mode print all local facts (cf. 'print_facts');
|
wenzelm@17097
|
2477 |
|
wenzelm@17397
|
2478 |
* 'hide': option '(open)' hides only base names.
|
wenzelm@17397
|
2479 |
|
wenzelm@17275
|
2480 |
* More efficient treatment of intermediate checkpoints in interactive
|
wenzelm@17275
|
2481 |
theory development.
|
wenzelm@17275
|
2482 |
|
berghofe@17663
|
2483 |
* Code generator is now invoked via code_module (incremental code
|
wenzelm@17664
|
2484 |
generation) and code_library (modular code generation, ML structures
|
wenzelm@17664
|
2485 |
for each theory). INCOMPATIBILITY: new keywords 'file' and 'contains'
|
wenzelm@17664
|
2486 |
must be quoted when used as identifiers.
|
wenzelm@17664
|
2487 |
|
wenzelm@17664
|
2488 |
* New 'value' command for reading, evaluating and printing terms using
|
wenzelm@17664
|
2489 |
the code generator. INCOMPATIBILITY: command keyword 'value' must be
|
wenzelm@17664
|
2490 |
quoted when used as identifier.
|
berghofe@17663
|
2491 |
|
wenzelm@16234
|
2492 |
|
wenzelm@16234
|
2493 |
*** Locales ***
|
ballarin@17095
|
2494 |
|
wenzelm@17385
|
2495 |
* New commands for the interpretation of locale expressions in
|
wenzelm@17385
|
2496 |
theories (1), locales (2) and proof contexts (3). These generate
|
wenzelm@17385
|
2497 |
proof obligations from the expression specification. After the
|
wenzelm@17385
|
2498 |
obligations have been discharged, theorems of the expression are added
|
wenzelm@17385
|
2499 |
to the theory, target locale or proof context. The synopsis of the
|
wenzelm@17385
|
2500 |
commands is a follows:
|
wenzelm@17385
|
2501 |
|
ballarin@17095
|
2502 |
(1) interpretation expr inst
|
ballarin@17095
|
2503 |
(2) interpretation target < expr
|
ballarin@17095
|
2504 |
(3) interpret expr inst
|
wenzelm@17385
|
2505 |
|
ballarin@17095
|
2506 |
Interpretation in theories and proof contexts require a parameter
|
ballarin@17095
|
2507 |
instantiation of terms from the current context. This is applied to
|
wenzelm@17385
|
2508 |
specifications and theorems of the interpreted expression.
|
wenzelm@17385
|
2509 |
Interpretation in locales only permits parameter renaming through the
|
wenzelm@17385
|
2510 |
locale expression. Interpretation is smart in that interpretations
|
wenzelm@17385
|
2511 |
that are active already do not occur in proof obligations, neither are
|
wenzelm@17385
|
2512 |
instantiated theorems stored in duplicate. Use 'print_interps' to
|
wenzelm@17385
|
2513 |
inspect active interpretations of a particular locale. For details,
|
ballarin@17436
|
2514 |
see the Isar Reference manual. Examples can be found in
|
ballarin@17436
|
2515 |
HOL/Finite_Set.thy and HOL/Algebra/UnivPoly.thy.
|
wenzelm@16234
|
2516 |
|
wenzelm@16234
|
2517 |
INCOMPATIBILITY: former 'instantiate' has been withdrawn, use
|
wenzelm@16234
|
2518 |
'interpret' instead.
|
wenzelm@16234
|
2519 |
|
wenzelm@17385
|
2520 |
* New context element 'constrains' for adding type constraints to
|
wenzelm@17385
|
2521 |
parameters.
|
wenzelm@17385
|
2522 |
|
wenzelm@17385
|
2523 |
* Context expressions: renaming of parameters with syntax
|
wenzelm@17385
|
2524 |
redeclaration.
|
ballarin@17095
|
2525 |
|
ballarin@17095
|
2526 |
* Locale declaration: 'includes' disallowed.
|
ballarin@17095
|
2527 |
|
wenzelm@16234
|
2528 |
* Proper static binding of attribute syntax -- i.e. types / terms /
|
wenzelm@16234
|
2529 |
facts mentioned as arguments are always those of the locale definition
|
wenzelm@16234
|
2530 |
context, independently of the context of later invocations. Moreover,
|
wenzelm@16234
|
2531 |
locale operations (renaming and type / term instantiation) are applied
|
wenzelm@16234
|
2532 |
to attribute arguments as expected.
|
wenzelm@16234
|
2533 |
|
wenzelm@16234
|
2534 |
INCOMPATIBILITY of the ML interface: always pass Attrib.src instead of
|
wenzelm@16234
|
2535 |
actual attributes; rare situations may require Attrib.attribute to
|
wenzelm@16234
|
2536 |
embed those attributes into Attrib.src that lack concrete syntax.
|
wenzelm@16234
|
2537 |
Attribute implementations need to cooperate properly with the static
|
wenzelm@16234
|
2538 |
binding mechanism. Basic parsers Args.XXX_typ/term/prop and
|
wenzelm@16234
|
2539 |
Attrib.XXX_thm etc. already do the right thing without further
|
wenzelm@16234
|
2540 |
intervention. Only unusual applications -- such as "where" or "of"
|
wenzelm@16234
|
2541 |
(cf. src/Pure/Isar/attrib.ML), which process arguments depending both
|
wenzelm@16234
|
2542 |
on the context and the facts involved -- may have to assign parsed
|
wenzelm@16234
|
2543 |
values to argument tokens explicitly.
|
wenzelm@16234
|
2544 |
|
wenzelm@16234
|
2545 |
* Changed parameter management in theorem generation for long goal
|
wenzelm@16234
|
2546 |
statements with 'includes'. INCOMPATIBILITY: produces a different
|
wenzelm@16234
|
2547 |
theorem statement in rare situations.
|
wenzelm@16234
|
2548 |
|
ballarin@17228
|
2549 |
* Locale inspection command 'print_locale' omits notes elements. Use
|
ballarin@17228
|
2550 |
'print_locale!' to have them included in the output.
|
ballarin@17228
|
2551 |
|
wenzelm@16234
|
2552 |
|
wenzelm@16234
|
2553 |
*** Provers ***
|
wenzelm@16234
|
2554 |
|
wenzelm@16234
|
2555 |
* Provers/hypsubst.ML: improved version of the subst method, for
|
wenzelm@16234
|
2556 |
single-step rewriting: it now works in bound variable contexts. New is
|
wenzelm@16234
|
2557 |
'subst (asm)', for rewriting an assumption. INCOMPATIBILITY: may
|
wenzelm@16234
|
2558 |
rewrite a different subterm than the original subst method, which is
|
wenzelm@16234
|
2559 |
still available as 'simplesubst'.
|
wenzelm@16234
|
2560 |
|
wenzelm@16234
|
2561 |
* Provers/quasi.ML: new transitivity reasoners for transitivity only
|
wenzelm@16234
|
2562 |
and quasi orders.
|
wenzelm@16234
|
2563 |
|
wenzelm@16234
|
2564 |
* Provers/trancl.ML: new transitivity reasoner for transitive and
|
wenzelm@16234
|
2565 |
reflexive-transitive closure of relations.
|
wenzelm@16234
|
2566 |
|
wenzelm@16234
|
2567 |
* Provers/blast.ML: new reference depth_limit to make blast's depth
|
wenzelm@16234
|
2568 |
limit (previously hard-coded with a value of 20) user-definable.
|
wenzelm@16234
|
2569 |
|
wenzelm@16234
|
2570 |
* Provers/simplifier.ML has been moved to Pure, where Simplifier.setup
|
wenzelm@16234
|
2571 |
is peformed already. Object-logics merely need to finish their
|
wenzelm@16234
|
2572 |
initial simpset configuration as before. INCOMPATIBILITY.
|
wenzelm@15703
|
2573 |
|
berghofe@15475
|
2574 |
|
schirmer@14700
|
2575 |
*** HOL ***
|
schirmer@14700
|
2576 |
|
wenzelm@16234
|
2577 |
* Symbolic syntax of Hilbert Choice Operator is now as follows:
|
wenzelm@14878
|
2578 |
|
wenzelm@14878
|
2579 |
syntax (epsilon)
|
wenzelm@14878
|
2580 |
"_Eps" :: "[pttrn, bool] => 'a" ("(3\<some>_./ _)" [0, 10] 10)
|
wenzelm@14878
|
2581 |
|
wenzelm@16234
|
2582 |
The symbol \<some> is displayed as the alternative epsilon of LaTeX
|
wenzelm@16234
|
2583 |
and x-symbol; use option '-m epsilon' to get it actually printed.
|
wenzelm@16234
|
2584 |
Moreover, the mathematically important symbolic identifier \<epsilon>
|
wenzelm@16234
|
2585 |
becomes available as variable, constant etc. INCOMPATIBILITY,
|
wenzelm@16234
|
2586 |
|
wenzelm@16234
|
2587 |
* "x > y" abbreviates "y < x" and "x >= y" abbreviates "y <= x".
|
wenzelm@16234
|
2588 |
Similarly for all quantifiers: "ALL x > y" etc. The x-symbol for >=
|
wenzelm@17371
|
2589 |
is \<ge>. New transitivity rules have been added to HOL/Orderings.thy to
|
avigad@17016
|
2590 |
support corresponding Isar calculations.
|
wenzelm@16234
|
2591 |
|
wenzelm@16234
|
2592 |
* "{x:A. P}" abbreviates "{x. x:A & P}", and similarly for "\<in>"
|
wenzelm@16234
|
2593 |
instead of ":".
|
wenzelm@16234
|
2594 |
|
wenzelm@16234
|
2595 |
* theory SetInterval: changed the syntax for open intervals:
|
wenzelm@16234
|
2596 |
|
wenzelm@16234
|
2597 |
Old New
|
wenzelm@16234
|
2598 |
{..n(} {..<n}
|
wenzelm@16234
|
2599 |
{)n..} {n<..}
|
wenzelm@16234
|
2600 |
{m..n(} {m..<n}
|
wenzelm@16234
|
2601 |
{)m..n} {m<..n}
|
wenzelm@16234
|
2602 |
{)m..n(} {m<..<n}
|
wenzelm@16234
|
2603 |
|
wenzelm@16234
|
2604 |
The old syntax is still supported but will disappear in the next
|
wenzelm@16234
|
2605 |
release. For conversion use the following Emacs search and replace
|
wenzelm@16234
|
2606 |
patterns (these are not perfect but work quite well):
|
nipkow@15046
|
2607 |
|
nipkow@15046
|
2608 |
{)\([^\.]*\)\.\. -> {\1<\.\.}
|
nipkow@15046
|
2609 |
\.\.\([^(}]*\)(} -> \.\.<\1}
|
nipkow@15046
|
2610 |
|
wenzelm@17533
|
2611 |
* Theory Commutative_Ring (in Library): method comm_ring for proving
|
wenzelm@17533
|
2612 |
equalities in commutative rings; method 'algebra' provides a generic
|
wenzelm@17533
|
2613 |
interface.
|
wenzelm@17389
|
2614 |
|
wenzelm@17389
|
2615 |
* Theory Finite_Set: changed the syntax for 'setsum', summation over
|
wenzelm@16234
|
2616 |
finite sets: "setsum (%x. e) A", which used to be "\<Sum>x:A. e", is
|
wenzelm@17371
|
2617 |
now either "SUM x:A. e" or "\<Sum>x \<in> A. e". The bound variable can
|
paulson@17189
|
2618 |
be a tuple pattern.
|
wenzelm@16234
|
2619 |
|
wenzelm@16234
|
2620 |
Some new syntax forms are available:
|
wenzelm@16234
|
2621 |
|
wenzelm@16234
|
2622 |
"\<Sum>x | P. e" for "setsum (%x. e) {x. P}"
|
wenzelm@16234
|
2623 |
"\<Sum>x = a..b. e" for "setsum (%x. e) {a..b}"
|
wenzelm@16234
|
2624 |
"\<Sum>x = a..<b. e" for "setsum (%x. e) {a..<b}"
|
wenzelm@16234
|
2625 |
"\<Sum>x < k. e" for "setsum (%x. e) {..<k}"
|
wenzelm@16234
|
2626 |
|
wenzelm@16234
|
2627 |
The latter form "\<Sum>x < k. e" used to be based on a separate
|
wenzelm@16234
|
2628 |
function "Summation", which has been discontinued.
|
wenzelm@16234
|
2629 |
|
wenzelm@16234
|
2630 |
* theory Finite_Set: in structured induction proofs, the insert case
|
wenzelm@16234
|
2631 |
is now 'case (insert x F)' instead of the old counterintuitive 'case
|
wenzelm@16234
|
2632 |
(insert F x)'.
|
wenzelm@16234
|
2633 |
|
|