author | berghofe |
Fri, 24 Jul 1998 13:28:21 +0200 | |
changeset 5186 | 439e292b5b87 |
parent 5160 | 1ff6679144b9 |
child 5207 | dd4f51adfff3 |
permissions | -rw-r--r-- |
2553 | 1 |
Isabelle NEWS -- history of user-visible changes |
2 |
================================================ |
|
3 |
||
4981 | 4 |
New in this Isabelle version |
5 |
---------------------------- |
|
4649 | 6 |
|
5127 | 7 |
*** Overview of INCOMPATIBILITIES (see below for more details) *** |
4842 | 8 |
|
5127 | 9 |
* HOL/inductive requires Inductive.thy as an ancestor; |
5140 | 10 |
* `inj_onto' is now called `inj_on' (which makes more sense) |
5127 | 11 |
|
5160 | 12 |
* HOL/Relation: renamed the relational operator r^-1 to 'converse' |
13 |
from 'inverse' (for compatibility with ZF and some literature) |
|
14 |
||
15 |
||
5127 | 16 |
*** Proof tools *** |
4880 | 17 |
|
5075 | 18 |
* Simplifier: Asm_full_simp_tac is now more aggressive. |
4880 | 19 |
1. It will sometimes reorient premises if that increases their power to |
20 |
simplify. |
|
21 |
2. It does no longer proceed strictly from left to right but may also |
|
22 |
rotate premises to achieve further simplification. |
|
23 |
For compatibility reasons there is now Asm_lr_simp_tac which is like the |
|
24 |
old Asm_full_simp_tac in that it does not rotate premises. |
|
25 |
||
5127 | 26 |
* Classical reasoner: wrapper mechanism for the classical reasoner now |
27 |
allows for selected deletion of wrappers, by introduction of names for |
|
28 |
wrapper functionals. This implies that addbefore, addSbefore, |
|
29 |
addaltern, and addSaltern now take a pair (name, tactic) as argument, |
|
30 |
and that adding two tactics with the same name overwrites the first |
|
31 |
one (emitting a warning). |
|
4824 | 32 |
type wrapper = (int -> tactic) -> (int -> tactic) |
4649 | 33 |
setWrapper, setSWrapper, compWrapper and compSWrapper are replaced by |
4824 | 34 |
addWrapper, addSWrapper: claset * (string * wrapper) -> claset |
35 |
delWrapper, delSWrapper: claset * string -> claset |
|
4649 | 36 |
getWrapper is renamed to appWrappers, getSWrapper to appSWrappers; |
37 |
||
5127 | 38 |
* HOL/split_all_tac is now much faster and fails if there is nothing |
39 |
to split. Existing (fragile) proofs may require adaption because the |
|
40 |
order and the names of the automatically generated variables have |
|
41 |
changed. split_all_tac has moved within claset() from unsafe wrappers |
|
42 |
to safe wrappers, which means that !!-bound variables are split much |
|
43 |
more aggressively, and safe_tac and clarify_tac now split such |
|
44 |
variables. If this splitting is not appropriate, use delSWrapper |
|
45 |
"split_all_tac". |
|
46 |
||
47 |
* HOL/Simplifier: |
|
48 |
||
49 |
- Rewrite rules for case distinctions can now be added permanently to |
|
50 |
the default simpset using Addsplits just like Addsimps. They can be |
|
51 |
removed via Delsplits just like Delsimps. Lower-case versions are |
|
52 |
also available. |
|
53 |
||
54 |
- The rule split_if is now part of the default simpset. This means |
|
55 |
that the simplifier will eliminate all occurrences of if-then-else |
|
56 |
in the conclusion of a goal. To prevent this, you can either remove |
|
57 |
split_if completely from the default simpset by `Delsplits |
|
58 |
[split_if]' or remove it in a specific call of the simplifier using |
|
59 |
`... delsplits [split_if]'. You can also add/delete other case |
|
60 |
splitting rules to/from the default simpset: every datatype |
|
61 |
generates suitable rules `split_t_case' and `split_t_case_asm' |
|
62 |
(where t is the name of the datatype). |
|
63 |
||
64 |
* Classical reasoner - Simplifier combination: new force_tac (and |
|
65 |
derivatives Force_tac, force) combines rewriting and classical |
|
66 |
reasoning (and whatever other tools) similarly to auto_tac, but is |
|
67 |
aimed to solve the given subgoal completely; |
|
68 |
||
69 |
||
70 |
*** General *** |
|
71 |
||
72 |
* new toplevel commands `Goal' and `Goalw' that improve upon `goal' |
|
73 |
and `goalw': the theory is no longer needed as an explicit argument - |
|
74 |
the current theory context is used; assumptions are no longer returned |
|
75 |
at the ML-level unless one of them starts with ==> or !!; it is |
|
76 |
recommended to convert to these new commands using isatool fixgoal (as |
|
77 |
usual, backup your sources first!); |
|
4842 | 78 |
|
5059 | 79 |
* new toplevel commands 'thm' and 'thms' for retrieving theorems from |
4842 | 80 |
the current theory context; |
4806 | 81 |
|
5127 | 82 |
* new theory section 'nonterminals' for purely syntactic types; |
4858 | 83 |
|
5127 | 84 |
* new theory section 'setup' for generic ML setup functions |
85 |
(e.g. package initialization); |
|
4869 | 86 |
|
5131 | 87 |
* the distribution now includes Isabelle icons: see |
88 |
lib/logo/isabelle-{small,tiny}.xpm; |
|
89 |
||
4711 | 90 |
|
4661 | 91 |
*** HOL *** |
92 |
||
5125 | 93 |
* reorganized the main HOL image: HOL/Integ and String loaded by |
94 |
default; theory Main includes everything; |
|
95 |
||
5127 | 96 |
* added option_map_eq_Some to the default simpset claset; |
97 |
||
98 |
* added disj_not1 = "(~P | Q) = (P --> Q)" to the default simpset; |
|
99 |
||
100 |
* many new identities for unions, intersections, set difference, etc.; |
|
101 |
||
102 |
* expand_if, expand_split, expand_sum_case and expand_nat_case are now |
|
103 |
called split_if, split_split, split_sum_case and split_nat_case (to go |
|
104 |
with add/delsplits); |
|
5125 | 105 |
|
5127 | 106 |
* HOL/Prod introduces simplification procedure unit_eq_proc rewriting |
107 |
(?x::unit) = (); this is made part of the default simpset, which COULD |
|
108 |
MAKE EXISTING PROOFS FAIL under rare circumstances (consider |
|
109 |
'Delsimprocs [unit_eq_proc];' as last resort); |
|
5125 | 110 |
|
5127 | 111 |
* HOL/record package: now includes concrete syntax for record terms |
112 |
(still lacks important theorems, like surjective pairing and split); |
|
113 |
||
114 |
* HOL/inductive package reorganized and improved: now supports mutual |
|
115 |
definitions such as |
|
5109 | 116 |
|
117 |
inductive EVEN ODD |
|
118 |
intrs |
|
119 |
null " 0 : EVEN" |
|
120 |
oddI "n : EVEN ==> Suc n : ODD" |
|
121 |
evenI "n : ODD ==> Suc n : EVEN" |
|
122 |
||
5127 | 123 |
new component "elims" of the structure created by the package contains |
124 |
an elimination rule for each of the recursive sets; requires |
|
125 |
Inductive.thy as an ancestor; component "mutual_induct" no longer |
|
126 |
exists - the induction rule is always contained in "induct"; inductive |
|
127 |
definitions now handle disjunctive premises correctly (also ZF); |
|
5085
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
wenzelm
parents:
5077
diff
changeset
|
128 |
|
5127 | 129 |
* HOL/recdef can now declare non-recursive functions, with {} supplied as |
130 |
the well-founded relation; |
|
4838 | 131 |
|
5127 | 132 |
* HOL/Update: new theory of function updates: |
133 |
f(a:=b) == %x. if x=a then b else f x |
|
134 |
may also be iterated as in f(a:=b,c:=d,...); |
|
5077
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5075
diff
changeset
|
135 |
|
5127 | 136 |
* HOL/Vimage: new theory for inverse image of a function, syntax f-``B; |
4899 | 137 |
|
5077
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5075
diff
changeset
|
138 |
* HOL/List: new function list_update written xs[i:=v] that updates the i-th |
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5075
diff
changeset
|
139 |
list position. May also be iterated as in xs[i:=a,j:=b,...]. |
4779 | 140 |
|
5127 | 141 |
* HOL/Arith: |
142 |
- removed 'pred' (predecessor) function; |
|
143 |
- generalized some theorems about n-1; |
|
144 |
- many new laws about "div" and "mod"; |
|
145 |
- new laws about greatest common divisors (see theory ex/Primes); |
|
4766 | 146 |
|
5127 | 147 |
* HOL/Relation: renamed the relational operator r^-1 "converse" |
4842 | 148 |
instead of "inverse"; |
4711 | 149 |
|
5145 | 150 |
* HOL/Set: added the predicate "disjoint A B" that stands for "A <= Compl B". |
151 |
This is much better than "A Int B = {}" for Fast/Blast_tac. |
|
152 |
||
5127 | 153 |
* directory HOL/Real: a construction of the reals using Dedekind cuts |
154 |
(not included by default); |
|
4835 | 155 |
|
5127 | 156 |
* directory HOL/UNITY: Chandy and Misra's UNITY formalism; |
4711 | 157 |
|
5142 | 158 |
* calling (stac rew i) now fails if "rew" has no effect on the goal |
159 |
[previously, this check worked only if the rewrite rule was unconditional] |
|
160 |
||
5002
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
161 |
|
4879
58656c6a3551
"let" is no longer restricted to FOL terms and allows any logical terms
paulson
parents:
4869
diff
changeset
|
162 |
*** ZF *** |
58656c6a3551
"let" is no longer restricted to FOL terms and allows any logical terms
paulson
parents:
4869
diff
changeset
|
163 |
|
5160 | 164 |
* theory Main includes everything; |
165 |
||
166 |
* ZF/Update: new theory of function updates |
|
167 |
with default rewrite rule f(x:=y) ` z = if(z=x, y, f`z) |
|
168 |
may also be iterated as in f(a:=b,c:=d,...); |
|
169 |
||
4879
58656c6a3551
"let" is no longer restricted to FOL terms and allows any logical terms
paulson
parents:
4869
diff
changeset
|
170 |
* in let x=t in u(x), neither t nor u(x) has to be an FOL term. |
4649 | 171 |
|
5142 | 172 |
* calling (stac rew i) now fails if "rew" has no effect on the goal |
173 |
[previously, this check worked only if the rewrite rule was unconditional] |
|
174 |
||
5160 | 175 |
* case_tac provided for compatibility with HOL |
176 |
(like the old excluded_middle_tac, but with subgoals swapped) |
|
177 |
||
4842 | 178 |
|
5127 | 179 |
*** Internal programming interfaces *** |
5002
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
180 |
|
5008 | 181 |
* improved the theory data mechanism to support encapsulation (data |
182 |
kind name replaced by private Object.kind, acting as authorization |
|
183 |
key); new type-safe user interface via functor TheoryDataFun; |
|
5002
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
184 |
|
5085
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
wenzelm
parents:
5077
diff
changeset
|
185 |
* module Pure/Syntax now offers quote / antiquote translation |
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
wenzelm
parents:
5077
diff
changeset
|
186 |
functions (useful for Hoare logic etc. with implicit dependencies); |
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
wenzelm
parents:
5077
diff
changeset
|
187 |
|
5127 | 188 |
* Simplifier now offers conversions (asm_)(full_)rewrite: simpset -> |
189 |
cterm -> thm; |
|
190 |
||
5128
66c4d554e93f
several new basic modules made available for general use;
wenzelm
parents:
5127
diff
changeset
|
191 |
* Pure: several new basic modules made available for general use, see |
66c4d554e93f
several new basic modules made available for general use;
wenzelm
parents:
5127
diff
changeset
|
192 |
also src/Pure/README; |
66c4d554e93f
several new basic modules made available for general use;
wenzelm
parents:
5127
diff
changeset
|
193 |
|
5142 | 194 |
* new tactical CHANGED_GOAL for checking that a tactic modifies a subgoal |
195 |
||
5002
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
196 |
|
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
197 |
|
4410 | 198 |
New in Isabelle98 (January 1998) |
199 |
-------------------------------- |
|
200 |
||
201 |
*** Overview of INCOMPATIBILITIES (see below for more details) *** |
|
202 |
||
203 |
* changed lexical syntax of terms / types: dots made part of long |
|
204 |
identifiers, e.g. "%x.x" no longer possible, should be "%x. x"; |
|
205 |
||
206 |
* simpset (and claset) reference variable replaced by functions |
|
207 |
simpset / simpset_ref; |
|
208 |
||
209 |
* no longer supports theory aliases (via merge) and non-trivial |
|
210 |
implicit merge of thms' signatures; |
|
211 |
||
212 |
* most internal names of constants changed due to qualified names; |
|
213 |
||
214 |
* changed Pure/Sequence interface (see Pure/seq.ML); |
|
215 |
||
3454 | 216 |
|
3715 | 217 |
*** General Changes *** |
218 |
||
4174 | 219 |
* hierachically structured name spaces (for consts, types, axms, thms |
3943 | 220 |
etc.); new lexical class 'longid' (e.g. Foo.bar.x) may render much of |
4108 | 221 |
old input syntactically incorrect (e.g. "%x.x"); COMPATIBILITY: |
222 |
isatool fixdots ensures space after dots (e.g. "%x. x"); set |
|
4174 | 223 |
long_names for fully qualified output names; NOTE: ML programs |
224 |
(special tactics, packages etc.) referring to internal names may have |
|
225 |
to be adapted to cope with fully qualified names; in case of severe |
|
226 |
backward campatibility problems try setting 'global_names' at compile |
|
227 |
time to have enrything declared within a flat name space; one may also |
|
228 |
fine tune name declarations in theories via the 'global' and 'local' |
|
229 |
section; |
|
4108 | 230 |
|
231 |
* reimplemented the implicit simpset and claset using the new anytype |
|
232 |
data filed in signatures; references simpset:simpset ref etc. are |
|
233 |
replaced by functions simpset:unit->simpset and |
|
234 |
simpset_ref:unit->simpset ref; COMPATIBILITY: use isatool fixclasimp |
|
235 |
to patch your ML files accordingly; |
|
3856 | 236 |
|
3857 | 237 |
* HTML output now includes theory graph data for display with Java |
238 |
applet or isatool browser; data generated automatically via isatool |
|
3901 | 239 |
usedir (see -i option, ISABELLE_USEDIR_OPTIONS); |
3857 | 240 |
|
3856 | 241 |
* defs may now be conditional; improved rewrite_goals_tac to handle |
242 |
conditional equations; |
|
243 |
||
4174 | 244 |
* defs now admits additional type arguments, using TYPE('a) syntax; |
245 |
||
3901 | 246 |
* theory aliases via merge (e.g. M=A+B+C) no longer supported, always |
247 |
creates a new theory node; implicit merge of thms' signatures is |
|
4112 | 248 |
restricted to 'trivial' ones; COMPATIBILITY: one may have to use |
3901 | 249 |
transfer:theory->thm->thm in (rare) cases; |
250 |
||
3968
ec138de716d9
improved handling of draft signatures / theories; draft thms (and
wenzelm
parents:
3964
diff
changeset
|
251 |
* improved handling of draft signatures / theories; draft thms (and |
ec138de716d9
improved handling of draft signatures / theories; draft thms (and
wenzelm
parents:
3964
diff
changeset
|
252 |
ctyps, cterms) are automatically promoted to real ones; |
ec138de716d9
improved handling of draft signatures / theories; draft thms (and
wenzelm
parents:
3964
diff
changeset
|
253 |
|
3901 | 254 |
* slightly changed interfaces for oracles: admit many per theory, named |
255 |
(e.g. oracle foo = mlfun), additional name argument for invoke_oracle; |
|
256 |
||
257 |
* print_goals: optional output of const types (set show_consts and |
|
258 |
show_types); |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3846
diff
changeset
|
259 |
|
4388 | 260 |
* improved output of warnings (###) and errors (***); |
3697
c5833dfcc2cc
Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
wenzelm
parents:
3671
diff
changeset
|
261 |
|
4178
e64ff1c1bc70
subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents:
4174
diff
changeset
|
262 |
* subgoal_tac displays a warning if the new subgoal has type variables; |
e64ff1c1bc70
subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents:
4174
diff
changeset
|
263 |
|
3715 | 264 |
* removed old README and Makefiles; |
3697
c5833dfcc2cc
Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
wenzelm
parents:
3671
diff
changeset
|
265 |
|
3856 | 266 |
* replaced print_goals_ref hook by print_current_goals_fn and result_error_fn; |
3670
9fea3562f8c7
replaced print_goals_ref hook by print_current_goals_fn and
wenzelm
parents:
3658
diff
changeset
|
267 |
|
3715 | 268 |
* removed obsolete init_pps and init_database; |
269 |
||
270 |
* deleted the obsolete tactical STATE, which was declared by |
|
271 |
fun STATE tacfun st = tacfun st st; |
|
272 |
||
4388 | 273 |
* cd and use now support path variables, e.g. $ISABELLE_HOME, or ~ |
274 |
(which abbreviates $HOME); |
|
4269 | 275 |
|
276 |
* changed Pure/Sequence interface (see Pure/seq.ML); COMPATIBILITY: |
|
277 |
use isatool fixseq to adapt your ML programs (this works for fully |
|
278 |
qualified references to the Sequence structure only!); |
|
279 |
||
4381 | 280 |
* use_thy no longer requires writable current directory; it always |
281 |
reloads .ML *and* .thy file, if either one is out of date; |
|
4269 | 282 |
|
3715 | 283 |
|
284 |
*** Classical Reasoner *** |
|
285 |
||
3744 | 286 |
* Clarify_tac, clarify_tac, clarify_step_tac, Clarify_step_tac: new |
287 |
tactics that use classical reasoning to simplify a subgoal without |
|
288 |
splitting it into several subgoals; |
|
3715 | 289 |
|
3719 | 290 |
* Safe_tac: like safe_tac but uses the default claset; |
291 |
||
3715 | 292 |
|
293 |
*** Simplifier *** |
|
294 |
||
295 |
* added simplification meta rules: |
|
296 |
(asm_)(full_)simplify: simpset -> thm -> thm; |
|
297 |
||
298 |
* simplifier.ML no longer part of Pure -- has to be loaded by object |
|
299 |
logics (again); |
|
300 |
||
301 |
* added prems argument to simplification procedures; |
|
302 |
||
4325 | 303 |
* HOL, FOL, ZF: added infix function `addsplits': |
304 |
instead of `<simpset> setloop (split_tac <thms>)' |
|
305 |
you can simply write `<simpset> addsplits <thms>' |
|
306 |
||
3715 | 307 |
|
308 |
*** Syntax *** |
|
309 |
||
4174 | 310 |
* TYPE('a) syntax for type reflection terms; |
311 |
||
3985 | 312 |
* no longer handles consts with name "" -- declare as 'syntax' instead; |
3856 | 313 |
|
314 |
* pretty printer: changed order of mixfix annotation preference (again!); |
|
3846 | 315 |
|
3715 | 316 |
* Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories; |
317 |
||
318 |
||
319 |
*** HOL *** |
|
320 |
||
4207 | 321 |
* HOL: there is a new splitter `split_asm_tac' that can be used e.g. |
4189 | 322 |
with `addloop' of the simplifier to faciliate case splitting in premises. |
323 |
||
4035 | 324 |
* HOL/TLA: Stephan Merz's formalization of Lamport's Temporal Logic of Actions; |
3985 | 325 |
|
326 |
* HOL/Auth: new protocol proofs including some for the Internet |
|
4035 | 327 |
protocol TLS; |
3985 | 328 |
|
4125 | 329 |
* HOL/Map: new theory of `maps' a la VDM; |
3982 | 330 |
|
4335 | 331 |
* HOL/simplifier: simplification procedures nat_cancel_sums for |
332 |
cancelling out common nat summands from =, <, <= (in)equalities, or |
|
333 |
differences; simplification procedures nat_cancel_factor for |
|
334 |
cancelling common factor from =, <, <= (in)equalities over natural |
|
4373 | 335 |
sums; nat_cancel contains both kinds of procedures, it is installed by |
336 |
default in Arith.thy -- this COULD MAKE EXISTING PROOFS FAIL; |
|
4335 | 337 |
|
3580 | 338 |
* HOL/simplifier: terms of the form |
4325 | 339 |
`? x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x)' (or t=x) |
3580 | 340 |
are rewritten to |
4035 | 341 |
`P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t)', |
342 |
and those of the form |
|
4325 | 343 |
`! x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x) --> R(x)' (or t=x) |
4035 | 344 |
are rewritten to |
345 |
`P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t) --> R(t)', |
|
346 |
||
347 |
* HOL/datatype |
|
348 |
Each datatype `t' now comes with a theorem `split_t_case' of the form |
|
3580 | 349 |
|
4035 | 350 |
P(t_case f1 ... fn x) = |
351 |
( (!y1 ... ym1. x = C1 y1 ... ym1 --> P(f1 y1 ... ym1)) & |
|
352 |
... |
|
4189 | 353 |
(!y1 ... ymn. x = Cn y1 ... ymn --> P(f1 y1 ... ymn)) |
4035 | 354 |
) |
355 |
||
4930
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4915
diff
changeset
|
356 |
and a theorem `split_t_case_asm' of the form |
4189 | 357 |
|
358 |
P(t_case f1 ... fn x) = |
|
359 |
~( (? y1 ... ym1. x = C1 y1 ... ym1 & ~P(f1 y1 ... ym1)) | |
|
360 |
... |
|
361 |
(? y1 ... ymn. x = Cn y1 ... ymn & ~P(f1 y1 ... ymn)) |
|
362 |
) |
|
4930
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4915
diff
changeset
|
363 |
which can be added to a simpset via `addsplits'. The existing theorems |
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4915
diff
changeset
|
364 |
expand_list_case and expand_option_case have been renamed to |
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4915
diff
changeset
|
365 |
split_list_case and split_option_case. |
4189 | 366 |
|
4361 | 367 |
* HOL/Arithmetic: |
368 |
- `pred n' is automatically converted to `n-1'. |
|
369 |
Users are strongly encouraged not to use `pred' any longer, |
|
370 |
because it will disappear altogether at some point. |
|
371 |
- Users are strongly encouraged to write "0 < n" rather than |
|
372 |
"n ~= 0". Theorems and proof tools have been modified towards this |
|
373 |
`standard'. |
|
4357 | 374 |
|
4502 | 375 |
* HOL/Lists: |
376 |
the function "set_of_list" has been renamed "set" (and its theorems too); |
|
377 |
the function "nth" now takes its arguments in the reverse order and |
|
378 |
has acquired the infix notation "!" as in "xs!n". |
|
3570 | 379 |
|
4154 | 380 |
* HOL/Set: UNIV is now a constant and is no longer translated to Compl{}; |
381 |
||
382 |
* HOL/Set: The operator (UN x.B x) now abbreviates (UN x:UNIV. B x) and its |
|
383 |
specialist theorems (like UN1_I) are gone. Similarly for (INT x.B x); |
|
384 |
||
4575 | 385 |
* HOL/record: extensible records with schematic structural subtyping |
386 |
(single inheritance); EXPERIMENTAL version demonstrating the encoding, |
|
387 |
still lacks various theorems and concrete record syntax; |
|
388 |
||
4125 | 389 |
|
3715 | 390 |
*** HOLCF *** |
3535 | 391 |
|
4125 | 392 |
* removed "axioms" and "generated by" sections; |
393 |
||
4123 | 394 |
* replaced "ops" section by extended "consts" section, which is capable of |
4125 | 395 |
handling the continuous function space "->" directly; |
396 |
||
397 |
* domain package: |
|
398 |
. proves theorems immediately and stores them in the theory, |
|
399 |
. creates hierachical name space, |
|
400 |
. now uses normal mixfix annotations (instead of cinfix...), |
|
401 |
. minor changes to some names and values (for consistency), |
|
402 |
. e.g. cases -> casedist, dists_eq -> dist_eqs, [take_lemma] -> take_lemmas, |
|
403 |
. separator between mutual domain defs: changed "," to "and", |
|
404 |
. improved handling of sort constraints; now they have to |
|
405 |
appear on the left-hand side of the equations only; |
|
4123 | 406 |
|
407 |
* fixed LAM <x,y,zs>.b syntax; |
|
3567 | 408 |
|
3744 | 409 |
* added extended adm_tac to simplifier in HOLCF -- can now discharge |
410 |
adm (%x. P (t x)), where P is chainfinite and t continuous; |
|
3579 | 411 |
|
412 |
||
3719 | 413 |
*** FOL and ZF *** |
414 |
||
4207 | 415 |
* FOL: there is a new splitter `split_asm_tac' that can be used e.g. |
4189 | 416 |
with `addloop' of the simplifier to faciliate case splitting in premises. |
417 |
||
3744 | 418 |
* qed_spec_mp, qed_goal_spec_mp, qed_goalw_spec_mp are available, as |
419 |
in HOL, they strip ALL and --> from proved theorems; |
|
420 |
||
3719 | 421 |
|
3579 | 422 |
|
3006 | 423 |
New in Isabelle94-8 (May 1997) |
424 |
------------------------------ |
|
2654 | 425 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
426 |
*** General Changes *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
427 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
428 |
* new utilities to build / run / maintain Isabelle etc. (in parts |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
429 |
still somewhat experimental); old Makefiles etc. still functional; |
2971 | 430 |
|
3205 | 431 |
* new 'Isabelle System Manual'; |
432 |
||
2825 | 433 |
* INSTALL text, together with ./configure and ./build scripts; |
2773 | 434 |
|
3006 | 435 |
* reimplemented type inference for greater efficiency, better error |
436 |
messages and clean internal interface; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
437 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
438 |
* prlim command for dealing with lots of subgoals (an easier way of |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
439 |
setting goals_limit); |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
440 |
|
3006 | 441 |
|
442 |
*** Syntax *** |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
443 |
|
3116 | 444 |
* supports alternative (named) syntax tables (parser and pretty |
445 |
printer); internal interface is provided by add_modesyntax(_i); |
|
446 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
447 |
* Pure, FOL, ZF, HOL, HOLCF now support symbolic input and output; to |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
448 |
be used in conjunction with the Isabelle symbol font; uses the |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
449 |
"symbols" syntax table; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
450 |
|
2705 | 451 |
* added token_translation interface (may translate name tokens in |
2756 | 452 |
arbitrary ways, dependent on their type (free, bound, tfree, ...) and |
3116 | 453 |
the current print_mode); IMPORTANT: user print translation functions |
454 |
are responsible for marking newly introduced bounds |
|
455 |
(Syntax.mark_boundT); |
|
2705 | 456 |
|
2730 | 457 |
* token translations for modes "xterm" and "xterm_color" that display |
3006 | 458 |
names in bold, underline etc. or colors (which requires a color |
459 |
version of xterm); |
|
2730 | 460 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
461 |
* infixes may now be declared with names independent of their syntax; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
462 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
463 |
* added typed_print_translation (like print_translation, but may |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
464 |
access type of constant); |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
465 |
|
3006 | 466 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
467 |
*** Classical Reasoner *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
468 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
469 |
Blast_tac: a new tactic! It is often more powerful than fast_tac, but has |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
470 |
some limitations. Blast_tac... |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
471 |
+ ignores addss, addbefore, addafter; this restriction is intrinsic |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
472 |
+ ignores elimination rules that don't have the correct format |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
473 |
(the conclusion MUST be a formula variable) |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
474 |
+ ignores types, which can make HOL proofs fail |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
475 |
+ rules must not require higher-order unification, e.g. apply_type in ZF |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
476 |
[message "Function Var's argument not a bound variable" relates to this] |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
477 |
+ its proof strategy is more general but can actually be slower |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
478 |
|
3107 | 479 |
* substitution with equality assumptions no longer permutes other |
480 |
assumptions; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
481 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
482 |
* minor changes in semantics of addafter (now called addaltern); renamed |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
483 |
setwrapper to setWrapper and compwrapper to compWrapper; added safe wrapper |
3107 | 484 |
(and access functions for it); |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
485 |
|
3317 | 486 |
* improved combination of classical reasoner and simplifier: |
487 |
+ functions for handling clasimpsets |
|
488 |
+ improvement of addss: now the simplifier is called _after_ the |
|
489 |
safe steps. |
|
490 |
+ safe variant of addss called addSss: uses safe simplifications |
|
491 |
_during_ the safe steps. It is more complete as it allows multiple |
|
492 |
instantiations of unknowns (e.g. with slow_tac). |
|
3006 | 493 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
494 |
*** Simplifier *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
495 |
|
3006 | 496 |
* added interface for simplification procedures (functions that |
497 |
produce *proven* rewrite rules on the fly, depending on current |
|
498 |
redex); |
|
499 |
||
500 |
* ordering on terms as parameter (used for ordered rewriting); |
|
501 |
||
3107 | 502 |
* new functions delcongs, deleqcongs, and Delcongs. richer rep_ss; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
503 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
504 |
* the solver is now split into a safe and an unsafe part. |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
505 |
This should be invisible for the normal user, except that the |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
506 |
functions setsolver and addsolver have been renamed to setSolver and |
3107 | 507 |
addSolver; added safe_asm_full_simp_tac; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
508 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
509 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
510 |
*** HOL *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
511 |
|
3042 | 512 |
* a generic induction tactic `induct_tac' which works for all datatypes and |
3107 | 513 |
also for type `nat'; |
3042 | 514 |
|
3316 | 515 |
* a generic case distinction tactic `exhaust_tac' which works for all |
516 |
datatypes and also for type `nat'; |
|
517 |
||
518 |
* each datatype comes with a function `size'; |
|
519 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
520 |
* patterns in case expressions allow tuple patterns as arguments to |
3107 | 521 |
constructors, for example `case x of [] => ... | (x,y,z)#ps => ...'; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
522 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
523 |
* primrec now also works with type nat; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
524 |
|
3338 | 525 |
* recdef: a new declaration form, allows general recursive functions to be |
526 |
defined in theory files. See HOL/ex/Fib, HOL/ex/Primes, HOL/Subst/Unify. |
|
527 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
528 |
* the constant for negation has been renamed from "not" to "Not" to |
3107 | 529 |
harmonize with FOL, ZF, LK, etc.; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
530 |
|
3107 | 531 |
* HOL/ex/LFilter theory of a corecursive "filter" functional for |
532 |
infinite lists; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
533 |
|
3227 | 534 |
* HOL/Modelcheck demonstrates invocation of model checker oracle; |
535 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
536 |
* HOL/ex/Ring.thy declares cring_simp, which solves equational |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
537 |
problems in commutative rings, using axiomatic type classes for + and *; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
538 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
539 |
* more examples in HOL/MiniML and HOL/Auth; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
540 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
541 |
* more default rewrite rules for quantifiers, union/intersection; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
542 |
|
3321 | 543 |
* a new constant `arbitrary == @x.False'; |
544 |
||
3107 | 545 |
* HOLCF/IOA replaces old HOL/IOA; |
546 |
||
2653
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
547 |
* HOLCF changes: derived all rules and arities |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
548 |
+ axiomatic type classes instead of classes |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
549 |
+ typedef instead of faking type definitions |
2747 | 550 |
+ eliminated the internal constants less_fun, less_cfun, UU_fun, UU_cfun etc. |
2730 | 551 |
+ new axclasses cpo, chfin, flat with flat < chfin < pcpo < cpo < po |
2653
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
552 |
+ eliminated the types void, one, tr |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
553 |
+ use unit lift and bool lift (with translations) instead of one and tr |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
554 |
+ eliminated blift from Lift3.thy (use Def instead of blift) |
3107 | 555 |
all eliminated rules are derived as theorems --> no visible changes ; |
2649 | 556 |
|
3006 | 557 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
558 |
*** ZF *** |
2553 | 559 |
|
2865 | 560 |
* ZF now has Fast_tac, Simp_tac and Auto_tac. Union_iff is a now a default |
561 |
rewrite rule; this may affect some proofs. eq_cs is gone but can be put back |
|
562 |
as ZF_cs addSIs [equalityI]; |
|
2553 | 563 |
|
2554 | 564 |
|
2732 | 565 |
|
2553 | 566 |
New in Isabelle94-7 (November 96) |
567 |
--------------------------------- |
|
568 |
||
569 |
* allowing negative levels (as offsets) in prlev and choplev; |
|
570 |
||
2554 | 571 |
* super-linear speedup for large simplifications; |
572 |
||
573 |
* FOL, ZF and HOL now use miniscoping: rewriting pushes |
|
574 |
quantifications in as far as possible (COULD MAKE EXISTING PROOFS |
|
575 |
FAIL); can suppress it using the command Delsimps (ex_simps @ |
|
576 |
all_simps); De Morgan laws are also now included, by default; |
|
577 |
||
578 |
* improved printing of ==> : ~: |
|
579 |
||
580 |
* new object-logic "Sequents" adds linear logic, while replacing LK |
|
581 |
and Modal (thanks to Sara Kalvala); |
|
582 |
||
583 |
* HOL/Auth: correctness proofs for authentication protocols; |
|
584 |
||
585 |
* HOL: new auto_tac combines rewriting and classical reasoning (many |
|
586 |
examples on HOL/Auth); |
|
587 |
||
588 |
* HOL: new command AddIffs for declaring theorems of the form P=Q to |
|
589 |
the rewriter and classical reasoner simultaneously; |
|
590 |
||
591 |
* function uresult no longer returns theorems in "standard" format; |
|
592 |
regain previous version by: val uresult = standard o uresult; |
|
593 |
||
594 |
||
595 |
||
596 |
New in Isabelle94-6 |
|
597 |
------------------- |
|
598 |
||
599 |
* oracles -- these establish an interface between Isabelle and trusted |
|
600 |
external reasoners, which may deliver results as theorems; |
|
601 |
||
602 |
* proof objects (in particular record all uses of oracles); |
|
603 |
||
604 |
* Simp_tac, Fast_tac, etc. that refer to implicit simpset / claset; |
|
605 |
||
606 |
* "constdefs" section in theory files; |
|
607 |
||
608 |
* "primrec" section (HOL) no longer requires names; |
|
609 |
||
610 |
* internal type "tactic" now simply "thm -> thm Sequence.seq"; |
|
611 |
||
612 |
||
613 |
||
614 |
New in Isabelle94-5 |
|
615 |
------------------- |
|
616 |
||
617 |
* reduced space requirements; |
|
618 |
||
619 |
* automatic HTML generation from theories; |
|
620 |
||
621 |
* theory files no longer require "..." (quotes) around most types; |
|
622 |
||
623 |
* new examples, including two proofs of the Church-Rosser theorem; |
|
624 |
||
625 |
* non-curried (1994) version of HOL is no longer distributed; |
|
626 |
||
2553 | 627 |
|
2557 | 628 |
|
629 |
New in Isabelle94-4 |
|
630 |
------------------- |
|
631 |
||
2747 | 632 |
* greatly reduced space requirements; |
2557 | 633 |
|
634 |
* theory files (.thy) no longer require \...\ escapes at line breaks; |
|
635 |
||
636 |
* searchable theorem database (see the section "Retrieving theorems" on |
|
637 |
page 8 of the Reference Manual); |
|
638 |
||
639 |
* new examples, including Grabczewski's monumental case study of the |
|
640 |
Axiom of Choice; |
|
641 |
||
642 |
* The previous version of HOL renamed to Old_HOL; |
|
643 |
||
644 |
* The new version of HOL (previously called CHOL) uses a curried syntax |
|
645 |
for functions. Application looks like f a b instead of f(a,b); |
|
646 |
||
647 |
* Mutually recursive inductive definitions finally work in HOL; |
|
648 |
||
649 |
* In ZF, pattern-matching on tuples is now available in all abstractions and |
|
650 |
translates to the operator "split"; |
|
651 |
||
652 |
||
653 |
||
654 |
New in Isabelle94-3 |
|
655 |
------------------- |
|
656 |
||
657 |
* new infix operator, addss, allowing the classical reasoner to |
|
658 |
perform simplification at each step of its search. Example: |
|
659 |
fast_tac (cs addss ss) |
|
660 |
||
661 |
* a new logic, CHOL, the same as HOL, but with a curried syntax |
|
662 |
for functions. Application looks like f a b instead of f(a,b). Also pairs |
|
663 |
look like (a,b) instead of <a,b>; |
|
664 |
||
665 |
* PLEASE NOTE: CHOL will eventually replace HOL! |
|
666 |
||
667 |
* In CHOL, pattern-matching on tuples is now available in all abstractions. |
|
668 |
It translates to the operator "split". A new theory of integers is available; |
|
669 |
||
670 |
* In ZF, integer numerals now denote two's-complement binary integers. |
|
671 |
Arithmetic operations can be performed by rewriting. See ZF/ex/Bin.ML; |
|
672 |
||
673 |
* Many new examples: I/O automata, Church-Rosser theorem, equivalents |
|
674 |
of the Axiom of Choice; |
|
675 |
||
676 |
||
677 |
||
678 |
New in Isabelle94-2 |
|
679 |
------------------- |
|
680 |
||
681 |
* Significantly faster resolution; |
|
682 |
||
683 |
* the different sections in a .thy file can now be mixed and repeated |
|
684 |
freely; |
|
685 |
||
686 |
* Database of theorems for FOL, HOL and ZF. New |
|
687 |
commands including qed, qed_goal and bind_thm store theorems in the database. |
|
688 |
||
689 |
* Simple database queries: return a named theorem (get_thm) or all theorems of |
|
690 |
a given theory (thms_of), or find out what theory a theorem was proved in |
|
691 |
(theory_of_thm); |
|
692 |
||
693 |
* Bugs fixed in the inductive definition and datatype packages; |
|
694 |
||
695 |
* The classical reasoner provides deepen_tac and depth_tac, making FOL_dup_cs |
|
696 |
and HOL_dup_cs obsolete; |
|
697 |
||
698 |
* Syntactic ambiguities caused by the new treatment of syntax in Isabelle94-1 |
|
699 |
have been removed; |
|
700 |
||
701 |
* Simpler definition of function space in ZF; |
|
702 |
||
703 |
* new results about cardinal and ordinal arithmetic in ZF; |
|
704 |
||
705 |
* 'subtype' facility in HOL for introducing new types as subsets of existing |
|
706 |
types; |
|
707 |
||
708 |
||
2553 | 709 |
$Id$ |