author | wenzelm |
Thu, 15 May 1997 15:47:19 +0200 | |
changeset 3205 | 816a1f9fd620 |
parent 3116 | b890bae4273e |
child 3227 | 9190438471ea |
permissions | -rw-r--r-- |
2553 | 1 |
|
2 |
Isabelle NEWS -- history of user-visible changes |
|
3 |
================================================ |
|
4 |
||
3006 | 5 |
New in Isabelle94-8 (May 1997) |
6 |
------------------------------ |
|
2654 | 7 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
8 |
*** General Changes *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
9 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
10 |
* 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
|
11 |
still somewhat experimental); old Makefiles etc. still functional; |
2971 | 12 |
|
3205 | 13 |
* new 'Isabelle System Manual'; |
14 |
||
2825 | 15 |
* INSTALL text, together with ./configure and ./build scripts; |
2773 | 16 |
|
3006 | 17 |
* reimplemented type inference for greater efficiency, better error |
18 |
messages and clean internal interface; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
19 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
20 |
* 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
|
21 |
setting goals_limit); |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
22 |
|
3006 | 23 |
|
24 |
*** Syntax *** |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
25 |
|
3116 | 26 |
* supports alternative (named) syntax tables (parser and pretty |
27 |
printer); internal interface is provided by add_modesyntax(_i); |
|
28 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
29 |
* 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
|
30 |
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
|
31 |
"symbols" syntax table; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
32 |
|
2705 | 33 |
* added token_translation interface (may translate name tokens in |
2756 | 34 |
arbitrary ways, dependent on their type (free, bound, tfree, ...) and |
3116 | 35 |
the current print_mode); IMPORTANT: user print translation functions |
36 |
are responsible for marking newly introduced bounds |
|
37 |
(Syntax.mark_boundT); |
|
2705 | 38 |
|
2730 | 39 |
* token translations for modes "xterm" and "xterm_color" that display |
3006 | 40 |
names in bold, underline etc. or colors (which requires a color |
41 |
version of xterm); |
|
2730 | 42 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
43 |
* 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
|
44 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
45 |
* added typed_print_translation (like print_translation, but may |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
46 |
access type of constant); |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
47 |
|
3006 | 48 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
49 |
*** Classical Reasoner *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
50 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
51 |
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
|
52 |
some limitations. Blast_tac... |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
53 |
+ ignores addss, addbefore, addafter; this restriction is intrinsic |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
54 |
+ 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
|
55 |
(the conclusion MUST be a formula variable) |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
56 |
+ ignores types, which can make HOL proofs fail |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
57 |
+ 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
|
58 |
[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
|
59 |
+ 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
|
60 |
|
3107 | 61 |
* substitution with equality assumptions no longer permutes other |
62 |
assumptions; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
63 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
64 |
* 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
|
65 |
setwrapper to setWrapper and compwrapper to compWrapper; added safe wrapper |
3107 | 66 |
(and access functions for it); |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
67 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
68 |
* improved combination of classical reasoner and simplifier: new |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
69 |
addss, auto_tac, functions for handling clasimpsets, ... Now, the |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
70 |
simplification is safe (therefore moved to safe_step_tac) and thus |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
71 |
more complete, as multiple instantiation of unknowns (with slow_tac). |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
72 |
COULD MAKE EXISTING PROOFS FAIL; in case of problems with |
3107 | 73 |
old proofs, use unsafe_addss and unsafe_auto_tac; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
74 |
|
3006 | 75 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
76 |
*** Simplifier *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
77 |
|
3006 | 78 |
* added interface for simplification procedures (functions that |
79 |
produce *proven* rewrite rules on the fly, depending on current |
|
80 |
redex); |
|
81 |
||
82 |
* ordering on terms as parameter (used for ordered rewriting); |
|
83 |
||
3107 | 84 |
* 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
|
85 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
86 |
* 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
|
87 |
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
|
88 |
functions setsolver and addsolver have been renamed to setSolver and |
3107 | 89 |
addSolver; added safe_asm_full_simp_tac; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
90 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
91 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
92 |
*** HOL *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
93 |
|
3042 | 94 |
* a generic induction tactic `induct_tac' which works for all datatypes and |
3107 | 95 |
also for type `nat'; |
3042 | 96 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
97 |
* patterns in case expressions allow tuple patterns as arguments to |
3107 | 98 |
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
|
99 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
100 |
* primrec now also works with type nat; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
101 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
102 |
* the constant for negation has been renamed from "not" to "Not" to |
3107 | 103 |
harmonize with FOL, ZF, LK, etc.; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
104 |
|
3107 | 105 |
* HOL/ex/LFilter theory of a corecursive "filter" functional for |
106 |
infinite lists; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
107 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
108 |
* 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
|
109 |
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
|
110 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
111 |
* more examples in HOL/MiniML and HOL/Auth; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
112 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
113 |
* more default rewrite rules for quantifiers, union/intersection; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
114 |
|
3107 | 115 |
* HOLCF/IOA replaces old HOL/IOA; |
116 |
||
2653
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
117 |
* HOLCF changes: derived all rules and arities |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
118 |
+ axiomatic type classes instead of classes |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
119 |
+ typedef instead of faking type definitions |
2747 | 120 |
+ eliminated the internal constants less_fun, less_cfun, UU_fun, UU_cfun etc. |
2730 | 121 |
+ 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
|
122 |
+ eliminated the types void, one, tr |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
123 |
+ 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
|
124 |
+ eliminated blift from Lift3.thy (use Def instead of blift) |
3107 | 125 |
all eliminated rules are derived as theorems --> no visible changes ; |
2649 | 126 |
|
3006 | 127 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
128 |
*** ZF *** |
2553 | 129 |
|
2865 | 130 |
* ZF now has Fast_tac, Simp_tac and Auto_tac. Union_iff is a now a default |
131 |
rewrite rule; this may affect some proofs. eq_cs is gone but can be put back |
|
132 |
as ZF_cs addSIs [equalityI]; |
|
2553 | 133 |
|
2554 | 134 |
|
2732 | 135 |
|
2553 | 136 |
New in Isabelle94-7 (November 96) |
137 |
--------------------------------- |
|
138 |
||
139 |
* allowing negative levels (as offsets) in prlev and choplev; |
|
140 |
||
2554 | 141 |
* super-linear speedup for large simplifications; |
142 |
||
143 |
* FOL, ZF and HOL now use miniscoping: rewriting pushes |
|
144 |
quantifications in as far as possible (COULD MAKE EXISTING PROOFS |
|
145 |
FAIL); can suppress it using the command Delsimps (ex_simps @ |
|
146 |
all_simps); De Morgan laws are also now included, by default; |
|
147 |
||
148 |
* improved printing of ==> : ~: |
|
149 |
||
150 |
* new object-logic "Sequents" adds linear logic, while replacing LK |
|
151 |
and Modal (thanks to Sara Kalvala); |
|
152 |
||
153 |
* HOL/Auth: correctness proofs for authentication protocols; |
|
154 |
||
155 |
* HOL: new auto_tac combines rewriting and classical reasoning (many |
|
156 |
examples on HOL/Auth); |
|
157 |
||
158 |
* HOL: new command AddIffs for declaring theorems of the form P=Q to |
|
159 |
the rewriter and classical reasoner simultaneously; |
|
160 |
||
161 |
* function uresult no longer returns theorems in "standard" format; |
|
162 |
regain previous version by: val uresult = standard o uresult; |
|
163 |
||
164 |
||
165 |
||
166 |
New in Isabelle94-6 |
|
167 |
------------------- |
|
168 |
||
169 |
* oracles -- these establish an interface between Isabelle and trusted |
|
170 |
external reasoners, which may deliver results as theorems; |
|
171 |
||
172 |
* proof objects (in particular record all uses of oracles); |
|
173 |
||
174 |
* Simp_tac, Fast_tac, etc. that refer to implicit simpset / claset; |
|
175 |
||
176 |
* "constdefs" section in theory files; |
|
177 |
||
178 |
* "primrec" section (HOL) no longer requires names; |
|
179 |
||
180 |
* internal type "tactic" now simply "thm -> thm Sequence.seq"; |
|
181 |
||
182 |
||
183 |
||
184 |
New in Isabelle94-5 |
|
185 |
------------------- |
|
186 |
||
187 |
* reduced space requirements; |
|
188 |
||
189 |
* automatic HTML generation from theories; |
|
190 |
||
191 |
* theory files no longer require "..." (quotes) around most types; |
|
192 |
||
193 |
* new examples, including two proofs of the Church-Rosser theorem; |
|
194 |
||
195 |
* non-curried (1994) version of HOL is no longer distributed; |
|
196 |
||
2553 | 197 |
|
2557 | 198 |
|
199 |
New in Isabelle94-4 |
|
200 |
------------------- |
|
201 |
||
2747 | 202 |
* greatly reduced space requirements; |
2557 | 203 |
|
204 |
* theory files (.thy) no longer require \...\ escapes at line breaks; |
|
205 |
||
206 |
* searchable theorem database (see the section "Retrieving theorems" on |
|
207 |
page 8 of the Reference Manual); |
|
208 |
||
209 |
* new examples, including Grabczewski's monumental case study of the |
|
210 |
Axiom of Choice; |
|
211 |
||
212 |
* The previous version of HOL renamed to Old_HOL; |
|
213 |
||
214 |
* The new version of HOL (previously called CHOL) uses a curried syntax |
|
215 |
for functions. Application looks like f a b instead of f(a,b); |
|
216 |
||
217 |
* Mutually recursive inductive definitions finally work in HOL; |
|
218 |
||
219 |
* In ZF, pattern-matching on tuples is now available in all abstractions and |
|
220 |
translates to the operator "split"; |
|
221 |
||
222 |
||
223 |
||
224 |
New in Isabelle94-3 |
|
225 |
------------------- |
|
226 |
||
227 |
* new infix operator, addss, allowing the classical reasoner to |
|
228 |
perform simplification at each step of its search. Example: |
|
229 |
fast_tac (cs addss ss) |
|
230 |
||
231 |
* a new logic, CHOL, the same as HOL, but with a curried syntax |
|
232 |
for functions. Application looks like f a b instead of f(a,b). Also pairs |
|
233 |
look like (a,b) instead of <a,b>; |
|
234 |
||
235 |
* PLEASE NOTE: CHOL will eventually replace HOL! |
|
236 |
||
237 |
* In CHOL, pattern-matching on tuples is now available in all abstractions. |
|
238 |
It translates to the operator "split". A new theory of integers is available; |
|
239 |
||
240 |
* In ZF, integer numerals now denote two's-complement binary integers. |
|
241 |
Arithmetic operations can be performed by rewriting. See ZF/ex/Bin.ML; |
|
242 |
||
243 |
* Many new examples: I/O automata, Church-Rosser theorem, equivalents |
|
244 |
of the Axiom of Choice; |
|
245 |
||
246 |
||
247 |
||
248 |
New in Isabelle94-2 |
|
249 |
------------------- |
|
250 |
||
251 |
* Significantly faster resolution; |
|
252 |
||
253 |
* the different sections in a .thy file can now be mixed and repeated |
|
254 |
freely; |
|
255 |
||
256 |
* Database of theorems for FOL, HOL and ZF. New |
|
257 |
commands including qed, qed_goal and bind_thm store theorems in the database. |
|
258 |
||
259 |
* Simple database queries: return a named theorem (get_thm) or all theorems of |
|
260 |
a given theory (thms_of), or find out what theory a theorem was proved in |
|
261 |
(theory_of_thm); |
|
262 |
||
263 |
* Bugs fixed in the inductive definition and datatype packages; |
|
264 |
||
265 |
* The classical reasoner provides deepen_tac and depth_tac, making FOL_dup_cs |
|
266 |
and HOL_dup_cs obsolete; |
|
267 |
||
268 |
* Syntactic ambiguities caused by the new treatment of syntax in Isabelle94-1 |
|
269 |
have been removed; |
|
270 |
||
271 |
* Simpler definition of function space in ZF; |
|
272 |
||
273 |
* new results about cardinal and ordinal arithmetic in ZF; |
|
274 |
||
275 |
* 'subtype' facility in HOL for introducing new types as subsets of existing |
|
276 |
types; |
|
277 |
||
278 |
||
2553 | 279 |
$Id$ |