author | paulson |
Tue, 21 Oct 1997 10:52:25 +0200 | |
changeset 3962 | 69c76eb80273 |
parent 3943 | b6e0c90f3bf4 |
child 3964 | f95d2fb6fac8 |
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 |
||
3901 | 10 |
* hierachically structured name spaces (for consts, types, axms, |
3943 | 11 |
etc.); new lexical class 'longid' (e.g. Foo.bar.x) may render much of |
12 |
old input syntactically incorrect (e.g. "%x.x"); isatool fixdots |
|
13 |
ensures space after dots (e.g. "%x. x"); set long_names for fully |
|
14 |
qualified output names; NOTE: in case of severe problems with backward |
|
15 |
campatibility try settin 'global_names' at compile time to disable |
|
16 |
qualified names for theories; may also fine tune theories via 'global' |
|
17 |
and 'local' section; |
|
3856 | 18 |
|
3857 | 19 |
* HTML output now includes theory graph data for display with Java |
20 |
applet or isatool browser; data generated automatically via isatool |
|
3901 | 21 |
usedir (see -i option, ISABELLE_USEDIR_OPTIONS); |
3857 | 22 |
|
3856 | 23 |
* defs may now be conditional; improved rewrite_goals_tac to handle |
24 |
conditional equations; |
|
25 |
||
3901 | 26 |
* theory aliases via merge (e.g. M=A+B+C) no longer supported, always |
27 |
creates a new theory node; implicit merge of thms' signatures is |
|
28 |
restricted to 'trivial' ones, thus one may have to use |
|
29 |
transfer:theory->thm->thm in (rare) cases; |
|
30 |
||
31 |
* slightly changed interfaces for oracles: admit many per theory, named |
|
32 |
(e.g. oracle foo = mlfun), additional name argument for invoke_oracle; |
|
33 |
||
34 |
* print_goals: optional output of const types (set show_consts and |
|
35 |
show_types); |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3846
diff
changeset
|
36 |
|
3744 | 37 |
* improved output of warnings (###) / errors (***); |
3697
c5833dfcc2cc
Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
wenzelm
parents:
3671
diff
changeset
|
38 |
|
3715 | 39 |
* removed old README and Makefiles; |
3697
c5833dfcc2cc
Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
wenzelm
parents:
3671
diff
changeset
|
40 |
|
3856 | 41 |
* 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
|
42 |
|
3715 | 43 |
* removed obsolete init_pps and init_database; |
44 |
||
45 |
* deleted the obsolete tactical STATE, which was declared by |
|
46 |
fun STATE tacfun st = tacfun st st; |
|
47 |
||
48 |
||
49 |
*** Classical Reasoner *** |
|
50 |
||
3744 | 51 |
* Clarify_tac, clarify_tac, clarify_step_tac, Clarify_step_tac: new |
52 |
tactics that use classical reasoning to simplify a subgoal without |
|
53 |
splitting it into several subgoals; |
|
3715 | 54 |
|
3719 | 55 |
* Safe_tac: like safe_tac but uses the default claset; |
56 |
||
3715 | 57 |
|
58 |
*** Simplifier *** |
|
59 |
||
60 |
* added simplification meta rules: |
|
61 |
(asm_)(full_)simplify: simpset -> thm -> thm; |
|
62 |
||
63 |
* simplifier.ML no longer part of Pure -- has to be loaded by object |
|
64 |
logics (again); |
|
65 |
||
66 |
* added prems argument to simplification procedures; |
|
67 |
||
68 |
||
69 |
*** Syntax *** |
|
70 |
||
3856 | 71 |
* no longer handles consts with name "" -- use syntax instead; |
72 |
||
73 |
* pretty printer: changed order of mixfix annotation preference (again!); |
|
3846 | 74 |
|
3715 | 75 |
* Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories; |
76 |
||
77 |
||
78 |
*** HOL *** |
|
79 |
||
3930 | 80 |
* HOL/simplifier: added infix function `addsplits': |
81 |
instead of `<simpset> setloop (split_tac <thms>)' |
|
82 |
you can simply write `<simpset> adsplits <thms>' |
|
83 |
||
3580 | 84 |
* HOL/simplifier: terms of the form |
85 |
`? x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x)' (or t=x) |
|
86 |
are rewritten to |
|
87 |
`P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t)' |
|
88 |
||
3744 | 89 |
* HOL/Lists: the function "set_of_list" has been renamed "set" (and |
90 |
its theorems too); |
|
3570 | 91 |
|
3856 | 92 |
* HOL/Auth: new protocol proofs including some for the Internet protocol TLS |
93 |
||
94 |
* HOL/TLA: Stephan Merz's formalization of Lamport's Temporal Logic of Actions |
|
95 |
||
3454 | 96 |
|
3715 | 97 |
*** HOLCF *** |
3535 | 98 |
|
3715 | 99 |
* HOLCF: fixed LAM <x,y,zs>.b syntax (may break some unusual cases); |
3567 | 100 |
|
3744 | 101 |
* added extended adm_tac to simplifier in HOLCF -- can now discharge |
102 |
adm (%x. P (t x)), where P is chainfinite and t continuous; |
|
3579 | 103 |
|
104 |
||
3719 | 105 |
*** FOL and ZF *** |
106 |
||
3744 | 107 |
* qed_spec_mp, qed_goal_spec_mp, qed_goalw_spec_mp are available, as |
108 |
in HOL, they strip ALL and --> from proved theorems; |
|
109 |
||
3719 | 110 |
|
3579 | 111 |
|
3006 | 112 |
New in Isabelle94-8 (May 1997) |
113 |
------------------------------ |
|
2654 | 114 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
115 |
*** General Changes *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
116 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
117 |
* 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
|
118 |
still somewhat experimental); old Makefiles etc. still functional; |
2971 | 119 |
|
3205 | 120 |
* new 'Isabelle System Manual'; |
121 |
||
2825 | 122 |
* INSTALL text, together with ./configure and ./build scripts; |
2773 | 123 |
|
3006 | 124 |
* reimplemented type inference for greater efficiency, better error |
125 |
messages and clean internal interface; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
126 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
127 |
* 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
|
128 |
setting goals_limit); |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
129 |
|
3006 | 130 |
|
131 |
*** Syntax *** |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
132 |
|
3116 | 133 |
* supports alternative (named) syntax tables (parser and pretty |
134 |
printer); internal interface is provided by add_modesyntax(_i); |
|
135 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
136 |
* 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
|
137 |
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
|
138 |
"symbols" syntax table; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
139 |
|
2705 | 140 |
* added token_translation interface (may translate name tokens in |
2756 | 141 |
arbitrary ways, dependent on their type (free, bound, tfree, ...) and |
3116 | 142 |
the current print_mode); IMPORTANT: user print translation functions |
143 |
are responsible for marking newly introduced bounds |
|
144 |
(Syntax.mark_boundT); |
|
2705 | 145 |
|
2730 | 146 |
* token translations for modes "xterm" and "xterm_color" that display |
3006 | 147 |
names in bold, underline etc. or colors (which requires a color |
148 |
version of xterm); |
|
2730 | 149 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
150 |
* 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
|
151 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
152 |
* added typed_print_translation (like print_translation, but may |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
153 |
access type of constant); |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
154 |
|
3006 | 155 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
156 |
*** Classical Reasoner *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
157 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
158 |
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
|
159 |
some limitations. Blast_tac... |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
160 |
+ ignores addss, addbefore, addafter; this restriction is intrinsic |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
161 |
+ 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
|
162 |
(the conclusion MUST be a formula variable) |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
163 |
+ ignores types, which can make HOL proofs fail |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
164 |
+ 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
|
165 |
[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
|
166 |
+ 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
|
167 |
|
3107 | 168 |
* substitution with equality assumptions no longer permutes other |
169 |
assumptions; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
170 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
171 |
* 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
|
172 |
setwrapper to setWrapper and compwrapper to compWrapper; added safe wrapper |
3107 | 173 |
(and access functions for it); |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
174 |
|
3317 | 175 |
* improved combination of classical reasoner and simplifier: |
176 |
+ functions for handling clasimpsets |
|
177 |
+ improvement of addss: now the simplifier is called _after_ the |
|
178 |
safe steps. |
|
179 |
+ safe variant of addss called addSss: uses safe simplifications |
|
180 |
_during_ the safe steps. It is more complete as it allows multiple |
|
181 |
instantiations of unknowns (e.g. with slow_tac). |
|
3006 | 182 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
183 |
*** Simplifier *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
184 |
|
3006 | 185 |
* added interface for simplification procedures (functions that |
186 |
produce *proven* rewrite rules on the fly, depending on current |
|
187 |
redex); |
|
188 |
||
189 |
* ordering on terms as parameter (used for ordered rewriting); |
|
190 |
||
3107 | 191 |
* 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
|
192 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
193 |
* 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
|
194 |
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
|
195 |
functions setsolver and addsolver have been renamed to setSolver and |
3107 | 196 |
addSolver; added safe_asm_full_simp_tac; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
197 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
198 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
199 |
*** HOL *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
200 |
|
3042 | 201 |
* a generic induction tactic `induct_tac' which works for all datatypes and |
3107 | 202 |
also for type `nat'; |
3042 | 203 |
|
3316 | 204 |
* a generic case distinction tactic `exhaust_tac' which works for all |
205 |
datatypes and also for type `nat'; |
|
206 |
||
207 |
* each datatype comes with a function `size'; |
|
208 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
209 |
* patterns in case expressions allow tuple patterns as arguments to |
3107 | 210 |
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
|
211 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
212 |
* primrec now also works with type nat; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
213 |
|
3338 | 214 |
* recdef: a new declaration form, allows general recursive functions to be |
215 |
defined in theory files. See HOL/ex/Fib, HOL/ex/Primes, HOL/Subst/Unify. |
|
216 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
217 |
* the constant for negation has been renamed from "not" to "Not" to |
3107 | 218 |
harmonize with FOL, ZF, LK, etc.; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
219 |
|
3107 | 220 |
* HOL/ex/LFilter theory of a corecursive "filter" functional for |
221 |
infinite lists; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
222 |
|
3227 | 223 |
* HOL/Modelcheck demonstrates invocation of model checker oracle; |
224 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
225 |
* 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
|
226 |
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
|
227 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
228 |
* more examples in HOL/MiniML and HOL/Auth; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
229 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
230 |
* more default rewrite rules for quantifiers, union/intersection; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
231 |
|
3321 | 232 |
* a new constant `arbitrary == @x.False'; |
233 |
||
3107 | 234 |
* HOLCF/IOA replaces old HOL/IOA; |
235 |
||
2653
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
236 |
* HOLCF changes: derived all rules and arities |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
237 |
+ axiomatic type classes instead of classes |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
238 |
+ typedef instead of faking type definitions |
2747 | 239 |
+ eliminated the internal constants less_fun, less_cfun, UU_fun, UU_cfun etc. |
2730 | 240 |
+ 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
|
241 |
+ eliminated the types void, one, tr |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
242 |
+ 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
|
243 |
+ eliminated blift from Lift3.thy (use Def instead of blift) |
3107 | 244 |
all eliminated rules are derived as theorems --> no visible changes ; |
2649 | 245 |
|
3006 | 246 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
247 |
*** ZF *** |
2553 | 248 |
|
2865 | 249 |
* ZF now has Fast_tac, Simp_tac and Auto_tac. Union_iff is a now a default |
250 |
rewrite rule; this may affect some proofs. eq_cs is gone but can be put back |
|
251 |
as ZF_cs addSIs [equalityI]; |
|
2553 | 252 |
|
2554 | 253 |
|
2732 | 254 |
|
2553 | 255 |
New in Isabelle94-7 (November 96) |
256 |
--------------------------------- |
|
257 |
||
258 |
* allowing negative levels (as offsets) in prlev and choplev; |
|
259 |
||
2554 | 260 |
* super-linear speedup for large simplifications; |
261 |
||
262 |
* FOL, ZF and HOL now use miniscoping: rewriting pushes |
|
263 |
quantifications in as far as possible (COULD MAKE EXISTING PROOFS |
|
264 |
FAIL); can suppress it using the command Delsimps (ex_simps @ |
|
265 |
all_simps); De Morgan laws are also now included, by default; |
|
266 |
||
267 |
* improved printing of ==> : ~: |
|
268 |
||
269 |
* new object-logic "Sequents" adds linear logic, while replacing LK |
|
270 |
and Modal (thanks to Sara Kalvala); |
|
271 |
||
272 |
* HOL/Auth: correctness proofs for authentication protocols; |
|
273 |
||
274 |
* HOL: new auto_tac combines rewriting and classical reasoning (many |
|
275 |
examples on HOL/Auth); |
|
276 |
||
277 |
* HOL: new command AddIffs for declaring theorems of the form P=Q to |
|
278 |
the rewriter and classical reasoner simultaneously; |
|
279 |
||
280 |
* function uresult no longer returns theorems in "standard" format; |
|
281 |
regain previous version by: val uresult = standard o uresult; |
|
282 |
||
283 |
||
284 |
||
285 |
New in Isabelle94-6 |
|
286 |
------------------- |
|
287 |
||
288 |
* oracles -- these establish an interface between Isabelle and trusted |
|
289 |
external reasoners, which may deliver results as theorems; |
|
290 |
||
291 |
* proof objects (in particular record all uses of oracles); |
|
292 |
||
293 |
* Simp_tac, Fast_tac, etc. that refer to implicit simpset / claset; |
|
294 |
||
295 |
* "constdefs" section in theory files; |
|
296 |
||
297 |
* "primrec" section (HOL) no longer requires names; |
|
298 |
||
299 |
* internal type "tactic" now simply "thm -> thm Sequence.seq"; |
|
300 |
||
301 |
||
302 |
||
303 |
New in Isabelle94-5 |
|
304 |
------------------- |
|
305 |
||
306 |
* reduced space requirements; |
|
307 |
||
308 |
* automatic HTML generation from theories; |
|
309 |
||
310 |
* theory files no longer require "..." (quotes) around most types; |
|
311 |
||
312 |
* new examples, including two proofs of the Church-Rosser theorem; |
|
313 |
||
314 |
* non-curried (1994) version of HOL is no longer distributed; |
|
315 |
||
2553 | 316 |
|
2557 | 317 |
|
318 |
New in Isabelle94-4 |
|
319 |
------------------- |
|
320 |
||
2747 | 321 |
* greatly reduced space requirements; |
2557 | 322 |
|
323 |
* theory files (.thy) no longer require \...\ escapes at line breaks; |
|
324 |
||
325 |
* searchable theorem database (see the section "Retrieving theorems" on |
|
326 |
page 8 of the Reference Manual); |
|
327 |
||
328 |
* new examples, including Grabczewski's monumental case study of the |
|
329 |
Axiom of Choice; |
|
330 |
||
331 |
* The previous version of HOL renamed to Old_HOL; |
|
332 |
||
333 |
* The new version of HOL (previously called CHOL) uses a curried syntax |
|
334 |
for functions. Application looks like f a b instead of f(a,b); |
|
335 |
||
336 |
* Mutually recursive inductive definitions finally work in HOL; |
|
337 |
||
338 |
* In ZF, pattern-matching on tuples is now available in all abstractions and |
|
339 |
translates to the operator "split"; |
|
340 |
||
341 |
||
342 |
||
343 |
New in Isabelle94-3 |
|
344 |
------------------- |
|
345 |
||
346 |
* new infix operator, addss, allowing the classical reasoner to |
|
347 |
perform simplification at each step of its search. Example: |
|
348 |
fast_tac (cs addss ss) |
|
349 |
||
350 |
* a new logic, CHOL, the same as HOL, but with a curried syntax |
|
351 |
for functions. Application looks like f a b instead of f(a,b). Also pairs |
|
352 |
look like (a,b) instead of <a,b>; |
|
353 |
||
354 |
* PLEASE NOTE: CHOL will eventually replace HOL! |
|
355 |
||
356 |
* In CHOL, pattern-matching on tuples is now available in all abstractions. |
|
357 |
It translates to the operator "split". A new theory of integers is available; |
|
358 |
||
359 |
* In ZF, integer numerals now denote two's-complement binary integers. |
|
360 |
Arithmetic operations can be performed by rewriting. See ZF/ex/Bin.ML; |
|
361 |
||
362 |
* Many new examples: I/O automata, Church-Rosser theorem, equivalents |
|
363 |
of the Axiom of Choice; |
|
364 |
||
365 |
||
366 |
||
367 |
New in Isabelle94-2 |
|
368 |
------------------- |
|
369 |
||
370 |
* Significantly faster resolution; |
|
371 |
||
372 |
* the different sections in a .thy file can now be mixed and repeated |
|
373 |
freely; |
|
374 |
||
375 |
* Database of theorems for FOL, HOL and ZF. New |
|
376 |
commands including qed, qed_goal and bind_thm store theorems in the database. |
|
377 |
||
378 |
* Simple database queries: return a named theorem (get_thm) or all theorems of |
|
379 |
a given theory (thms_of), or find out what theory a theorem was proved in |
|
380 |
(theory_of_thm); |
|
381 |
||
382 |
* Bugs fixed in the inductive definition and datatype packages; |
|
383 |
||
384 |
* The classical reasoner provides deepen_tac and depth_tac, making FOL_dup_cs |
|
385 |
and HOL_dup_cs obsolete; |
|
386 |
||
387 |
* Syntactic ambiguities caused by the new treatment of syntax in Isabelle94-1 |
|
388 |
have been removed; |
|
389 |
||
390 |
* Simpler definition of function space in ZF; |
|
391 |
||
392 |
* new results about cardinal and ordinal arithmetic in ZF; |
|
393 |
||
394 |
* 'subtype' facility in HOL for introducing new types as subsets of existing |
|
395 |
types; |
|
396 |
||
397 |
||
2553 | 398 |
$Id$ |