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