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