author | wenzelm |
Mon, 17 Mar 1997 12:25:22 +0100 | |
changeset 2795 | d136fff43370 |
parent 2773 | 36fdd908a26c |
child 2825 | a94dba60d5f2 |
permissions | -rw-r--r-- |
2553 | 1 |
|
2 |
Isabelle NEWS -- history of user-visible changes |
|
3 |
================================================ |
|
4 |
||
2730 | 5 |
New in Isabelle94-8 (April 1997) |
2731 | 6 |
-------------------------------- |
2654 | 7 |
|
2773 | 8 |
* INSTALLATION text, together with ./configure and ./build scripts; |
9 |
||
2705 | 10 |
* added token_translation interface (may translate name tokens in |
2756 | 11 |
arbitrary ways, dependent on their type (free, bound, tfree, ...) and |
12 |
the current print_mode); |
|
2705 | 13 |
|
2730 | 14 |
* token translations for modes "xterm" and "xterm_color" that display |
15 |
names in bold, underline etc. or colors; |
|
16 |
||
2653
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
17 |
* HOLCF changes: derived all rules and arities |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
18 |
+ axiomatic type classes instead of classes |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
19 |
+ typedef instead of faking type definitions |
2747 | 20 |
+ eliminated the internal constants less_fun, less_cfun, UU_fun, UU_cfun etc. |
2730 | 21 |
+ 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
|
22 |
+ eliminated the types void, one, tr |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
23 |
+ 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
|
24 |
+ eliminated blift from Lift3.thy (use Def instead of blift) |
2747 | 25 |
all eliminated rules are derived as theorems --> no visible changes |
2649 | 26 |
|
2639 | 27 |
* simplifier: new functions delcongs, deleqcongs, and Delcongs. richer rep_ss. |
28 |
||
29 |
* simplifier: the solver is now split into a safe and an unsafe part. |
|
2732 | 30 |
This should be invisible for the normal user, except that the |
31 |
functions setsolver and addsolver have been renamed to setSolver and |
|
32 |
addSolver. added safe_asm_full_simp_tac. |
|
2639 | 33 |
|
2747 | 34 |
* classical reasoner: substitution with equality assumptions no longer |
35 |
permutes other assumptions. |
|
36 |
||
37 |
* classical reasoner: minor changes in semantics of addafter (now called |
|
38 |
addaltern); renamed setwrapper to setWrapper and addwrapper to addWrapper; |
|
2732 | 39 |
added safe wrapper (and access functions for it) |
2639 | 40 |
|
2732 | 41 |
* improved combination of classical reasoner and simplifier: new |
42 |
addss, auto_tac, functions for handling clasimpsets, ... Now, the |
|
43 |
simplification is safe (therefore moved to safe_step_tac) and thus |
|
2747 | 44 |
more complete, as multiple instantiation of unknowns (with slow_tac). |
45 |
COULD MAKE EXISTING PROOFS FAIL; in case of problems with |
|
46 |
old proofs, use unsafe_addss and unsafe_auto_tac |
|
2553 | 47 |
|
2556 | 48 |
* HOL: primrec now also works with type nat; |
2553 | 49 |
|
2726 | 50 |
* HOL: the constant for negation has been renamed from "not" to "Not" to |
51 |
harmonize with FOL, ZF, LK, etc. |
|
52 |
||
2553 | 53 |
* new utilities to build / run / maintain Isabelle etc. (in parts |
2555 | 54 |
still somewhat experimental); old Makefiles etc. still functional; |
2553 | 55 |
|
56 |
* simplifier: termless order as parameter; added interface for |
|
57 |
simplification procedures (functions that produce *proven* rewrite |
|
58 |
rules on the fly, depending on current redex); |
|
59 |
||
60 |
* now supports alternative (named) syntax tables (parser and pretty |
|
61 |
printer); internal interface is provided by add_modesyntax(_i); |
|
62 |
||
63 |
* Pure, FOL, ZF, HOL, HOLCF now support symbolic input and output; to |
|
2747 | 64 |
be used in conjunction with the Isabelle symbol font; uses the |
2553 | 65 |
"symbols" syntax table; |
66 |
||
67 |
* infixes may now be declared with names independent of their syntax; |
|
68 |
||
2555 | 69 |
* added typed_print_translation (like print_translation, but may |
70 |
access type of constant); |
|
2553 | 71 |
|
72 |
* prlim command for dealing with lots of subgoals (an easier way of |
|
73 |
setting goals_limit); |
|
74 |
||
75 |
* HOL/ex/Ring.thy declares cring_simp, which solves equational |
|
76 |
problems in commutative rings, using axiomatic type classes for + and *; |
|
77 |
||
78 |
* ZF now has Fast_tac, Simp_tac and Auto_tac. WARNING: don't use |
|
79 |
ZF.thy anymore! Contains fewer defs and could make a bogus simpset. |
|
80 |
Beware of Union_iff. eq_cs is gone, can be put back as ZF_cs addSIs |
|
81 |
[equalityI]; |
|
82 |
||
83 |
* more examples in HOL/MiniML and HOL/Auth; |
|
84 |
||
85 |
* more default rewrite rules in HOL for quantifiers, union/intersection; |
|
86 |
||
2556 | 87 |
* the NEWS file; |
2553 | 88 |
|
2554 | 89 |
|
2732 | 90 |
|
2553 | 91 |
New in Isabelle94-7 (November 96) |
92 |
--------------------------------- |
|
93 |
||
94 |
* allowing negative levels (as offsets) in prlev and choplev; |
|
95 |
||
2554 | 96 |
* super-linear speedup for large simplifications; |
97 |
||
98 |
* FOL, ZF and HOL now use miniscoping: rewriting pushes |
|
99 |
quantifications in as far as possible (COULD MAKE EXISTING PROOFS |
|
100 |
FAIL); can suppress it using the command Delsimps (ex_simps @ |
|
101 |
all_simps); De Morgan laws are also now included, by default; |
|
102 |
||
103 |
* improved printing of ==> : ~: |
|
104 |
||
105 |
* new object-logic "Sequents" adds linear logic, while replacing LK |
|
106 |
and Modal (thanks to Sara Kalvala); |
|
107 |
||
108 |
* HOL/Auth: correctness proofs for authentication protocols; |
|
109 |
||
110 |
* HOL: new auto_tac combines rewriting and classical reasoning (many |
|
111 |
examples on HOL/Auth); |
|
112 |
||
113 |
* HOL: new command AddIffs for declaring theorems of the form P=Q to |
|
114 |
the rewriter and classical reasoner simultaneously; |
|
115 |
||
116 |
* function uresult no longer returns theorems in "standard" format; |
|
117 |
regain previous version by: val uresult = standard o uresult; |
|
118 |
||
119 |
||
120 |
||
121 |
New in Isabelle94-6 |
|
122 |
------------------- |
|
123 |
||
124 |
* oracles -- these establish an interface between Isabelle and trusted |
|
125 |
external reasoners, which may deliver results as theorems; |
|
126 |
||
127 |
* proof objects (in particular record all uses of oracles); |
|
128 |
||
129 |
* Simp_tac, Fast_tac, etc. that refer to implicit simpset / claset; |
|
130 |
||
131 |
* "constdefs" section in theory files; |
|
132 |
||
133 |
* "primrec" section (HOL) no longer requires names; |
|
134 |
||
135 |
* internal type "tactic" now simply "thm -> thm Sequence.seq"; |
|
136 |
||
137 |
||
138 |
||
139 |
New in Isabelle94-5 |
|
140 |
------------------- |
|
141 |
||
142 |
* reduced space requirements; |
|
143 |
||
144 |
* automatic HTML generation from theories; |
|
145 |
||
146 |
* theory files no longer require "..." (quotes) around most types; |
|
147 |
||
148 |
* new examples, including two proofs of the Church-Rosser theorem; |
|
149 |
||
150 |
* non-curried (1994) version of HOL is no longer distributed; |
|
151 |
||
2553 | 152 |
|
2557 | 153 |
|
154 |
New in Isabelle94-4 |
|
155 |
------------------- |
|
156 |
||
2747 | 157 |
* greatly reduced space requirements; |
2557 | 158 |
|
159 |
* theory files (.thy) no longer require \...\ escapes at line breaks; |
|
160 |
||
161 |
* searchable theorem database (see the section "Retrieving theorems" on |
|
162 |
page 8 of the Reference Manual); |
|
163 |
||
164 |
* new examples, including Grabczewski's monumental case study of the |
|
165 |
Axiom of Choice; |
|
166 |
||
167 |
* The previous version of HOL renamed to Old_HOL; |
|
168 |
||
169 |
* The new version of HOL (previously called CHOL) uses a curried syntax |
|
170 |
for functions. Application looks like f a b instead of f(a,b); |
|
171 |
||
172 |
* Mutually recursive inductive definitions finally work in HOL; |
|
173 |
||
174 |
* In ZF, pattern-matching on tuples is now available in all abstractions and |
|
175 |
translates to the operator "split"; |
|
176 |
||
177 |
||
178 |
||
179 |
New in Isabelle94-3 |
|
180 |
------------------- |
|
181 |
||
182 |
* new infix operator, addss, allowing the classical reasoner to |
|
183 |
perform simplification at each step of its search. Example: |
|
184 |
fast_tac (cs addss ss) |
|
185 |
||
186 |
* a new logic, CHOL, the same as HOL, but with a curried syntax |
|
187 |
for functions. Application looks like f a b instead of f(a,b). Also pairs |
|
188 |
look like (a,b) instead of <a,b>; |
|
189 |
||
190 |
* PLEASE NOTE: CHOL will eventually replace HOL! |
|
191 |
||
192 |
* In CHOL, pattern-matching on tuples is now available in all abstractions. |
|
193 |
It translates to the operator "split". A new theory of integers is available; |
|
194 |
||
195 |
* In ZF, integer numerals now denote two's-complement binary integers. |
|
196 |
Arithmetic operations can be performed by rewriting. See ZF/ex/Bin.ML; |
|
197 |
||
198 |
* Many new examples: I/O automata, Church-Rosser theorem, equivalents |
|
199 |
of the Axiom of Choice; |
|
200 |
||
201 |
||
202 |
||
203 |
New in Isabelle94-2 |
|
204 |
------------------- |
|
205 |
||
206 |
* Significantly faster resolution; |
|
207 |
||
208 |
* the different sections in a .thy file can now be mixed and repeated |
|
209 |
freely; |
|
210 |
||
211 |
* Database of theorems for FOL, HOL and ZF. New |
|
212 |
commands including qed, qed_goal and bind_thm store theorems in the database. |
|
213 |
||
214 |
* Simple database queries: return a named theorem (get_thm) or all theorems of |
|
215 |
a given theory (thms_of), or find out what theory a theorem was proved in |
|
216 |
(theory_of_thm); |
|
217 |
||
218 |
* Bugs fixed in the inductive definition and datatype packages; |
|
219 |
||
220 |
* The classical reasoner provides deepen_tac and depth_tac, making FOL_dup_cs |
|
221 |
and HOL_dup_cs obsolete; |
|
222 |
||
223 |
* Syntactic ambiguities caused by the new treatment of syntax in Isabelle94-1 |
|
224 |
have been removed; |
|
225 |
||
226 |
* Simpler definition of function space in ZF; |
|
227 |
||
228 |
* new results about cardinal and ordinal arithmetic in ZF; |
|
229 |
||
230 |
* 'subtype' facility in HOL for introducing new types as subsets of existing |
|
231 |
types; |
|
232 |
||
233 |
||
2553 | 234 |
$Id$ |