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