author | ballarin |
Wed, 10 Dec 2003 14:27:50 +0100 | |
changeset 14285 | 92ed032e83a1 |
parent 14283 | 516358ca7b42 |
child 14333 | 14f29eb097a3 |
permissions | -rw-r--r-- |
5363 | 1 |
Isabelle NEWS -- history user-relevant changes |
2 |
============================================== |
|
2553 | 3 |
|
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
4 |
New in this Isabelle release |
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
5 |
---------------------------- |
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
6 |
|
14171
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents:
14136
diff
changeset
|
7 |
*** General *** |
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents:
14136
diff
changeset
|
8 |
|
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents:
14136
diff
changeset
|
9 |
* Pure: Greek letters (except small lambda, \<lambda>), as well as gothic |
14173 | 10 |
(\<aa>...\<zz>\<AA>...\<ZZ>), caligraphic (\<A>...\<Z>), and euler |
11 |
(\<a>...\<z>), are now considered normal letters, and can therefore |
|
12 |
be used anywhere where an ASCII letter (a...zA...Z) has until |
|
13 |
now. COMPATIBILITY: This obviously changes the parsing of some |
|
14 |
terms, especially where a symbol has been used as a binder, say |
|
15 |
'\<Pi>x. ...', which is now a type error since \<Pi>x will be parsed |
|
16 |
as an identifier. Fix it by inserting a space around former |
|
17 |
symbols. Call 'isatool fixgreek' to try to fix parsing errors in |
|
18 |
existing theory and ML files. |
|
14171
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents:
14136
diff
changeset
|
19 |
|
14237 | 20 |
* Pure: Macintosh and Windows line-breaks are now allowed in theory files. |
21 |
||
14234
9590df3c5f2a
use \<^isub> and \<^isup> in identifiers instead of just \<^sub> (avoid
kleing
parents:
14233
diff
changeset
|
22 |
* Pure: single letter sub/superscripts (\<^isub> and \<^isup>) are now |
9590df3c5f2a
use \<^isub> and \<^isup> in identifiers instead of just \<^sub> (avoid
kleing
parents:
14233
diff
changeset
|
23 |
allowed in identifiers. Similar to greek letters \<^isub> is now considered |
9590df3c5f2a
use \<^isub> and \<^isup> in identifiers instead of just \<^sub> (avoid
kleing
parents:
14233
diff
changeset
|
24 |
a normal (but invisible) letter. For multiple letter subscripts repeat |
9590df3c5f2a
use \<^isub> and \<^isup> in identifiers instead of just \<^sub> (avoid
kleing
parents:
14233
diff
changeset
|
25 |
\<^isub> like this: x\<^isub>1\<^isub>2. |
14233 | 26 |
|
14237 | 27 |
* Pure: Using new Isar command "finalconsts" (or the ML functions |
28 |
Theory.add_finals or Theory.add_finals_i) it is now possible to |
|
29 |
declare constants "final", which prevents their being given a definition |
|
30 |
later. It is useful for constants whose behaviour is fixed axiomatically |
|
14224 | 31 |
rather than definitionally, such as the meta-logic connectives. |
32 |
||
14175
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
33 |
*** Isar *** |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
34 |
|
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
35 |
* Tactic emulation methods ?rule_tac, cut_tac, subgoal_tac and thin_tac: |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
36 |
- Now understand static (Isar) contexts. As a consequence, users of Isar |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
37 |
locales are no longer forced to write Isar proof scripts. |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
38 |
For details see Isar Reference Manual, paragraph 4.3.2: Further tactic |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
39 |
emulations. |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
40 |
- INCOMPATIBILITY: names of variables to be instantiated may no |
14211
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
41 |
longer be enclosed in quotes. Instead, precede variable name with `?'. |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
42 |
This is consistent with the instantiation attribute "where". |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
43 |
|
14257
a7ef3f7588c5
Type inference bug in Isar attributes "where" and "of" fixed.
ballarin
parents:
14255
diff
changeset
|
44 |
* Attributes "where" and "of": |
14285
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
ballarin
parents:
14283
diff
changeset
|
45 |
- Now take type variables of instantiated theorem into account when reading |
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
ballarin
parents:
14283
diff
changeset
|
46 |
the instantiation string. This fixes a bug that caused instantiated |
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
ballarin
parents:
14283
diff
changeset
|
47 |
theorems to have too special types in some circumstances. |
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
ballarin
parents:
14283
diff
changeset
|
48 |
- "where" permits explicit instantiations of type variables. |
14257
a7ef3f7588c5
Type inference bug in Isar attributes "where" and "of" fixed.
ballarin
parents:
14255
diff
changeset
|
49 |
|
14283 | 50 |
* Calculation commands "moreover" and "also": |
51 |
Do not reset facts ("this") any more. |
|
52 |
||
14211
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
53 |
* Locales: |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
54 |
- Goal statements involving the context element "includes" no longer |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
55 |
generate theorems with internal delta predicates (those ending on |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
56 |
"_axioms") in the premise. |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
57 |
Resolve particular premise with <locale>.intro to obtain old form. |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
58 |
- Fixed bug in type inference ("unify_frozen") that prevented mix of target |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
59 |
specification and "includes" elements in goal statement. |
14254
342634f38451
Isar/Locales: <loc>.intro and <loc>.axioms no longer intro? and elim? by
ballarin
parents:
14243
diff
changeset
|
60 |
- Rule sets <locale>.intro and <locale>.axioms no longer declared as |
342634f38451
Isar/Locales: <loc>.intro and <loc>.axioms no longer intro? and elim? by
ballarin
parents:
14243
diff
changeset
|
61 |
[intro?] and [elim?] (respectively) by default. |
14175
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
62 |
|
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
63 |
* HOL: Tactic emulation methods induct_tac and case_tac understand static |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
64 |
(Isar) contexts. |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
65 |
|
14136 | 66 |
*** HOL *** |
67 |
||
14255 | 68 |
* Records: |
69 |
- Record types are now by default printed with their type abbreviation |
|
70 |
instead of the list of all field types. This can be configured via |
|
71 |
the reference "print_record_type_abbr". |
|
72 |
- Simproc "record_upd_simproc" for simplification of multiple updates added |
|
73 |
(not enabled by default). |
|
74 |
- Tactic "record_split_simp_tac" to split and simplify records added. |
|
75 |
||
14136 | 76 |
* 'specification' command added, allowing for definition by |
14224 | 77 |
specification. There is also an 'ax_specification' command that |
78 |
introduces the new constants axiomatically. |
|
14136 | 79 |
|
14199 | 80 |
* SET-Protocol: formalization and verification of the SET protocol suite; |
81 |
||
14243 | 82 |
* HOL-ex: InductiveInvariant_examples illustrates advanced recursive function |
83 |
defintions, thanks to Sava Krsti\'{c} and John Matthews. |
|
14136 | 84 |
|
85 |
New in Isabelle2003 (May 2003) |
|
86 |
-------------------------------- |
|
87 |
||
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
88 |
*** General *** |
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
89 |
|
13618 | 90 |
* Provers/simplifier: |
91 |
||
13781 | 92 |
- Completely reimplemented method simp (ML: Asm_full_simp_tac): |
13618 | 93 |
Assumptions are now subject to complete mutual simplification, |
94 |
not just from left to right. The simplifier now preserves |
|
95 |
the order of assumptions. |
|
96 |
||
97 |
Potential INCOMPATIBILITY: |
|
98 |
||
13781 | 99 |
-- simp sometimes diverges where the old version did |
100 |
not, e.g. invoking simp on the goal |
|
13618 | 101 |
|
102 |
[| P (f x); y = x; f x = f y |] ==> Q |
|
103 |
||
13781 | 104 |
now gives rise to the infinite reduction sequence |
105 |
||
106 |
P(f x) --(f x = f y)--> P(f y) --(y = x)--> P(f x) --(f x = f y)--> ... |
|
107 |
||
108 |
Using "simp (asm_lr)" (ML: Asm_lr_simp_tac) instead often solves this |
|
109 |
kind of problem. |
|
110 |
||
111 |
-- Tactics combining classical reasoner and simplification (such as auto) |
|
112 |
are also affected by this change, because many of them rely on |
|
113 |
simp. They may sometimes diverge as well or yield a different numbers |
|
114 |
of subgoals. Try to use e.g. force, fastsimp, or safe instead of auto |
|
115 |
in case of problems. Sometimes subsequent calls to the classical |
|
116 |
reasoner will fail because a preceeding call to the simplifier too |
|
117 |
eagerly simplified the goal, e.g. deleted redundant premises. |
|
13618 | 118 |
|
119 |
- The simplifier trace now shows the names of the applied rewrite rules |
|
120 |
||
13829 | 121 |
- You can limit the number of recursive invocations of the simplifier |
122 |
during conditional rewriting (where the simplifie tries to solve the |
|
123 |
conditions before applying the rewrite rule): |
|
124 |
ML "simp_depth_limit := n" |
|
125 |
where n is an integer. Thus you can force termination where previously |
|
126 |
the simplifier would diverge. |
|
127 |
||
13835
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
ballarin
parents:
13829
diff
changeset
|
128 |
- Accepts free variables as head terms in congruence rules. Useful in Isar. |
13829 | 129 |
|
13938 | 130 |
- No longer aborts on failed congruence proof. Instead, the |
131 |
congruence is ignored. |
|
132 |
||
14008 | 133 |
* Pure: New generic framework for extracting programs from constructive |
134 |
proofs. See HOL/Extraction.thy for an example instantiation, as well |
|
135 |
as HOL/Extraction for some case studies. |
|
136 |
||
13868 | 137 |
* Pure: The main goal of the proof state is no longer shown by default, only |
138 |
the subgoals. This behaviour is controlled by a new flag. |
|
13835
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
ballarin
parents:
13829
diff
changeset
|
139 |
PG menu: Isabelle/Isar -> Settings -> Show Main Goal |
13815 | 140 |
(ML: Proof.show_main_goal). |
141 |
||
142 |
* Pure: You can find all matching introduction rules for subgoal 1, i.e. all |
|
143 |
rules whose conclusion matches subgoal 1: |
|
144 |
PG menu: Isabelle/Isar -> Show me -> matching rules |
|
145 |
The rules are ordered by how closely they match the subgoal. |
|
146 |
In particular, rules that solve a subgoal outright are displayed first |
|
147 |
(or rather last, the way they are printed). |
|
148 |
(ML: ProofGeneral.print_intros()) |
|
149 |
||
150 |
* Pure: New flag trace_unify_fail causes unification to print |
|
13781 | 151 |
diagnostic information (PG: in trace buffer) when it fails. This is |
152 |
useful for figuring out why single step proofs like rule, erule or |
|
153 |
assumption failed. |
|
154 |
||
13815 | 155 |
* Pure: Locale specifications now produce predicate definitions |
13410
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
156 |
according to the body of text (covering assumptions modulo local |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
157 |
definitions); predicate "loc_axioms" covers newly introduced text, |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
158 |
while "loc" is cumulative wrt. all included locale expressions; the |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
159 |
latter view is presented only on export into the global theory |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
160 |
context; potential INCOMPATIBILITY, use "(open)" option to fall back |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
161 |
on the old view without predicates; |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
162 |
|
13459
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents:
13443
diff
changeset
|
163 |
* Pure: predefined locales "var" and "struct" are useful for sharing |
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents:
13443
diff
changeset
|
164 |
parameters (as in CASL, for example); just specify something like |
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents:
13443
diff
changeset
|
165 |
``var x + var y + struct M'' as import; |
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents:
13443
diff
changeset
|
166 |
|
13463
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
167 |
* Pure: improved thms_containing: proper indexing of facts instead of |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
168 |
raw theorems; check validity of results wrt. current name space; |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
169 |
include local facts of proof configuration (also covers active |
13541 | 170 |
locales), cover fixed variables in index; may use "_" in term |
171 |
specification; an optional limit for the number of printed facts may |
|
172 |
be given (the default is 40); |
|
173 |
||
174 |
* Pure: disallow duplicate fact bindings within new-style theory files |
|
175 |
(batch-mode only); |
|
13540
aede0306e214
* Pure: disallow duplicate fact bindings within new-style theory files;
wenzelm
parents:
13522
diff
changeset
|
176 |
|
13463
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
177 |
* Provers: improved induct method: assumptions introduced by case |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
178 |
"foo" are split into "foo.hyps" (from the rule) and "foo.prems" (from |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
179 |
the goal statement); "foo" still refers to all facts collectively; |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
180 |
|
13550 | 181 |
* Provers: the function blast.overloaded has been removed: all constants |
182 |
are regarded as potentially overloaded, which improves robustness in exchange |
|
183 |
for slight decrease in efficiency; |
|
184 |
||
13781 | 185 |
* Provers/linorder: New generic prover for transitivity reasoning over |
186 |
linear orders. Note: this prover is not efficient! |
|
187 |
||
13522
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
188 |
* Isar: preview of problems to finish 'show' now produce an error |
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
189 |
rather than just a warning (in interactive mode); |
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
190 |
|
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
191 |
|
13158 | 192 |
*** HOL *** |
193 |
||
13899 | 194 |
* arith(_tac) |
195 |
||
196 |
- Produces a counter example if it cannot prove a goal. |
|
197 |
Note that the counter example may be spurious if the goal is not a formula |
|
198 |
of quantifier-free linear arithmetic. |
|
199 |
In ProofGeneral the counter example appears in the trace buffer. |
|
200 |
||
201 |
- Knows about div k and mod k where k is a numeral of type nat or int. |
|
202 |
||
203 |
- Calls full Presburger arithmetic (by Amine Chaieb) if quantifier-free |
|
204 |
linear arithmetic fails. This takes account of quantifiers and divisibility. |
|
205 |
Presburger arithmetic can also be called explicitly via presburger(_tac). |
|
206 |
||
207 |
* simp's arithmetic capabilities have been enhanced a bit: it now |
|
208 |
takes ~= in premises into account (by performing a case split); |
|
209 |
||
210 |
* simp reduces "m*(n div m) + n mod m" to n, even if the two summands |
|
211 |
are distributed over a sum of terms; |
|
212 |
||
13735 | 213 |
* New tactic "trans_tac" and method "trans" instantiate |
214 |
Provers/linorder.ML for axclasses "order" and "linorder" (predicates |
|
215 |
"<=", "<" and "="). |
|
216 |
||
13587 | 217 |
* function INCOMPATIBILITIES: Pi-sets have been redefined and moved from main |
218 |
HOL to Library/FuncSet; constant "Fun.op o" is now called "Fun.comp"; |
|
219 |
||
13443 | 220 |
* 'typedef' command has new option "open" to suppress the set |
221 |
definition; |
|
222 |
||
13522
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
223 |
* functions Min and Max on finite sets have been introduced (theory |
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
224 |
Finite_Set); |
13492 | 225 |
|
13443 | 226 |
* attribute [symmetric] now works for relations as well; it turns |
227 |
(x,y) : R^-1 into (y,x) : R, and vice versa; |
|
228 |
||
13613 | 229 |
* induct over a !!-quantified statement (say !!x1..xn): |
230 |
each "case" automatically performs "fix x1 .. xn" with exactly those names. |
|
231 |
||
13899 | 232 |
* Map: `empty' is no longer a constant but a syntactic abbreviation for |
233 |
%x. None. Warning: empty_def now refers to the previously hidden definition |
|
234 |
of the empty set. |
|
235 |
||
14018 | 236 |
* Algebra: formalization of classical algebra. Intended as base for |
237 |
any algebraic development in Isabelle. Currently covers group theory |
|
238 |
(up to Sylow's theorem) and ring theory (Universal Property of |
|
239 |
Univariate Polynomials). Contributions welcome; |
|
13960 | 240 |
|
241 |
* GroupTheory: deleted, since its material has been moved to Algebra; |
|
242 |
||
13966
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
243 |
* Complex: new directory of the complex numbers with numeric constants, |
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
244 |
nonstandard complex numbers, and some complex analysis, standard and |
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
245 |
nonstandard (Jacques Fleuriot); |
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
246 |
|
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
247 |
* HOL-Complex: new image for analysis, replacing HOL-Real and HOL-Hyperreal; |
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
248 |
|
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
249 |
* Hyperreal: introduced Gauge integration and hyperreal logarithms (Jacques |
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
250 |
Fleuriot); |
13960 | 251 |
|
13549 | 252 |
* Real/HahnBanach: updated and adapted to locales; |
253 |
||
13995 | 254 |
* NumberTheory: added Gauss's law of quadratic reciprocity (by Avigad, |
255 |
Gray and Kramer); |
|
13872 | 256 |
|
257 |
* UNITY: added the Meier-Sanders theory of progress sets; |
|
258 |
||
14011 | 259 |
* MicroJava: bytecode verifier and lightweight bytecode verifier |
260 |
as abstract algorithms, instantiated to the JVM; |
|
261 |
||
14010 | 262 |
* Bali: Java source language formalization. Type system, operational |
263 |
semantics, axiomatic semantics. Supported language features: |
|
264 |
classes, interfaces, objects,virtual methods, static methods, |
|
265 |
static/instance fields, arrays, access modifiers, definite |
|
266 |
assignment, exceptions. |
|
13549 | 267 |
|
14011 | 268 |
|
13549 | 269 |
*** ZF *** |
270 |
||
271 |
* ZF/Constructible: consistency proof for AC (Gödel's constructible |
|
272 |
universe, etc.); |
|
273 |
||
13872 | 274 |
* Main ZF: virtually all theories converted to new-style format; |
13518 | 275 |
|
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
276 |
|
13478 | 277 |
*** ML *** |
278 |
||
279 |
* Pure: Tactic.prove provides sane interface for internal proofs; |
|
280 |
omits the infamous "standard" operation, so this is more appropriate |
|
281 |
than prove_goalw_cterm in many situations (e.g. in simprocs); |
|
282 |
||
283 |
* Pure: improved error reporting of simprocs; |
|
284 |
||
285 |
* Provers: Simplifier.simproc(_i) provides sane interface for setting |
|
286 |
up simprocs; |
|
287 |
||
288 |
||
13953 | 289 |
*** Document preparation *** |
290 |
||
291 |
* uses \par instead of \\ for line breaks in theory text. This may |
|
292 |
shift some page breaks in large documents. To get the old behaviour |
|
293 |
use \renewcommand{\isanewline}{\mbox{}\\\mbox{}} in root.tex. |
|
294 |
||
295 |
* minimized dependencies of isabelle.sty and isabellesym.sty on |
|
296 |
other packages |
|
297 |
||
298 |
* \<euro> now needs package babel/greek instead of marvosym (which |
|
299 |
broke \Rightarrow) |
|
300 |
||
13954 | 301 |
* normal size for \<zero>...\<nine> (uses \mathbf instead of |
302 |
textcomp package) |
|
13953 | 303 |
|
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
304 |
|
12984 | 305 |
New in Isabelle2002 (March 2002) |
306 |
-------------------------------- |
|
11474 | 307 |
|
11572 | 308 |
*** Document preparation *** |
309 |
||
11842
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
310 |
* greatly simplified document preparation setup, including more |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
311 |
graceful interpretation of isatool usedir -i/-d/-D options, and more |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
312 |
instructive isatool mkdir; users should basically be able to get |
12899
7d5b690253ee
"isatool usedir -D output HOL Test && isatool document Test/output";
wenzelm
parents:
12889
diff
changeset
|
313 |
started with "isatool mkdir HOL Test && isatool make"; alternatively, |
7d5b690253ee
"isatool usedir -D output HOL Test && isatool document Test/output";
wenzelm
parents:
12889
diff
changeset
|
314 |
users may run a separate document processing stage manually like this: |
7d5b690253ee
"isatool usedir -D output HOL Test && isatool document Test/output";
wenzelm
parents:
12889
diff
changeset
|
315 |
"isatool usedir -D output HOL Test && isatool document Test/output"; |
11842
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
316 |
|
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
317 |
* theory dependency graph may now be incorporated into documents; |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
318 |
isatool usedir -g true will produce session_graph.eps/.pdf for use |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
319 |
with \includegraphics of LaTeX; |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
320 |
|
11864
371ce685b0ec
* proper spacing of consecutive markup elements, especially text
wenzelm
parents:
11842
diff
changeset
|
321 |
* proper spacing of consecutive markup elements, especially text |
371ce685b0ec
* proper spacing of consecutive markup elements, especially text
wenzelm
parents:
11842
diff
changeset
|
322 |
blocks after section headings; |
371ce685b0ec
* proper spacing of consecutive markup elements, especially text
wenzelm
parents:
11842
diff
changeset
|
323 |
|
11572 | 324 |
* support bold style (for single symbols only), input syntax is like |
325 |
this: "\<^bold>\<alpha>" or "\<^bold>A"; |
|
326 |
||
11814 | 327 |
* \<bullet> is now output as bold \cdot by default, which looks much |
11572 | 328 |
better in printed text; |
329 |
||
11712
deb8cac87063
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
wenzelm
parents:
11702
diff
changeset
|
330 |
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>; |
deb8cac87063
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
wenzelm
parents:
11702
diff
changeset
|
331 |
note that these symbols are currently unavailable in Proof General / |
12769 | 332 |
X-Symbol; new symbols \<zero>, \<one>, ..., \<nine>, and \<euro>; |
12690 | 333 |
|
334 |
* isatool latex no longer depends on changed TEXINPUTS, instead |
|
335 |
isatool document copies the Isabelle style files to the target |
|
336 |
location; |
|
11712
deb8cac87063
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
wenzelm
parents:
11702
diff
changeset
|
337 |
|
11572 | 338 |
|
11633 | 339 |
*** Isar *** |
340 |
||
12312
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
341 |
* Pure/Provers: improved proof by cases and induction; |
12280 | 342 |
- 'case' command admits impromptu naming of parameters (such as |
343 |
"case (Suc n)"); |
|
344 |
- 'induct' method divinates rule instantiation from the inductive |
|
345 |
claim; no longer requires excessive ?P bindings for proper |
|
346 |
instantiation of cases; |
|
347 |
- 'induct' method properly enumerates all possibilities of set/type |
|
348 |
rules; as a consequence facts may be also passed through *type* |
|
349 |
rules without further ado; |
|
350 |
- 'induct' method now derives symbolic cases from the *rulified* |
|
351 |
rule (before it used to rulify cases stemming from the internal |
|
352 |
atomized version); this means that the context of a non-atomic |
|
353 |
statement becomes is included in the hypothesis, avoiding the |
|
354 |
slightly cumbersome show "PROP ?case" form; |
|
355 |
- 'induct' may now use elim-style induction rules without chaining |
|
356 |
facts, using ``missing'' premises from the goal state; this allows |
|
357 |
rules stemming from inductive sets to be applied in unstructured |
|
358 |
scripts, while still benefitting from proper handling of non-atomic |
|
359 |
statements; NB: major inductive premises need to be put first, all |
|
360 |
the rest of the goal is passed through the induction; |
|
361 |
- 'induct' proper support for mutual induction involving non-atomic |
|
362 |
rule statements (uses the new concept of simultaneous goals, see |
|
363 |
below); |
|
12853 | 364 |
- append all possible rule selections, but only use the first |
365 |
success (no backtracking); |
|
11995
4a622f5fb164
- 'induct' may now use elim-style induction rules without chaining
wenzelm
parents:
11986
diff
changeset
|
366 |
- removed obsolete "(simplified)" and "(stripped)" options of methods; |
12754
044a59921f3b
Isar: undeclared rule case names default to numbers 1, 2, 3, ...;
wenzelm
parents:
12753
diff
changeset
|
367 |
- undeclared rule case names default to numbers 1, 2, 3, ...; |
044a59921f3b
Isar: undeclared rule case names default to numbers 1, 2, 3, ...;
wenzelm
parents:
12753
diff
changeset
|
368 |
- added 'print_induct_rules' (covered by help item in recent Proof |
044a59921f3b
Isar: undeclared rule case names default to numbers 1, 2, 3, ...;
wenzelm
parents:
12753
diff
changeset
|
369 |
General versions); |
11995
4a622f5fb164
- 'induct' may now use elim-style induction rules without chaining
wenzelm
parents:
11986
diff
changeset
|
370 |
- moved induct/cases attributes to Pure, methods to Provers; |
4a622f5fb164
- 'induct' may now use elim-style induction rules without chaining
wenzelm
parents:
11986
diff
changeset
|
371 |
- generic method setup instantiated for FOL and HOL; |
11986
26b95a6f3f79
- 'induct' method now derives symbolic cases from the *rulified* rule
wenzelm
parents:
11965
diff
changeset
|
372 |
|
12163
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
373 |
* Pure: support multiple simultaneous goal statements, for example |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
374 |
"have a: A and b: B" (same for 'theorem' etc.); being a pure |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
375 |
meta-level mechanism, this acts as if several individual goals had |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
376 |
been stated separately; in particular common proof methods need to be |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
377 |
repeated in order to cover all claims; note that a single elimination |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
378 |
step is *not* sufficient to establish the two conjunctions, so this |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
379 |
fails: |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
380 |
|
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
381 |
assume "A & B" then have A and B .. (*".." fails*) |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
382 |
|
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
383 |
better use "obtain" in situations as above; alternative refer to |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
384 |
multi-step methods like 'auto', 'simp_all', 'blast+' etc.; |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
385 |
|
12078
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
wenzelm
parents:
12034
diff
changeset
|
386 |
* Pure: proper integration with ``locales''; unlike the original |
12210
2f510d8d8291
* ZF: new-style theory commands '(co)inductive', '(co)datatype',
wenzelm
parents:
12177
diff
changeset
|
387 |
version by Florian Kammüller, Isar locales package high-level proof |
12078
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
wenzelm
parents:
12034
diff
changeset
|
388 |
contexts rather than raw logical ones (e.g. we admit to include |
12280 | 389 |
attributes everywhere); operations on locales include merge and |
12964 | 390 |
rename; support for implicit arguments (``structures''); simultaneous |
391 |
type-inference over imports and text; see also HOL/ex/Locales.thy for |
|
392 |
some examples; |
|
12078
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
wenzelm
parents:
12034
diff
changeset
|
393 |
|
12707
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
394 |
* Pure: the following commands have been ``localized'', supporting a |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
395 |
target locale specification "(in name)": 'lemma', 'theorem', |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
396 |
'corollary', 'lemmas', 'theorems', 'declare'; the results will be |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
397 |
stored both within the locale and at the theory level (exported and |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
398 |
qualified by the locale name); |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
399 |
|
12964 | 400 |
* Pure: theory goals may now be specified in ``long'' form, with |
401 |
ad-hoc contexts consisting of arbitrary locale elements. for example |
|
402 |
``lemma foo: fixes x assumes "A x" shows "B x"'' (local syntax and |
|
403 |
definitions may be given, too); the result is a meta-level rule with |
|
404 |
the context elements being discharged in the obvious way; |
|
405 |
||
406 |
* Pure: new proof command 'using' allows to augment currently used |
|
407 |
facts after a goal statement ('using' is syntactically analogous to |
|
408 |
'apply', but acts on the goal's facts only); this allows chained facts |
|
409 |
to be separated into parts given before and after a claim, as in |
|
410 |
``from a and b have C using d and e <proof>''; |
|
12078
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
wenzelm
parents:
12034
diff
changeset
|
411 |
|
11722 | 412 |
* Pure: renamed "antecedent" case to "rule_context"; |
413 |
||
12964 | 414 |
* Pure: new 'judgment' command records explicit information about the |
415 |
object-logic embedding (used by several tools internally); no longer |
|
416 |
use hard-wired "Trueprop"; |
|
417 |
||
11738 | 418 |
* Pure: added 'corollary' command; |
419 |
||
11722 | 420 |
* Pure: fixed 'token_translation' command; |
421 |
||
11899 | 422 |
* Pure: removed obsolete 'exported' attribute; |
423 |
||
11933 | 424 |
* Pure: dummy pattern "_" in is/let is now automatically lifted over |
425 |
bound variables: "ALL x. P x --> Q x" (is "ALL x. _ --> ?C x") |
|
11899 | 426 |
supersedes more cumbersome ... (is "ALL x. _ x --> ?C x"); |
427 |
||
11952
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
428 |
* Pure: method 'atomize' presents local goal premises as object-level |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
429 |
statements (atomic meta-level propositions); setup controlled via |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
430 |
rewrite rules declarations of 'atomize' attribute; example |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
431 |
application: 'induct' method with proper rule statements in improper |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
432 |
proof *scripts*; |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
433 |
|
12106
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
434 |
* Pure: emulation of instantiation tactics (rule_tac, cut_tac, etc.) |
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
435 |
now consider the syntactic context of assumptions, giving a better |
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
436 |
chance to get type-inference of the arguments right (this is |
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
437 |
especially important for locales); |
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
438 |
|
12312
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
439 |
* Pure: "sorry" no longer requires quick_and_dirty in interactive |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
440 |
mode; |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
441 |
|
12405
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
442 |
* Pure/obtain: the formal conclusion "thesis", being marked as |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
443 |
``internal'', may no longer be reference directly in the text; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
444 |
potential INCOMPATIBILITY, may need to use "?thesis" in rare |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
445 |
situations; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
446 |
|
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
447 |
* Pure: generic 'sym' attribute which declares a rule both as pure |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
448 |
'elim?' and for the 'symmetric' operation; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
449 |
|
12877
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
wenzelm
parents:
12853
diff
changeset
|
450 |
* Pure: marginal comments ``--'' may now occur just anywhere in the |
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
wenzelm
parents:
12853
diff
changeset
|
451 |
text; the fixed correlation with particular command syntax has been |
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
wenzelm
parents:
12853
diff
changeset
|
452 |
discontinued; |
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
wenzelm
parents:
12853
diff
changeset
|
453 |
|
13023
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
454 |
* Pure: new method 'rules' is particularly well-suited for proof |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
455 |
search in intuitionistic logic; a bit slower than 'blast' or 'fast', |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
456 |
but often produces more compact proof terms with less detours; |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
457 |
|
12364
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
458 |
* Pure/Provers/classical: simplified integration with pure rule |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
459 |
attributes and methods; the classical "intro?/elim?/dest?" |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
460 |
declarations coincide with the pure ones; the "rule" method no longer |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
461 |
includes classically swapped intros; "intro" and "elim" methods no |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
462 |
longer pick rules from the context; also got rid of ML declarations |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
463 |
AddXIs/AddXEs/AddXDs; all of this has some potential for |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
464 |
INCOMPATIBILITY; |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
465 |
|
12405
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
466 |
* Provers/classical: attribute 'swapped' produces classical inversions |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
467 |
of introduction rules; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
468 |
|
12364
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
469 |
* Provers/simplifier: 'simplified' attribute may refer to explicit |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
470 |
rules instead of full simplifier context; 'iff' attribute handles |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
471 |
conditional rules; |
11936
fef099613354
* Provers: 'simplified' attribute may refer to explicit rules instead
wenzelm
parents:
11933
diff
changeset
|
472 |
|
11745
06cd8c3b5487
* HOL: 'typedef' now allows alternative names for Rep/Abs morphisms;
wenzelm
parents:
11738
diff
changeset
|
473 |
* HOL: 'typedef' now allows alternative names for Rep/Abs morphisms; |
06cd8c3b5487
* HOL: 'typedef' now allows alternative names for Rep/Abs morphisms;
wenzelm
parents:
11738
diff
changeset
|
474 |
|
11690 | 475 |
* HOL: 'recdef' now fails on unfinished automated proofs, use |
11633 | 476 |
"(permissive)" option to recover old behavior; |
477 |
||
11933 | 478 |
* HOL: 'inductive' no longer features separate (collective) attributes |
479 |
for 'intros' (was found too confusing); |
|
480 |
||
12405
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
481 |
* HOL: properly declared induction rules less_induct and |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
482 |
wf_induct_rule; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
483 |
|
11788
60054fee3c16
canonical 'cases'/'induct' rules for n-tuples (n=3..7)
kleing
parents:
11745
diff
changeset
|
484 |
|
11474 | 485 |
*** HOL *** |
486 |
||
11702 | 487 |
* HOL: moved over to sane numeral syntax; the new policy is as |
488 |
follows: |
|
489 |
||
490 |
- 0 and 1 are polymorphic constants, which are defined on any |
|
491 |
numeric type (nat, int, real etc.); |
|
492 |
||
493 |
- 2, 3, 4, ... and -1, -2, -3, ... are polymorphic numerals, based |
|
494 |
binary representation internally; |
|
495 |
||
496 |
- type nat has special constructor Suc, and generally prefers Suc 0 |
|
497 |
over 1::nat and Suc (Suc 0) over 2::nat; |
|
498 |
||
12364
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
499 |
This change may cause significant problems of INCOMPATIBILITY; here |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
500 |
are some hints on converting existing sources: |
11702 | 501 |
|
502 |
- due to the new "num" token, "-0" and "-1" etc. are now atomic |
|
503 |
entities, so expressions involving "-" (unary or binary minus) need |
|
504 |
to be spaced properly; |
|
505 |
||
506 |
- existing occurrences of "1" may need to be constraint "1::nat" or |
|
507 |
even replaced by Suc 0; similar for old "2"; |
|
508 |
||
509 |
- replace "#nnn" by "nnn", and "#-nnn" by "-nnn"; |
|
510 |
||
511 |
- remove all special provisions on numerals in proofs; |
|
512 |
||
13042 | 513 |
* HOL: simp rules nat_number expand numerals on nat to Suc/0 |
12837 | 514 |
representation (depends on bin_arith_simps in the default context); |
515 |
||
12736 | 516 |
* HOL: symbolic syntax for x^2 (numeral 2); |
517 |
||
12335
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
518 |
* HOL: the class of all HOL types is now called "type" rather than |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
519 |
"term"; INCOMPATIBILITY, need to adapt references to this type class |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
520 |
in axclass/classes, instance/arities, and (usually rare) occurrences |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
521 |
in typings (of consts etc.); internally the class is called |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
522 |
"HOL.type", ML programs should refer to HOLogic.typeS; |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
523 |
|
12280 | 524 |
* HOL/record package improvements: |
525 |
- new derived operations "fields" to build a partial record section, |
|
526 |
"extend" to promote a fixed record to a record scheme, and |
|
527 |
"truncate" for the reverse; cf. theorems "xxx.defs", which are *not* |
|
528 |
declared as simp by default; |
|
12587
3f3d2ffb5df5
HOL/record: shared operations ("more", "fields", etc.) now need to be
wenzelm
parents:
12564
diff
changeset
|
529 |
- shared operations ("more", "fields", etc.) now need to be always |
3f3d2ffb5df5
HOL/record: shared operations ("more", "fields", etc.) now need to be
wenzelm
parents:
12564
diff
changeset
|
530 |
qualified) --- potential INCOMPATIBILITY; |
12280 | 531 |
- removed "make_scheme" operations (use "make" with "extend") -- |
532 |
INCOMPATIBILITY; |
|
11937 | 533 |
- removed "more" class (simply use "term") -- INCOMPATIBILITY; |
12253 | 534 |
- provides cases/induct rules for use with corresponding Isar |
535 |
methods (for concrete records, record schemes, concrete more |
|
12280 | 536 |
parts, and schematic more parts -- in that order); |
11930 | 537 |
- internal definitions directly based on a light-weight abstract |
538 |
theory of product types over typedef rather than datatype; |
|
539 |
||
13023
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
540 |
* HOL: generic code generator for generating executable ML code from |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
541 |
specifications; specific support for HOL constructs such as inductive |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
542 |
datatypes and sets, as well as recursive functions; can be invoked |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
543 |
via 'generate_code' theory section; |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
544 |
|
11933 | 545 |
* HOL: canonical cases/induct rules for n-tuples (n = 3..7); |
546 |
||
13824 | 547 |
* HOL: consolidated and renamed several theories. In particular: |
548 |
Ord.thy has been absorbed into HOL.thy |
|
549 |
String.thy has been absorbed into List.thy |
|
550 |
||
11802
1d5f5d2427d2
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
wenzelm
parents:
11797
diff
changeset
|
551 |
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A" |
1d5f5d2427d2
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
wenzelm
parents:
11797
diff
changeset
|
552 |
(beware of argument permutation!); |
1d5f5d2427d2
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
wenzelm
parents:
11797
diff
changeset
|
553 |
|
11657 | 554 |
* HOL: linorder_less_split superseded by linorder_cases; |
555 |
||
12917 | 556 |
* HOL/List: "nodups" renamed to "distinct"; |
12889 | 557 |
|
11633 | 558 |
* HOL: added "The" definite description operator; move Hilbert's "Eps" |
13824 | 559 |
to peripheral theory "Hilbert_Choice"; some INCOMPATIBILITIES: |
560 |
- Ex_def has changed, now need to use some_eq_ex |
|
11437 | 561 |
|
11572 | 562 |
* HOL: made split_all_tac safe; EXISTING PROOFS MAY FAIL OR LOOP, so |
563 |
in this (rare) case use: |
|
564 |
||
565 |
delSWrapper "split_all_tac" |
|
566 |
addSbefore ("unsafe_split_all_tac", unsafe_split_all_tac) |
|
567 |
||
568 |
* HOL: added safe wrapper "split_conv_tac" to claset; EXISTING PROOFS |
|
11474 | 569 |
MAY FAIL; |
11361 | 570 |
|
11572 | 571 |
* HOL: introduced f^n = f o ... o f; warning: due to the limits of |
572 |
Isabelle's type classes, ^ on functions and relations has too general |
|
573 |
a domain, namely ('a * 'b) set and 'a => 'b; this means that it may be |
|
574 |
necessary to attach explicit type constraints; |
|
11307 | 575 |
|
12917 | 576 |
* HOL/Relation: the prefix name of the infix "O" has been changed from |
577 |
"comp" to "rel_comp"; INCOMPATIBILITY: a few theorems have been |
|
578 |
renamed accordingly (eg "compI" -> "rel_compI"). |
|
12489 | 579 |
|
11487
95071c9e85a3
* HOL: syntax translations now work properly with numerals and records
wenzelm
parents:
11475
diff
changeset
|
580 |
* HOL: syntax translations now work properly with numerals and records |
95071c9e85a3
* HOL: syntax translations now work properly with numerals and records
wenzelm
parents:
11475
diff
changeset
|
581 |
expressions; |
11474 | 582 |
|
12457
cbfc53e45476
* HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead
wenzelm
parents:
12405
diff
changeset
|
583 |
* HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead |
cbfc53e45476
* HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead
wenzelm
parents:
12405
diff
changeset
|
584 |
of "lam" -- INCOMPATIBILITY; |
11474 | 585 |
|
11933 | 586 |
* HOL: got rid of some global declarations (potential INCOMPATIBILITY |
587 |
for ML tools): const "()" renamed "Product_Type.Unity", type "unit" |
|
588 |
renamed "Product_Type.unit"; |
|
11611 | 589 |
|
12564 | 590 |
* HOL: renamed rtrancl_into_rtrancl2 to converse_rtrancl_into_rtrancl |
591 |
||
12924 | 592 |
* HOL: removed obsolete theorem "optionE" (use "option.exhaust", or |
593 |
the "cases" method); |
|
594 |
||
12597
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
595 |
* HOL/GroupTheory: group theory examples including Sylow's theorem (by |
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
596 |
Florian Kammüller); |
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
597 |
|
12608
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
598 |
* HOL/IMP: updated and converted to new-style theory format; several |
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
599 |
parts turned into readable document, with proper Isar proof texts and |
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
600 |
some explanations (by Gerwin Klein); |
12597
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
601 |
|
12734 | 602 |
* HOL-Real: added Complex_Numbers (by Gertrud Bauer); |
603 |
||
12690 | 604 |
* HOL-Hyperreal is now a logic image; |
605 |
||
11611 | 606 |
|
12022
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
wenzelm
parents:
11995
diff
changeset
|
607 |
*** HOLCF *** |
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
wenzelm
parents:
11995
diff
changeset
|
608 |
|
12622 | 609 |
* Isar: consts/constdefs supports mixfix syntax for continuous |
610 |
operations; |
|
611 |
||
612 |
* Isar: domain package adapted to new-style theory format, e.g. see |
|
613 |
HOLCF/ex/Dnat.thy; |
|
614 |
||
615 |
* theory Lift: proper use of rep_datatype lift instead of ML hacks -- |
|
12280 | 616 |
potential INCOMPATIBILITY; now use plain induct_tac instead of former |
617 |
lift.induct_tac, always use UU instead of Undef; |
|
12022
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
wenzelm
parents:
11995
diff
changeset
|
618 |
|
12597
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
619 |
* HOLCF/IMP: updated and converted to new-style theory; |
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
620 |
|
12022
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
wenzelm
parents:
11995
diff
changeset
|
621 |
|
11474 | 622 |
*** ZF *** |
623 |
||
12622 | 624 |
* Isar: proper integration of logic-specific tools and packages, |
625 |
including theory commands '(co)inductive', '(co)datatype', |
|
626 |
'rep_datatype', 'inductive_cases', as well as methods 'ind_cases', |
|
627 |
'induct_tac', 'case_tac', and 'typecheck' (with attribute 'TC'); |
|
628 |
||
629 |
* theory Main no longer includes AC; for the Axiom of Choice, base |
|
630 |
your theory on Main_ZFC; |
|
631 |
||
632 |
* the integer library now covers quotients and remainders, with many |
|
633 |
laws relating division to addition, multiplication, etc.; |
|
12563 | 634 |
|
12280 | 635 |
* ZF/UNITY: Chandy and Misra's UNITY is now available in ZF, giving a |
636 |
typeless version of the formalism; |
|
637 |
||
13025 | 638 |
* ZF/AC, Coind, IMP, Resid: updated and converted to new-style theory |
639 |
format; |
|
12608
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
640 |
|
12280 | 641 |
* ZF/Induct: new directory for examples of inductive definitions, |
12608
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
642 |
including theory Multiset for multiset orderings; converted to |
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
643 |
new-style theory format; |
12177
b1c16d685a99
* ZF: new-style theory commands 'inductive', 'inductive_cases', and
wenzelm
parents:
12163
diff
changeset
|
644 |
|
13025 | 645 |
* ZF: many new theorems about lists, ordinals, etc.; |
12850 | 646 |
|
11474 | 647 |
|
648 |
*** General *** |
|
649 |
||
12280 | 650 |
* Pure/kernel: meta-level proof terms (by Stefan Berghofer); reference |
651 |
variable proof controls level of detail: 0 = no proofs (only oracle |
|
652 |
dependencies), 1 = lemma dependencies, 2 = compact proof terms; see |
|
653 |
also ref manual for further ML interfaces; |
|
654 |
||
655 |
* Pure/axclass: removed obsolete ML interface |
|
656 |
goal_subclass/goal_arity; |
|
657 |
||
658 |
* Pure/syntax: new token syntax "num" for plain numerals (without "#" |
|
659 |
of "xnum"); potential INCOMPATIBILITY, since -0, -1 etc. are now |
|
660 |
separate tokens, so expressions involving minus need to be spaced |
|
661 |
properly; |
|
662 |
||
12312
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
663 |
* Pure/syntax: support non-oriented infixes, using keyword "infix" |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
664 |
rather than "infixl" or "infixr"; |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
665 |
|
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
666 |
* Pure/syntax: concrete syntax for dummy type variables admits genuine |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
667 |
sort constraint specifications in type inference; e.g. "x::_::foo" |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
668 |
ensures that the type of "x" is of sort "foo" (but not necessarily a |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
669 |
type variable); |
12280 | 670 |
|
671 |
* Pure/syntax: print modes "type_brackets" and "no_type_brackets" |
|
672 |
control output of nested => (types); the default behavior is |
|
673 |
"type_brackets"; |
|
674 |
||
675 |
* Pure/syntax: builtin parse translation for "_constify" turns valued |
|
11817 | 676 |
tokens into AST constants; |
11474 | 677 |
|
12280 | 678 |
* Pure/syntax: prefer later declarations of translations and print |
679 |
translation functions; potential INCOMPATIBILITY: need to reverse |
|
680 |
multiple declarations for same syntax element constant; |
|
681 |
||
12832
c31b44286a8a
* Pure/show_hyps reset by default (in accordance to existing Isar practice);
wenzelm
parents:
12777
diff
changeset
|
682 |
* Pure/show_hyps reset by default (in accordance to existing Isar |
c31b44286a8a
* Pure/show_hyps reset by default (in accordance to existing Isar practice);
wenzelm
parents:
12777
diff
changeset
|
683 |
practice); |
c31b44286a8a
* Pure/show_hyps reset by default (in accordance to existing Isar practice);
wenzelm
parents:
12777
diff
changeset
|
684 |
|
12280 | 685 |
* Provers/classical: renamed addaltern to addafter, addSaltern to |
686 |
addSafter; |
|
687 |
||
688 |
* Provers/clasimp: ``iff'' declarations now handle conditional rules |
|
689 |
as well; |
|
12253 | 690 |
|
12538 | 691 |
* system: tested support for MacOS X; should be able to get Isabelle + |
692 |
Proof General to work in a plain Terminal after installing Poly/ML |
|
693 |
(e.g. from the Isabelle distribution area) and GNU bash alone |
|
694 |
(e.g. from http://www.apple.com); full X11, XEmacs and X-Symbol |
|
695 |
support requires further installations, e.g. from |
|
696 |
http://fink.sourceforge.net/); |
|
697 |
||
12280 | 698 |
* system: support Poly/ML 4.1.1 (able to manage larger heaps); |
11551 | 699 |
|
12753
3a62df7ae926
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead
wenzelm
parents:
12736
diff
changeset
|
700 |
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead |
3a62df7ae926
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead
wenzelm
parents:
12736
diff
changeset
|
701 |
of 40 MB), cf. ML_OPTIONS; |
3a62df7ae926
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead
wenzelm
parents:
12736
diff
changeset
|
702 |
|
11633 | 703 |
* system: Proof General keywords specification is now part of the |
704 |
Isabelle distribution (see etc/isar-keywords.el); |
|
705 |
||
12728 | 706 |
* system: support for persistent Proof General sessions (refrain from |
707 |
outdating all loaded theories on startup); user may create writable |
|
708 |
logic images like this: ``isabelle -q HOL Test''; |
|
12597
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
709 |
|
11551 | 710 |
* system: smart selection of Isabelle process versus Isabelle |
11572 | 711 |
interface, accommodates case-insensitive file systems (e.g. HFS+); may |
712 |
run both "isabelle" and "Isabelle" even if file names are badly |
|
713 |
damaged (executable inspects the case of the first letter of its own |
|
714 |
name); added separate "isabelle-process" and "isabelle-interface"; |
|
11551 | 715 |
|
12472 | 716 |
* system: refrain from any attempt at filtering input streams; no |
717 |
longer support ``8bit'' encoding of old isabelle font, instead proper |
|
718 |
iso-latin characters may now be used; the related isatools |
|
719 |
"symbolinput" and "nonascii" have disappeared as well; |
|
720 |
||
721 |
* system: removed old "xterm" interface (the print modes "xterm" and |
|
722 |
"xterm_color" are still available for direct use in a suitable |
|
723 |
terminal); |
|
724 |
||
11314 | 725 |
|
11169
98c2f741e32b
made split_all_tac safe introducing safe_full_simp_tac, EXISTING PROOFS MAY FAIL
oheimb
parents:
11130
diff
changeset
|
726 |
|
11062 | 727 |
New in Isabelle99-2 (February 2001) |
728 |
----------------------------------- |
|
729 |
||
10224 | 730 |
*** Overview of INCOMPATIBILITIES *** |
731 |
||
11241 | 732 |
* HOL: please note that theories in the Library and elsewhere often use the |
733 |
new-style (Isar) format; to refer to their theorems in an ML script you must |
|
12622 | 734 |
bind them to ML identifers by e.g. val thm_name = thm "thm_name"; |
11241 | 735 |
|
11043
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
wenzelm
parents:
11016
diff
changeset
|
736 |
* HOL: inductive package no longer splits induction rule aggressively, |
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
wenzelm
parents:
11016
diff
changeset
|
737 |
but only as far as specified by the introductions given; the old |
11130 | 738 |
format may be recovered via ML function complete_split_rule or attribute |
11043
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
wenzelm
parents:
11016
diff
changeset
|
739 |
'split_rule (complete)'; |
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
wenzelm
parents:
11016
diff
changeset
|
740 |
|
10998 | 741 |
* HOL: induct renamed to lfp_induct, lfp_Tarski to lfp_unfold, |
742 |
gfp_Tarski to gfp_unfold; |
|
10224 | 743 |
|
10288 | 744 |
* HOL: contrapos, contrapos2 renamed to contrapos_nn, contrapos_pp; |
745 |
||
10858 | 746 |
* HOL: infix "dvd" now has priority 50 rather than 70 (because it is a |
747 |
relation); infix "^^" has been renamed "``"; infix "``" has been |
|
748 |
renamed "`"; "univalent" has been renamed "single_valued"; |
|
10793 | 749 |
|
10998 | 750 |
* HOL/Real: "rinv" and "hrinv" replaced by overloaded "inverse" |
751 |
operation; |
|
752 |
||
10868 | 753 |
* HOLCF: infix "`" has been renamed "$"; the symbol syntax is \<cdot>; |
10856 | 754 |
|
10391 | 755 |
* Isar: 'obtain' no longer declares "that" fact as simp/intro; |
756 |
||
10401
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
757 |
* Isar/HOL: method 'induct' now handles non-atomic goals; as a |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
758 |
consequence, it is no longer monotonic wrt. the local goal context |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
759 |
(which is now passed through the inductive cases); |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
760 |
|
10976
0e7cf6f9fa29
* Document preparation: renamed standard symbols \<ll> to \<lless> and
wenzelm
parents:
10966
diff
changeset
|
761 |
* Document preparation: renamed standard symbols \<ll> to \<lless> and |
0e7cf6f9fa29
* Document preparation: renamed standard symbols \<ll> to \<lless> and
wenzelm
parents:
10966
diff
changeset
|
762 |
\<gg> to \<ggreater>; |
0e7cf6f9fa29
* Document preparation: renamed standard symbols \<ll> to \<lless> and
wenzelm
parents:
10966
diff
changeset
|
763 |
|
10224 | 764 |
|
10245
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
765 |
*** Document preparation *** |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
766 |
|
10858 | 767 |
* \isabellestyle{NAME} selects version of Isabelle output (currently |
768 |
available: are "it" for near math-mode best-style output, "sl" for |
|
769 |
slanted text style, and "tt" for plain type-writer; if no |
|
770 |
\isabellestyle command is given, output is according to slanted |
|
771 |
type-writer); |
|
772 |
||
10322
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
773 |
* support sub/super scripts (for single symbols only), input syntax is |
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
774 |
like this: "A\<^sup>*" or "A\<^sup>\<star>"; |
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
775 |
|
10858 | 776 |
* some more standard symbols; see Appendix A of the system manual for |
11062 | 777 |
the complete list of symbols defined in isabellesym.sty; |
10858 | 778 |
|
10998 | 779 |
* improved isabelle style files; more abstract symbol implementation |
780 |
(should now use \isamath{...} and \isatext{...} in custom symbol |
|
781 |
definitions); |
|
782 |
||
10634 | 783 |
* antiquotation @{goals} and @{subgoals} for output of *dynamic* goals |
784 |
state; Note that presentation of goal states does not conform to |
|
785 |
actual human-readable proof documents. Please do not include goal |
|
786 |
states into document output unless you really know what you are doing! |
|
10322
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
787 |
|
11062 | 788 |
* proper indentation of antiquoted output with proportional LaTeX |
789 |
fonts; |
|
10862 | 790 |
|
11050
ac5709ac50b9
* no_document ML operator temporarily disables LaTeX document
wenzelm
parents:
11043
diff
changeset
|
791 |
* no_document ML operator temporarily disables LaTeX document |
ac5709ac50b9
* no_document ML operator temporarily disables LaTeX document
wenzelm
parents:
11043
diff
changeset
|
792 |
generation; |
ac5709ac50b9
* no_document ML operator temporarily disables LaTeX document
wenzelm
parents:
11043
diff
changeset
|
793 |
|
11062 | 794 |
* isatool unsymbolize tunes sources for plain ASCII communication; |
795 |
||
10322
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
796 |
|
10306
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
wenzelm
parents:
10288
diff
changeset
|
797 |
*** Isar *** |
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
wenzelm
parents:
10288
diff
changeset
|
798 |
|
10547 | 799 |
* Pure: Isar now suffers initial goal statements to contain unbound |
800 |
schematic variables (this does not conform to actual readable proof |
|
801 |
documents, due to unpredictable outcome and non-compositional proof |
|
802 |
checking); users who know what they are doing may use schematic goals |
|
803 |
for Prolog-style synthesis of proven results; |
|
804 |
||
10391 | 805 |
* Pure: assumption method (an implicit finishing) now handles actual |
806 |
rules as well; |
|
807 |
||
808 |
* Pure: improved 'obtain' --- moved to Pure, insert "that" into |
|
809 |
initial goal, declare "that" only as Pure intro (only for single |
|
810 |
steps); the "that" rule assumption may now be involved in implicit |
|
811 |
finishing, thus ".." becomes a feasible for trivial obtains; |
|
812 |
||
813 |
* Pure: default proof step now includes 'intro_classes'; thus trivial |
|
814 |
instance proofs may be performed by ".."; |
|
815 |
||
816 |
* Pure: ?thesis / ?this / "..." now work for pure meta-level |
|
817 |
statements as well; |
|
10306
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
wenzelm
parents:
10288
diff
changeset
|
818 |
|
11097 | 819 |
* Pure: more robust selection of calculational rules; |
820 |
||
10858 | 821 |
* Pure: the builtin notion of 'finished' goal now includes the ==-refl |
822 |
rule (as well as the assumption rule); |
|
823 |
||
824 |
* Pure: 'thm_deps' command visualizes dependencies of theorems and |
|
825 |
lemmas, using the graph browser tool; |
|
826 |
||
10944 | 827 |
* Pure: predict failure of "show" in interactive mode; |
828 |
||
11016
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
wenzelm
parents:
10998
diff
changeset
|
829 |
* Pure: 'thms_containing' now takes actual terms as arguments; |
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
wenzelm
parents:
10998
diff
changeset
|
830 |
|
10401
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
831 |
* HOL: improved method 'induct' --- now handles non-atomic goals |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
832 |
(potential INCOMPATIBILITY); tuned error handling; |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
833 |
|
10557 | 834 |
* HOL: cases and induct rules now provide explicit hints about the |
10547 | 835 |
number of facts to be consumed (0 for "type" and 1 for "set" rules); |
836 |
any remaining facts are inserted into the goal verbatim; |
|
837 |
||
10858 | 838 |
* HOL: local contexts (aka cases) may now contain term bindings as |
839 |
well; the 'cases' and 'induct' methods new provide a ?case binding for |
|
840 |
the result to be shown in each case; |
|
841 |
||
10770 | 842 |
* HOL: added 'recdef_tc' command; |
843 |
||
11016
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
wenzelm
parents:
10998
diff
changeset
|
844 |
* isatool convert assists in eliminating legacy ML scripts; |
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
wenzelm
parents:
10998
diff
changeset
|
845 |
|
10306
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
wenzelm
parents:
10288
diff
changeset
|
846 |
|
10245
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
847 |
*** HOL *** |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
848 |
|
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
849 |
* HOL/Library: a collection of generic theories to be used together |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
850 |
with main HOL; the theory loader path already includes this directory |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
851 |
by default; the following existing theories have been moved here: |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
852 |
HOL/Induct/Multiset, HOL/Induct/Acc (as Accessible_Part), HOL/While |
10337 | 853 |
(as While_Combinator), HOL/Lex/Prefix (as List_Prefix); |
10245
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
854 |
|
10966 | 855 |
* HOL/Unix: "Some aspects of Unix file-system security", a typical |
856 |
modelling and verification task performed in Isabelle/HOL + |
|
857 |
Isabelle/Isar + Isabelle document preparation (by Markus Wenzel). |
|
858 |
||
11094 | 859 |
* HOL/Algebra: special summation operator SUM no longer exists, it has |
860 |
been replaced by setsum; infix 'assoc' now has priority 50 (like |
|
861 |
'dvd'); axiom 'one_not_zero' has been moved from axclass 'ring' to |
|
862 |
'domain', this makes the theory consistent with mathematical |
|
863 |
literature; |
|
864 |
||
10514 | 865 |
* HOL basics: added overloaded operations "inverse" and "divide" |
10726 | 866 |
(infix "/"), syntax for generic "abs" operation, generic summation |
11094 | 867 |
operator \<Sum>; |
10452
abeefb0a79ae
* added overloaded operations "inverse" and "divide" (infix "/");
wenzelm
parents:
10428
diff
changeset
|
868 |
|
10391 | 869 |
* HOL/typedef: simplified package, provide more useful rules (see also |
870 |
HOL/subset.thy); |
|
871 |
||
10915
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
872 |
* HOL/datatype: induction rule for arbitrarily branching datatypes is |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
873 |
now expressed as a proper nested rule (old-style tactic scripts may |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
874 |
require atomize_strip_tac to cope with non-atomic premises); |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
875 |
|
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
876 |
* HOL: renamed theory "Prod" to "Product_Type", renamed "split" rule |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
877 |
to "split_conv" (old name still available for compatibility); |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
878 |
|
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
879 |
* HOL: improved concrete syntax for strings (e.g. allows translation |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
880 |
rules with string literals); |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
881 |
|
12245 | 882 |
* HOL-Real-Hyperreal: this extends HOL-Real with the hyperreals |
883 |
and Fleuriot's mechanization of analysis, including the transcendental |
|
884 |
functions for the reals; |
|
10756 | 885 |
|
11094 | 886 |
* HOL/Real, HOL/Hyperreal: improved arithmetic simplification; |
10391 | 887 |
|
10858 | 888 |
|
10474 | 889 |
*** CTT *** |
890 |
||
10547 | 891 |
* CTT: x-symbol support for Pi, Sigma, -->, : (membership); note that |
892 |
"lam" is displayed as TWO lambda-symbols |
|
10474 | 893 |
|
10547 | 894 |
* CTT: theory Main now available, containing everything (that is, Bool |
895 |
and Arith); |
|
896 |
||
10474 | 897 |
|
10391 | 898 |
*** General *** |
899 |
||
10547 | 900 |
* Pure: the Simplifier has been implemented properly as a derived rule |
901 |
outside of the actual kernel (at last!); the overall performance |
|
902 |
penalty in practical applications is about 50%, while reliability of |
|
903 |
the Isabelle inference kernel has been greatly improved; |
|
904 |
||
11112 | 905 |
* print modes "brackets" and "no_brackets" control output of nested => |
906 |
(types) and ==> (props); the default behaviour is "brackets"; |
|
907 |
||
10391 | 908 |
* Provers: fast_tac (and friends) now handle actual object-logic rules |
909 |
as assumptions as well; |
|
910 |
||
11124 | 911 |
* system: support Poly/ML 4.0; |
912 |
||
913 |
* system: isatool install handles KDE version 1 or 2; |
|
914 |
||
10391 | 915 |
|
10245
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
916 |
|
10103 | 917 |
New in Isabelle99-1 (October 2000) |
918 |
---------------------------------- |
|
8015 | 919 |
|
10003 | 920 |
*** Overview of INCOMPATIBILITIES *** |
8014 | 921 |
|
8848 | 922 |
* HOL: simplification of natural numbers is much changed; to partly |
923 |
recover the old behaviour (e.g. to prevent n+n rewriting to #2*n) |
|
924 |
issue the following ML commands: |
|
925 |
||
926 |
Delsimprocs Nat_Numeral_Simprocs.cancel_numerals; |
|
927 |
Delsimprocs [Nat_Numeral_Simprocs.combine_numerals]; |
|
8788 | 928 |
|
10129 | 929 |
* HOL: simplification no longer dives into case-expressions; this is |
930 |
controlled by "t.weak_case_cong" for each datatype t; |
|
10003 | 931 |
|
932 |
* HOL: nat_less_induct renamed to less_induct; |
|
933 |
||
934 |
* HOL: systematic renaming of the SOME (Eps) rules, may use isatool |
|
935 |
fixsome to patch .thy and .ML sources automatically; |
|
8967 | 936 |
|
10003 | 937 |
select_equality -> some_equality |
938 |
select_eq_Ex -> some_eq_ex |
|
939 |
selectI2EX -> someI2_ex |
|
940 |
selectI2 -> someI2 |
|
941 |
selectI -> someI |
|
942 |
select1_equality -> some1_equality |
|
943 |
Eps_sym_eq -> some_sym_eq_trivial |
|
944 |
Eps_eq -> some_eq_trivial |
|
945 |
||
946 |
* HOL: exhaust_tac on datatypes superceded by new generic case_tac; |
|
947 |
||
948 |
* HOL: removed obsolete theorem binding expand_if (refer to split_if |
|
949 |
instead); |
|
950 |
||
951 |
* HOL: the recursion equations generated by 'recdef' are now called |
|
952 |
f.simps instead of f.rules; |
|
953 |
||
954 |
* HOL: qed_spec_mp now also handles bounded ALL as well; |
|
955 |
||
956 |
* HOL: 0 is now overloaded, so the type constraint ":: nat" may |
|
957 |
sometimes be needed; |
|
958 |
||
959 |
* HOL: the constant for "f``x" is now "image" rather than "op ``"; |
|
8014 | 960 |
|
10065 | 961 |
* HOL: the constant for "f-``x" is now "vimage" rather than "op -``"; |
962 |
||
9330
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
963 |
* HOL: the disjoint sum is now "<+>" instead of "Plus"; the cartesian |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
964 |
product is now "<*>" instead of "Times"; the lexicographic product is |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
965 |
now "<*lex*>" instead of "**"; |
8705 | 966 |
|
10003 | 967 |
* HOL: theory Sexp is now in HOL/Induct examples (it used to be part |
968 |
of main HOL, but was unused); better use HOL's datatype package; |
|
9971 | 969 |
|
10137
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
970 |
* HOL: removed "symbols" syntax for constant "override" of theory Map; |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
971 |
the old syntax may be recovered as follows: |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
972 |
|
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
973 |
syntax (symbols) |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
974 |
override :: "('a ~=> 'b) => ('a ~=> 'b) => ('a ~=> 'b)" |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
975 |
(infixl "\\<oplus>" 100) |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
976 |
|
8848 | 977 |
* HOL/Real: "rabs" replaced by overloaded "abs" function; |
978 |
||
8887
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
979 |
* HOL/ML: even fewer consts are declared as global (see theories Ord, |
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
980 |
Lfp, Gfp, WF); this only affects ML packages that refer to const names |
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
981 |
internally; |
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
982 |
|
10003 | 983 |
* HOL and ZF: syntax for quotienting wrt an equivalence relation |
984 |
changed from A/r to A//r; |
|
9908 | 985 |
|
10003 | 986 |
* ZF: new treatment of arithmetic (nat & int) may break some old |
987 |
proofs; |
|
8921
7c04c98132c4
* Pure: changed syntax of local blocks from {{ }} to { };
wenzelm
parents:
8887
diff
changeset
|
988 |
|
10003 | 989 |
* Isar: renamed some attributes (RS -> THEN, simplify -> simplified, |
990 |
rulify -> rule_format, elimify -> elim_format, ...); |
|
9542 | 991 |
|
9941
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
992 |
* Isar/Provers: intro/elim/dest attributes changed; renamed |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
993 |
intro/intro!/intro!! flags to intro!/intro/intro? (in most cases, one |
9937 | 994 |
should have to change intro!! to intro? only); replaced "delrule" by |
995 |
"rule del"; |
|
9437
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
wenzelm
parents:
9402
diff
changeset
|
996 |
|
9612 | 997 |
* Isar/HOL: renamed "intrs" to "intros" in inductive definitions; |
998 |
||
9437
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
wenzelm
parents:
9402
diff
changeset
|
999 |
* Provers: strengthened force_tac by using new first_best_tac; |
9402 | 1000 |
|
10003 | 1001 |
* LaTeX document preparation: several changes of isabelle.sty (see |
1002 |
lib/texinputs); |
|
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1003 |
|
8014 | 1004 |
|
8487 | 1005 |
*** Document preparation *** |
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1006 |
|
9198
0ab3c81e9425
* formal comments (text blocks etc.) in new-style theories may now
wenzelm
parents:
9185
diff
changeset
|
1007 |
* formal comments (text blocks etc.) in new-style theories may now |
9753 | 1008 |
contain antiquotations of thm/prop/term/typ/text to be presented |
1009 |
according to latex print mode; concrete syntax is like this: |
|
1010 |
@{term[show_types] "f(x) = a + x"}; |
|
9198
0ab3c81e9425
* formal comments (text blocks etc.) in new-style theories may now
wenzelm
parents:
9185
diff
changeset
|
1011 |
|
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1012 |
* isatool mkdir provides easy setup of Isabelle session directories, |
8518 | 1013 |
including proper document sources; |
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1014 |
|
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1015 |
* generated LaTeX sources are now deleted after successful run |
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1016 |
(isatool document -c); may retain a copy somewhere else via -D option |
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1017 |
of isatool usedir; |
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1018 |
|
8566 | 1019 |
* isatool usedir -D now lets isatool latex -o sty update the Isabelle |
10003 | 1020 |
style files, achieving self-contained LaTeX sources and simplifying |
1021 |
LaTeX debugging; |
|
8566 | 1022 |
|
8518 | 1023 |
* old-style theories now produce (crude) LaTeX output as well; |
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1024 |
|
9057
af1ca1acf292
* browser info session directories are now self-contained (may be put
wenzelm
parents:
9052
diff
changeset
|
1025 |
* browser info session directories are now self-contained (may be put |
9437
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
wenzelm
parents:
9402
diff
changeset
|
1026 |
on WWW server seperately); improved graphs of nested sessions; removed |
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
wenzelm
parents:
9402
diff
changeset
|
1027 |
graph for 'all sessions'; |
9057
af1ca1acf292
* browser info session directories are now self-contained (may be put
wenzelm
parents:
9052
diff
changeset
|
1028 |
|
10003 | 1029 |
* several improvements in isabelle style files; \isabellestyle{it} |
1030 |
produces fake math mode output; \isamarkupheader is now \section by |
|
1031 |
default; see lib/texinputs/isabelle.sty etc.; |
|
9489
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1032 |
|
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1033 |
|
8184 | 1034 |
*** Isar *** |
1035 |
||
10003 | 1036 |
* Isar/Pure: local results and corresponding term bindings are now |
1037 |
subject to Hindley-Milner polymorphism (similar to ML); this |
|
1038 |
accommodates incremental type-inference very nicely; |
|
8283
0a319c5746eb
* Pure now provides its own version of intro/elim/dest attributes;
wenzelm
parents:
8271
diff
changeset
|
1039 |
|
10003 | 1040 |
* Isar/Pure: new derived language element 'obtain' supports |
1041 |
generalized existence reasoning; |
|
8621
8ba0f90f6f35
* Isar/Pure: local results and corresponding term bindings are now
wenzelm
parents:
8603
diff
changeset
|
1042 |
|
10003 | 1043 |
* Isar/Pure: new calculational elements 'moreover' and 'ultimately' |
1044 |
support accumulation of results, without applying any rules yet; |
|
1045 |
useful to collect intermediate results without explicit name |
|
1046 |
references, and for use with transitivity rules with more than 2 |
|
1047 |
premises; |
|
8184 | 1048 |
|
10003 | 1049 |
* Isar/Pure: scalable support for case-analysis type proofs: new |
1050 |
'case' language element refers to local contexts symbolically, as |
|
1051 |
produced by certain proof methods; internally, case names are attached |
|
1052 |
to theorems as "tags"; |
|
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1053 |
|
10003 | 1054 |
* Isar/Pure: theory command 'hide' removes declarations from |
9330
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1055 |
class/type/const name spaces; |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1056 |
|
10003 | 1057 |
* Isar/Pure: theory command 'defs' supports option "(overloaded)" to |
9330
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1058 |
indicate potential overloading; |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1059 |
|
10003 | 1060 |
* Isar/Pure: changed syntax of local blocks from {{ }} to { }; |
8621
8ba0f90f6f35
* Isar/Pure: local results and corresponding term bindings are now
wenzelm
parents:
8603
diff
changeset
|
1061 |
|
10003 | 1062 |
* Isar/Pure: syntax of sorts made 'inner', i.e. have to write |
1063 |
"{a,b,c}" instead of {a,b,c}; |
|
9011
0cfc347f8d19
Isar/Pure: removed obsolete 'transfer' attribute (transfer of thms to
wenzelm
parents:
8994
diff
changeset
|
1064 |
|
10003 | 1065 |
* Isar/Pure now provides its own version of intro/elim/dest |
1066 |
attributes; useful for building new logics, but beware of confusion |
|
1067 |
with the version in Provers/classical; |
|
9612 | 1068 |
|
10003 | 1069 |
* Isar/Pure: the local context of (non-atomic) goals is provided via |
1070 |
case name 'antecedent'; |
|
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1071 |
|
10003 | 1072 |
* Isar/Pure: removed obsolete 'transfer' attribute (transfer of thms |
1073 |
to the current context is now done automatically); |
|
9383
c21fa1c48de0
* HOL: removed obsolete expand_if = split_if; theorems if_splits =
wenzelm
parents:
9349
diff
changeset
|
1074 |
|
10003 | 1075 |
* Isar/Pure: theory command 'method_setup' provides a simple interface |
1076 |
for definining proof methods in ML; |
|
9612 | 1077 |
|
10003 | 1078 |
* Isar/Provers: intro/elim/dest attributes changed; renamed |
9941
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1079 |
intro/intro!/intro!! flags to intro!/intro/intro? (INCOMPATIBILITY, in |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1080 |
most cases, one should have to change intro!! to intro? only); |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1081 |
replaced "delrule" by "rule del"; |
8283
0a319c5746eb
* Pure now provides its own version of intro/elim/dest attributes;
wenzelm
parents:
8271
diff
changeset
|
1082 |
|
10003 | 1083 |
* Isar/Provers: new 'hypsubst' method, plain 'subst' method and |
1084 |
'symmetric' attribute (the latter supercedes [RS sym]); |
|
1085 |
||
1086 |
* Isar/Provers: splitter support (via 'split' attribute and 'simp' |
|
1087 |
method modifier); 'simp' method: 'only:' modifier removes loopers as |
|
1088 |
well (including splits); |
|
1089 |
||
1090 |
* Isar/Provers: Simplifier and Classical methods now support all kind |
|
1091 |
of modifiers used in the past, including 'cong', 'iff', etc. |
|
1092 |
||
1093 |
* Isar/Provers: added 'fastsimp' and 'clarsimp' methods (combination |
|
1094 |
of Simplifier and Classical reasoner); |
|
1095 |
||
1096 |
* Isar/HOL: new proof method 'cases' and improved version of 'induct' |
|
1097 |
now support named cases; major packages (inductive, datatype, primrec, |
|
1098 |
recdef) support case names and properly name parameters; |
|
9612 | 1099 |
|
10003 | 1100 |
* Isar/HOL: new transitivity rules for substitution in inequalities -- |
1101 |
monotonicity conditions are extracted to be proven at end of |
|
1102 |
calculations; |
|
1103 |
||
1104 |
* Isar/HOL: removed 'case_split' thm binding, should use 'cases' proof |
|
1105 |
method anyway; |
|
1106 |
||
1107 |
* Isar/HOL: removed old expand_if = split_if; theorems if_splits = |
|
1108 |
split_if split_if_asm; datatype package provides theorems foo.splits = |
|
1109 |
foo.split foo.split_asm for each datatype; |
|
1110 |
||
1111 |
* Isar/HOL: tuned inductive package, rename "intrs" to "intros" |
|
1112 |
(potential INCOMPATIBILITY), emulation of mk_cases feature for proof |
|
1113 |
scripts: new 'inductive_cases' command and 'ind_cases' method; (Note: |
|
1114 |
use "(cases (simplified))" method in proper proof texts); |
|
1115 |
||
1116 |
* Isar/HOL: added global 'arith_split' attribute for 'arith' method; |
|
1117 |
||
1118 |
* Isar: names of theorems etc. may be natural numbers as well; |
|
1119 |
||
1120 |
* Isar: 'pr' command: optional arguments for goals_limit and |
|
9724
2030c5d63741
* 'pr' command: optional argument for ProofContext.prems_limit;
wenzelm
parents:
9709
diff
changeset
|
1121 |
ProofContext.prems_limit; no longer prints theory contexts, but only |
2030c5d63741
* 'pr' command: optional argument for ProofContext.prems_limit;
wenzelm
parents:
9709
diff
changeset
|
1122 |
proof states; |
8487 | 1123 |
|
10003 | 1124 |
* Isar: diagnostic commands 'pr', 'thm', 'prop', 'term', 'typ' admit |
8518 | 1125 |
additional print modes to be specified; e.g. "pr(latex)" will print |
1126 |
proof state according to the Isabelle LaTeX style; |
|
8487 | 1127 |
|
10003 | 1128 |
* Isar: improved support for emulating tactic scripts, including proof |
9612 | 1129 |
methods 'rule_tac' etc., 'cut_tac', 'thin_tac', 'subgoal_tac', |
1130 |
'rename_tac', 'rotate_tac', 'tactic', and 'case_tac' / 'induct_tac' |
|
1131 |
(for HOL datatypes); |
|
8534 | 1132 |
|
10003 | 1133 |
* Isar: simplified (more robust) goal selection of proof methods: 1st |
1134 |
goal, all goals, or explicit goal specifier (tactic emulation); thus |
|
1135 |
'proof method scripts' have to be in depth-first order; |
|
8673
987ea1a559d0
Isar: simplified (more robust) goal selection of proof methods;
wenzelm
parents:
8655
diff
changeset
|
1136 |
|
10003 | 1137 |
* Isar: tuned 'let' syntax: replaced 'as' keyword by 'and'; |
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1138 |
|
10003 | 1139 |
* Isar: removed 'help' command, which hasn't been too helpful anyway; |
1140 |
should instead use individual commands for printing items |
|
1141 |
(print_commands, print_methods etc.); |
|
9224
0da360494917
* Isar: removed 'help' command, which hasn't been too helpful anyway;
wenzelm
parents:
9198
diff
changeset
|
1142 |
|
10003 | 1143 |
* Isar: added 'nothing' --- the empty list of theorems; |
9239 | 1144 |
|
8184 | 1145 |
|
8014 | 1146 |
*** HOL *** |
1147 |
||
10080 | 1148 |
* HOL/MicroJava: formalization of a fragment of Java, together with a |
1149 |
corresponding virtual machine and a specification of its bytecode |
|
1150 |
verifier and a lightweight bytecode verifier, including proofs of |
|
1151 |
type-safety; by Gerwin Klein, Tobias Nipkow, David von Oheimb, and |
|
1152 |
Cornelia Pusch (see also the homepage of project Bali at |
|
1153 |
http://isabelle.in.tum.de/Bali/); |
|
1154 |
||
8518 | 1155 |
* HOL/Algebra: new theory of rings and univariate polynomials, by |
1156 |
Clemens Ballarin; |
|
8014 | 1157 |
|
10157
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1158 |
* HOL/NumberTheory: fundamental Theorem of Arithmetic, Chinese |
10003 | 1159 |
Remainder Theorem, Fermat/Euler Theorem, Wilson's Theorem, by Thomas M |
1160 |
Rasmussen; |
|
8570 | 1161 |
|
10157
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1162 |
* HOL/Lattice: fundamental concepts of lattice theory and order |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1163 |
structures, including duals, properties of bounds versus algebraic |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1164 |
laws, lattice operations versus set-theoretic ones, the Knaster-Tarski |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1165 |
Theorem for complete lattices etc.; may also serve as a demonstration |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1166 |
for abstract algebraic reasoning using axiomatic type classes, and |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1167 |
mathematics-style proof in Isabelle/Isar; by Markus Wenzel; |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1168 |
|
10003 | 1169 |
* HOL/Prolog: a (bare-bones) implementation of Lambda-Prolog, by David |
1170 |
von Oheimb; |
|
9542 | 1171 |
|
10164
c240747082aa
* HOL/IMPP: extension of IMP with local variables and mutually
wenzelm
parents:
10157
diff
changeset
|
1172 |
* HOL/IMPP: extension of IMP with local variables and mutually |
c240747082aa
* HOL/IMPP: extension of IMP with local variables and mutually
wenzelm
parents:
10157
diff
changeset
|
1173 |
recursive procedures, by David von Oheimb; |
c240747082aa
* HOL/IMPP: extension of IMP with local variables and mutually
wenzelm
parents:
10157
diff
changeset
|
1174 |
|
10003 | 1175 |
* HOL/Lambda: converted into new-style theory and document; |
9542 | 1176 |
|
10003 | 1177 |
* HOL/ex/Multiquote: example of multiple nested quotations and |
1178 |
anti-quotations -- basically a generalized version of de-Bruijn |
|
1179 |
representation; very useful in avoiding lifting of operations; |
|
8848 | 1180 |
|
9612 | 1181 |
* HOL/record: added general record equality rule to simpset; fixed |
1182 |
select-update simplification procedure to handle extended records as |
|
1183 |
well; admit "r" as field name; |
|
9542 | 1184 |
|
8967 | 1185 |
* HOL: 0 is now overloaded over the new sort "zero", allowing its use with |
1186 |
other numeric types and also as the identity of groups, rings, etc.; |
|
1187 |
||
1188 |
* HOL: new axclass plus_ac0 for addition with the AC-laws and 0 as identity. |
|
1189 |
Types nat and int belong to this axclass; |
|
1190 |
||
10003 | 1191 |
* HOL: greatly improved simplification involving numerals of type nat, int, real: |
8788 | 1192 |
(i + #8 + j) = Suc k simplifies to #7 + (i + j) = k |
8832 | 1193 |
i*j + k + j*#3*i simplifies to #4*(i*j) + k |
1194 |
two terms #m*u and #n*u are replaced by #(m+n)*u |
|
1195 |
(where #m, #n and u can implicitly be 1; this is simproc combine_numerals) |
|
1196 |
and the term/formula #m*u+x ~~ #n*u+y simplifies simplifies to #(m-n)+x ~~ y |
|
1197 |
or x ~~ #(n-m)+y, where ~~ is one of = < <= or - (simproc cancel_numerals); |
|
8736 | 1198 |
|
10003 | 1199 |
* HOL: meson_tac is available (previously in ex/meson.ML); it is a |
1200 |
powerful prover for predicate logic but knows nothing of clasets; see |
|
1201 |
ex/mesontest.ML and ex/mesontest2.ML for example applications; |
|
9835 | 1202 |
|
8848 | 1203 |
* HOL: new version of "case_tac" subsumes both boolean case split and |
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1204 |
"exhaust_tac" on datatypes; INCOMPATIBILITY: exhaust_tac no longer |
8518 | 1205 |
exists, may define val exhaust_tac = case_tac for ad-hoc portability; |
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1206 |
|
8848 | 1207 |
* HOL: simplification no longer dives into case-expressions: only the |
10129 | 1208 |
selector expression is simplified, but not the remaining arms; to |
1209 |
enable full simplification of case-expressions for datatype t, you may |
|
1210 |
remove t.weak_case_cong from the simpset, either globally (Delcongs |
|
1211 |
[thm"t.weak_case_cong"];) or locally (delcongs [...]). |
|
8603 | 1212 |
|
8848 | 1213 |
* HOL/recdef: the recursion equations generated by 'recdef' for |
1214 |
function 'f' are now called f.simps instead of f.rules; if all |
|
1215 |
termination conditions are proved automatically, these simplification |
|
1216 |
rules are added to the simpset, as in primrec; rules may be named |
|
1217 |
individually as well, resulting in a separate list of theorems for |
|
1218 |
each equation; |
|
1219 |
||
9489
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1220 |
* HOL/While is a new theory that provides a while-combinator. It |
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1221 |
permits the definition of tail-recursive functions without the |
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1222 |
provision of a termination measure. The latter is necessary once the |
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1223 |
invariant proof rule for while is applied. |
9457 | 1224 |
|
10003 | 1225 |
* HOL: new (overloaded) notation for the set of elements below/above |
1226 |
some element: {..u}, {..u(}, {l..}, {)l..}. See theory SetInterval. |
|
8925 | 1227 |
|
8848 | 1228 |
* HOL: theorems impI, allI, ballI bound as "strip"; |
1229 |
||
10003 | 1230 |
* HOL: new tactic induct_thm_tac: thm -> string -> int -> tactic |
9746 | 1231 |
induct_tac th "x1 ... xn" expects th to have a conclusion of the form |
1232 |
P v1 ... vn and abbreviates res_inst_tac [("v1","x1"),...,("vn","xn")] th; |
|
1233 |
||
10003 | 1234 |
* HOL/Real: "rabs" replaced by overloaded "abs" function; |
9737 | 1235 |
|
10003 | 1236 |
* HOL: theory Sexp now in HOL/Induct examples (it used to be part of |
1237 |
main HOL, but was unused); |
|
8626 | 1238 |
|
10003 | 1239 |
* HOL: fewer consts declared as global (e.g. have to refer to |
1240 |
"Lfp.lfp" instead of "lfp" internally; affects ML packages only); |
|
8887
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
1241 |
|
10003 | 1242 |
* HOL: tuned AST representation of nested pairs, avoiding bogus output |
1243 |
in case of overlap with user translations (e.g. judgements over |
|
1244 |
tuples); (note that the underlying logical represenation is still |
|
1245 |
bogus); |
|
9349
d43669fb423d
* tuned AST representation of nested pairs, avoiding bogus output in
wenzelm
parents:
9335
diff
changeset
|
1246 |
|
8412 | 1247 |
|
9542 | 1248 |
*** ZF *** |
1249 |
||
10003 | 1250 |
* ZF: simplification automatically cancels common terms in arithmetic |
1251 |
expressions over nat and int; |
|
9542 | 1252 |
|
10003 | 1253 |
* ZF: new treatment of nat to minimize type-checking: all operators |
1254 |
coerce their operands to a natural number using the function natify, |
|
1255 |
making the algebraic laws unconditional; |
|
9542 | 1256 |
|
10003 | 1257 |
* ZF: as above, for int: operators coerce their operands to an integer |
1258 |
using the function intify; |
|
9542 | 1259 |
|
10003 | 1260 |
* ZF: the integer library now contains many of the usual laws for the |
1261 |
orderings, including $<=, and monotonicity laws for $+ and $*; |
|
9542 | 1262 |
|
10003 | 1263 |
* ZF: new example ZF/ex/NatSum to demonstrate integer arithmetic |
1264 |
simplification; |
|
9388 | 1265 |
|
10003 | 1266 |
* FOL and ZF: AddIffs now available, giving theorems of the form P<->Q |
1267 |
to the simplifier and classical reasoner simultaneously; |
|
9388 | 1268 |
|
1269 |
||
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1270 |
*** General *** |
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1271 |
|
10003 | 1272 |
* Provers: blast_tac now handles actual object-logic rules as |
1273 |
assumptions; note that auto_tac uses blast_tac internally as well; |
|
1274 |
||
1275 |
* Provers: new functions rulify/rulify_no_asm: thm -> thm for turning |
|
1276 |
outer -->/All/Ball into ==>/!!; qed_spec_mp now uses rulify_no_asm; |
|
1277 |
||
9941
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1278 |
* Provers: delrules now handles destruct rules as well (no longer need |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1279 |
explicit make_elim); |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1280 |
|
10003 | 1281 |
* Provers: Blast_tac now warns of and ignores "weak elimination rules" e.g. |
1282 |
[| inj ?f; ?f ?x = ?f ?y; ?x = ?y ==> ?W |] ==> ?W |
|
1283 |
use instead the strong form, |
|
1284 |
[| inj ?f; ~ ?W ==> ?f ?x = ?f ?y; ?x = ?y ==> ?W |] ==> ?W |
|
1285 |
in HOL, FOL and ZF the function cla_make_elim will create such rules |
|
1286 |
from destruct-rules; |
|
9489
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1287 |
|
9709
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1288 |
* Provers: Simplifier.easy_setup provides a fast path to basic |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1289 |
Simplifier setup for new object-logics; |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1290 |
|
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1291 |
* Pure: AST translation rules no longer require constant head on LHS; |
9349
d43669fb423d
* tuned AST representation of nested pairs, avoiding bogus output in
wenzelm
parents:
9335
diff
changeset
|
1292 |
|
9709
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1293 |
* Pure: improved name spaces: ambiguous output is qualified; support |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1294 |
for hiding of names; |
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1295 |
|
10003 | 1296 |
* system: smart setup of canonical ML_HOME, ISABELLE_INTERFACE, and |
1297 |
XSYMBOL_HOME; no longer need to do manual configuration in most |
|
1298 |
situations; |
|
1299 |
||
9709
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1300 |
* system: compression of ML heaps images may now be controlled via -c |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1301 |
option of isabelle and isatool usedir (currently only observed by |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1302 |
Poly/ML); |
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1303 |
|
9981
01a0c4772c18
system: isatool installfonts may handle X-Symbol fonts as well;
wenzelm
parents:
9971
diff
changeset
|
1304 |
* system: isatool installfonts may handle X-Symbol fonts as well (very |
01a0c4772c18
system: isatool installfonts may handle X-Symbol fonts as well;
wenzelm
parents:
9971
diff
changeset
|
1305 |
useful for remote X11); |
01a0c4772c18
system: isatool installfonts may handle X-Symbol fonts as well;
wenzelm
parents:
9971
diff
changeset
|
1306 |
|
9709
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1307 |
* system: provide TAGS file for Isabelle sources; |
9052 | 1308 |
|
9288
06a55195741b
infix 'OF' is a version of 'MRS' with more appropriate argument order;
wenzelm
parents:
9239
diff
changeset
|
1309 |
* ML: infix 'OF' is a version of 'MRS' with more appropriate argument |
06a55195741b
infix 'OF' is a version of 'MRS' with more appropriate argument order;
wenzelm
parents:
9239
diff
changeset
|
1310 |
order; |
06a55195741b
infix 'OF' is a version of 'MRS' with more appropriate argument order;
wenzelm
parents:
9239
diff
changeset
|
1311 |
|
8994
803533fbb3ec
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
wenzelm
parents:
8991
diff
changeset
|
1312 |
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global |
803533fbb3ec
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
wenzelm
parents:
8991
diff
changeset
|
1313 |
timing flag supersedes proof_timing and Toplevel.trace; |
803533fbb3ec
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
wenzelm
parents:
8991
diff
changeset
|
1314 |
|
10003 | 1315 |
* ML: new combinators |>> and |>>> for incremental transformations |
1316 |
with secondary results (e.g. certain theory extensions): |
|
1317 |
||
9330
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1318 |
* ML: PureThy.add_defs gets additional argument to indicate potential |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1319 |
overloading (usually false); |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1320 |
|
10003 | 1321 |
* ML: PureThy.add_thms/add_axioms/add_defs now return theorems as |
1322 |
results; |
|
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1323 |
|
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1324 |
|
8015 | 1325 |
|
7986 | 1326 |
New in Isabelle99 (October 1999) |
1327 |
-------------------------------- |
|
4649 | 1328 |
|
5931 | 1329 |
*** Overview of INCOMPATIBILITIES (see below for more details) *** |
1330 |
||
6922 | 1331 |
* HOL: The THEN and ELSE parts of conditional expressions (if P then x else y) |
1332 |
are no longer simplified. (This allows the simplifier to unfold recursive |
|
1333 |
functional programs.) To restore the old behaviour, declare |
|
7215 | 1334 |
|
1335 |
Delcongs [if_weak_cong]; |
|
6922 | 1336 |
|
6269 | 1337 |
* HOL: Removed the obsolete syntax "Compl A"; use -A for set |
1338 |
complement; |
|
5931 | 1339 |
|
6269 | 1340 |
* HOL: the predicate "inj" is now defined by translation to "inj_on"; |
6174 | 1341 |
|
7847 | 1342 |
* HOL/datatype: mutual_induct_tac no longer exists -- |
1343 |
use induct_tac "x_1 ... x_n" instead of mutual_induct_tac ["x_1", ..., "x_n"] |
|
1344 |
||
6386
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
1345 |
* HOL/typedef: fixed type inference for representing set; type |
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
1346 |
arguments now have to occur explicitly on the rhs as type constraints; |
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
1347 |
|
6269 | 1348 |
* ZF: The con_defs part of an inductive definition may no longer refer |
1349 |
to constants declared in the same theory; |
|
6057 | 1350 |
|
6269 | 1351 |
* HOL, ZF: the function mk_cases, generated by the inductive |
1352 |
definition package, has lost an argument. To simplify its result, it |
|
1353 |
uses the default simpset instead of a supplied list of theorems. |
|
6141 | 1354 |
|
7215 | 1355 |
* HOL/List: the constructors of type list are now Nil and Cons; |
1356 |
||
7619 | 1357 |
* Simplifier: the type of the infix ML functions |
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1358 |
setSSolver addSSolver setSolver addSolver |
7619 | 1359 |
is now simpset * solver -> simpset where `solver' is a new abstract type |
1360 |
for packaging solvers. A solver is created via |
|
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1361 |
mk_solver: string -> (thm list -> int -> tactic) -> solver |
7619 | 1362 |
where the string argument is only a comment. |
6057 | 1363 |
|
7647
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
wenzelm
parents:
7619
diff
changeset
|
1364 |
|
6069 | 1365 |
*** Proof tools *** |
1366 |
||
6343 | 1367 |
* Provers/Arith/fast_lin_arith.ML contains a functor for creating a |
1368 |
decision procedure for linear arithmetic. Currently it is used for |
|
7593 | 1369 |
types `nat', `int', and `real' in HOL (see below); it can, should and |
1370 |
will be instantiated for other types and logics as well. |
|
6069 | 1371 |
|
7324 | 1372 |
* The simplifier now accepts rewrite rules with flexible heads, eg |
1373 |
hom ?f ==> ?f(?x+?y) = ?f ?x + ?f ?y |
|
1374 |
They are applied like any rule with a non-pattern lhs, i.e. by first-order |
|
1375 |
matching. |
|
6069 | 1376 |
|
7593 | 1377 |
|
6014 | 1378 |
*** General *** |
1379 |
||
7986 | 1380 |
* New Isabelle/Isar subsystem provides an alternative to traditional |
7215 | 1381 |
tactical theorem proving; together with the ProofGeneral/isar user |
1382 |
interface it offers an interactive environment for developing human |
|
1383 |
readable proof documents (Isar == Intelligible semi-automated |
|
7886
8fa551e22e52
the settings environment is now statically scoped;
wenzelm
parents:
7863
diff
changeset
|
1384 |
reasoning); for further information see isatool doc isar-ref, |
7986 | 1385 |
src/HOL/Isar_examples and http://isabelle.in.tum.de/Isar/ |
7886
8fa551e22e52
the settings environment is now statically scoped;
wenzelm
parents:
7863
diff
changeset
|
1386 |
|
9612 | 1387 |
* improved and simplified presentation of theories: better HTML markup |
1388 |
(including colors), graph views in several sizes; isatool usedir now |
|
1389 |
provides a proper interface for user theories (via -P option); actual |
|
1390 |
document preparation based on (PDF)LaTeX is available as well (for |
|
1391 |
new-style theories only); see isatool doc system for more information; |
|
7215 | 1392 |
|
7252 | 1393 |
* native support for Proof General, both for classic Isabelle and |
7986 | 1394 |
Isabelle/Isar; |
7215 | 1395 |
|
7791 | 1396 |
* ML function thm_deps visualizes dependencies of theorems and lemmas, |
1397 |
using the graph browser tool; |
|
1398 |
||
6751 | 1399 |
* Isabelle manuals now also available as PDF; |
1400 |
||
6449 | 1401 |
* theory loader rewritten from scratch (may not be fully |
d031cb5ea2fc
loadpath replaced;
|