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