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