author | quigley |
Tue, 05 Apr 2005 16:32:47 +0200 | |
changeset 15657 | bd946fbc7c2b |
parent 15570 | 8d8c70b41bab |
child 15677 | 8770edbf8f28 |
permissions | -rw-r--r-- |
5363 | 1 |
Isabelle NEWS -- history user-relevant changes |
2 |
============================================== |
|
2553 | 3 |
|
14655
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
wenzelm
parents:
14624
diff
changeset
|
4 |
New in this Isabelle release |
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
wenzelm
parents:
14624
diff
changeset
|
5 |
---------------------------- |
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
wenzelm
parents:
14624
diff
changeset
|
6 |
|
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
wenzelm
parents:
14624
diff
changeset
|
7 |
*** General *** |
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
wenzelm
parents:
14624
diff
changeset
|
8 |
|
15531 | 9 |
* The type Library.option is no more, along with the exception |
10 |
Library.OPTION: Isabelle now uses the standard option type. The |
|
11 |
functions the, is_some, is_none, etc. are still in Library, but |
|
12 |
the constructors are now SOME and NONE instead of Some and None. |
|
15570 | 13 |
They throw the exception Option. |
14 |
||
15 |
* The exception LIST is no more, the standard exceptions Empty and |
|
16 |
Subscript, as well as Library.UnequalLengths are used instead. This |
|
17 |
means that function like Library.hd and Library.tl are gone, as the |
|
18 |
standard hd and tl functions suffice. |
|
19 |
||
20 |
A number of functions, specifically those in the LIBRARY_CLOSED |
|
21 |
signature, are now no longer exported to the top ML level, as they |
|
22 |
are variants of standard functions. The following suggests how |
|
23 |
one can translate existing code: |
|
24 |
||
25 |
the x = valOf x |
|
26 |
if_none x y = getOpt(x,y) |
|
27 |
is_some x = isSome x |
|
28 |
apsome f x = Option.map f x |
|
29 |
rev_append xs ys = List.revAppend(xs,ys) |
|
30 |
nth_elem(i,xs) = List.nth(xs,i) |
|
31 |
last_elem xs = List.last xs |
|
32 |
flat xss = List.concat xss |
|
33 |
seq fs = app fs |
|
34 |
partition P xs = List.partition P xs |
|
35 |
filter P xs = List.filter P xs |
|
36 |
mapfilter f xs = List.mapPartial f xs |
|
37 |
||
38 |
The final four functions, take, drop, foldl, and foldr, are somewhat |
|
39 |
more complicated (especially the semantics of take and drop differ |
|
40 |
from the standard). |
|
41 |
||
42 |
A simple solution to broken code is to include "open Library" at the |
|
43 |
beginning of a structure. Everything after that will be as before. |
|
15531 | 44 |
|
15350 | 45 |
* Document preparation: new antiquotations @{lhs thm} and @{rhs thm} |
46 |
printing the lhs/rhs of definitions, equations, inequations etc. |
|
47 |
||
15287 | 48 |
* isatool usedir: new option -f that allows specification of the ML |
49 |
file to be used by Isabelle; default is ROOT.ML. |
|
15277 | 50 |
|
15130 | 51 |
* Theory headers: the new header syntax for Isar theories is |
52 |
||
53 |
theory <name> |
|
15148 | 54 |
imports <theory1> ... <theoryn> |
15130 | 55 |
begin |
56 |
||
15148 | 57 |
optionally also with a "files" section. The syntax |
15130 | 58 |
|
59 |
theory <name> = <theory1> + ... + <theoryn>: |
|
60 |
||
61 |
will still be supported for some time but will eventually disappear. |
|
62 |
The syntax of old-style theories has not changed. |
|
63 |
||
15475
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
64 |
* Theory loader: parent theories can now also be referred to via |
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
65 |
relative and absolute paths. |
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
66 |
|
15103
79846e8792eb
New transitivity reasoners for transitivity only and quasi orders.
ballarin
parents:
15089
diff
changeset
|
67 |
* Provers/quasi.ML: new transitivity reasoners for transitivity only |
79846e8792eb
New transitivity reasoners for transitivity only and quasi orders.
ballarin
parents:
15089
diff
changeset
|
68 |
and quasi orders. |
79846e8792eb
New transitivity reasoners for transitivity only and quasi orders.
ballarin
parents:
15089
diff
changeset
|
69 |
|
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
15073
diff
changeset
|
70 |
* Provers/trancl.ML: new transitivity reasoner for transitive and |
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
15073
diff
changeset
|
71 |
reflexive-transitive closure of relations. |
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
15073
diff
changeset
|
72 |
|
15163 | 73 |
* Provers/blast.ML: new reference depth_limit to make blast's depth |
74 |
limit (previously hard-coded with a value of 20) user-definable. |
|
75 |
||
15481 | 76 |
* Provers: new version of the subst method, for single-step rewriting: it now |
77 |
works in bound variable contexts. New is subst (asm), for rewriting an |
|
78 |
assumption. Thanks to Lucas Dixon! INCOMPATIBILITY: may rewrite a different |
|
79 |
subterm than the original subst method, which is still available under the |
|
80 |
name simplesubst. |
|
81 |
||
15454 | 82 |
* Pure: thin_tac now works even if the assumption being deleted contains !! or ==>. |
83 |
More generally, erule now works even if the major premise of the elimination rule |
|
84 |
contains !! or ==>. |
|
85 |
||
14655
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
wenzelm
parents:
14624
diff
changeset
|
86 |
* Pure: considerably improved version of 'constdefs' command. Now |
14731 | 87 |
performs automatic type-inference of declared constants; additional |
88 |
support for local structure declarations (cf. locales and HOL |
|
89 |
records), see also isar-ref manual. Potential INCOMPATIBILITY: need |
|
90 |
to observe strictly sequential dependencies of definitions within a |
|
91 |
single 'constdefs' section; moreover, the declared name needs to be |
|
92 |
an identifier. If all fails, consider to fall back on 'consts' and |
|
93 |
'defs' separately. |
|
14655
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
wenzelm
parents:
14624
diff
changeset
|
94 |
|
14698
7e4dec3fd515
improvd indexed syntax and implicit structures; tuned renaming of symbolic identifiers
wenzelm
parents:
14682
diff
changeset
|
95 |
* Pure: improved indexed syntax and implicit structures. First of |
14731 | 96 |
all, indexed syntax provides a notational device for subscripted |
97 |
application, using the new syntax \<^bsub>term\<^esub> for arbitrary |
|
98 |
expressions. Secondly, in a local context with structure |
|
99 |
declarations, number indexes \<^sub>n or the empty index (default |
|
100 |
number 1) refer to a certain fixed variable implicitly; option |
|
101 |
show_structs controls printing of implicit structures. Typical |
|
102 |
applications of these concepts involve record types and locales. |
|
103 |
||
14795
b702848de41f
Pure: clear separation of logical types and nonterminals;
wenzelm
parents:
14731
diff
changeset
|
104 |
* Pure: clear separation of logical types and nonterminals, where the |
b702848de41f
Pure: clear separation of logical types and nonterminals;
wenzelm
parents:
14731
diff
changeset
|
105 |
latter may only occur in 'syntax' specifications or type |
b702848de41f
Pure: clear separation of logical types and nonterminals;
wenzelm
parents:
14731
diff
changeset
|
106 |
abbreviations. Before that distinction was only partially |
b702848de41f
Pure: clear separation of logical types and nonterminals;
wenzelm
parents:
14731
diff
changeset
|
107 |
implemented via type class "logic" vs. "{}". Potential |
b702848de41f
Pure: clear separation of logical types and nonterminals;
wenzelm
parents:
14731
diff
changeset
|
108 |
INCOMPATIBILITY in rare cases of improper use of 'types'/'consts' |
b702848de41f
Pure: clear separation of logical types and nonterminals;
wenzelm
parents:
14731
diff
changeset
|
109 |
instead of 'nonterminals'/'syntax'. Some very exotic syntax |
14816
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
110 |
specifications may require further adaption (e.g. Cube/Base.thy). |
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
111 |
|
14854 | 112 |
* Pure: removed obsolete type class "logic", use the top sort {} |
113 |
instead. Note that non-logical types should be declared as |
|
114 |
'nonterminals' rather than 'types'. INCOMPATIBILITY for new |
|
115 |
object-logic specifications. |
|
116 |
||
15022 | 117 |
* Pure: print_tac now outputs the goal through the trace channel. |
118 |
||
119 |
* Pure: reference Namespace.unique_names included. If true the |
|
120 |
(shortest) namespace-prefix is printed to disambiguate conflicts (as |
|
121 |
yet). If false the first entry wins (as during parsing). Default |
|
122 |
value is true. |
|
15018 | 123 |
|
15033
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
124 |
* Pure: tuned internal renaming of symbolic identifiers -- attach |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
125 |
primes instead of base 26 numbers. |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
126 |
|
15475
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
127 |
* Pure: new flag show_var_qmarks to control printing of leading |
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
128 |
question marks of variable names. |
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
129 |
|
14816
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
130 |
* Pure/Syntax: inner syntax includes (*(*nested*) comments*). |
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
131 |
|
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
132 |
* Pure/Syntax: pretty pinter now supports unbreakable blocks, |
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
133 |
specified in mixfix annotations as "(00...)". |
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
134 |
|
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
135 |
* Pure/Syntax: 'advanced' translation functions (parse_translation |
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
136 |
etc.) may depend on the signature of the theory context being |
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
137 |
presently used for parsing/printing, see also isar-ref manual. |
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
138 |
|
15033
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
139 |
* Pure/Simplifier: simplification procedures may now take the current |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
140 |
simpset into account (cf. Simplifier.simproc(_i) / mk_simproc |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
141 |
interface), which is very useful for calling the Simplifier |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
142 |
recursively. Minor INCOMPATIBILITY: the 'prems' argument of |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
143 |
simprocs is gone -- use prems_of_ss on the simpset instead. |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
144 |
Moreover, the low-level mk_simproc no longer applies Logic.varify |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
145 |
internally, to allow for use in a context of fixed variables. |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
146 |
|
15406 | 147 |
* Pure/Simplifier: Command "find_rewrites" takes a string and lists all |
148 |
equality theorems (not just those with attribute simp!) whose left-hand |
|
149 |
side matches the term given via the string. In PG the command can be |
|
150 |
activated via Isabelle -> Show me -> matching rewrites. |
|
151 |
||
15033
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
152 |
* Provers: Simplifier and Classical Reasoner now support proof context |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
153 |
dependent plug-ins (simprocs, solvers, wrappers etc.). These extra |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
154 |
components are stored in the theory and patched into the |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
155 |
simpset/claset when used in an Isar proof context. Context |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
156 |
dependent components are maintained by the following theory |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
157 |
operations: |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
158 |
|
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
159 |
Simplifier.add_context_simprocs |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
160 |
Simplifier.del_context_simprocs |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
161 |
Simplifier.set_context_subgoaler |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
162 |
Simplifier.reset_context_subgoaler |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
163 |
Simplifier.add_context_looper |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
164 |
Simplifier.del_context_looper |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
165 |
Simplifier.add_context_unsafe_solver |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
166 |
Simplifier.add_context_safe_solver |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
167 |
|
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
168 |
Classical.add_context_safe_wrapper |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
169 |
Classical.del_context_safe_wrapper |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
170 |
Classical.add_context_unsafe_wrapper |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
171 |
Classical.del_context_unsafe_wrapper |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
172 |
|
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
173 |
IMPORTANT NOTE: proof tools (methods etc.) need to use |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
174 |
local_simpset_of and local_claset_of to instead of the primitive |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
175 |
Simplifier.get_local_simpset and Classical.get_local_claset, |
255bc508a756
Simplifier and Classical Reasoner now support proof context dependent plug-ins;
wenzelm
parents:
15022
diff
changeset
|
176 |
respectively, in order to see the context dependent fields! |
14816
b77cebcd7e6e
* ML: all output via channels of writeln etc. passed through Output.output;
wenzelm
parents:
14795
diff
changeset
|
177 |
|
14897
577f95db94e4
* Document preparation: antiquotations provide option 'locale=NAME';
wenzelm
parents:
14885
diff
changeset
|
178 |
* Document preparation: antiquotations now provide the option |
577f95db94e4
* Document preparation: antiquotations provide option 'locale=NAME';
wenzelm
parents:
14885
diff
changeset
|
179 |
'locale=NAME' to specify an alternative context used for evaluating |
577f95db94e4
* Document preparation: antiquotations provide option 'locale=NAME';
wenzelm
parents:
14885
diff
changeset
|
180 |
and printing the subsequent argument, as in @{thm [locale=LC] |
14919 | 181 |
fold_commute}, for example. |
14897
577f95db94e4
* Document preparation: antiquotations provide option 'locale=NAME';
wenzelm
parents:
14885
diff
changeset
|
182 |
|
14934 | 183 |
* Document preparation: commands 'display_drafts' and 'print_drafts' |
184 |
perform simple output of raw sources. Only those symbols that do |
|
185 |
not require additional LaTeX packages (depending on comments in |
|
186 |
isabellesym.sty) are displayed properly, everything else is left |
|
187 |
verbatim. We use isatool display and isatool print as front ends; |
|
188 |
these are subject to the DVI_VIEWER and PRINT_COMMAND settings, |
|
189 |
respectively. |
|
190 |
||
15436 | 191 |
* Document preparation: Proof scripts as well as some other commands |
192 |
such as ML or parse/print_translation can now be hidden in the document. |
|
15475
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
193 |
Hiding is enabled by default, and can be disabled either via the option |
15477 | 194 |
'-H false' of isatool usedir or by resetting the reference variable |
15475
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
195 |
IsarOutput.hide_commands. Additional commands to be hidden may be |
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
196 |
declared using IsarOutput.add_hidden_commands. |
15436 | 197 |
|
14917 | 198 |
* ML: output via the Isabelle channels of writeln/warning/error |
199 |
etc. is now passed through Output.output, with a hook for arbitrary |
|
200 |
transformations depending on the print_mode (cf. Output.add_mode -- |
|
201 |
the first active mode that provides a output function wins). |
|
202 |
Already formatted output may be embedded into further text via |
|
203 |
Output.raw; the result of Pretty.string_of/str_of and derived |
|
204 |
functions (string_of_term/cterm/thm etc.) is already marked raw to |
|
205 |
accommodate easy composition of diagnostic messages etc. |
|
206 |
Programmers rarely need to care about Output.output or Output.raw at |
|
207 |
all, with some notable exceptions: Output.output is required when |
|
208 |
bypassing the standard channels (writeln etc.), or in token |
|
209 |
translations to produce properly formatted results; Output.raw is |
|
210 |
required when capturing already output material that will eventually |
|
14972 | 211 |
be presented to the user a second time. For the default print mode, |
212 |
both Output.output and Output.raw have no effect. |
|
14795
b702848de41f
Pure: clear separation of logical types and nonterminals;
wenzelm
parents:
14731
diff
changeset
|
213 |
|
14707 | 214 |
|
15127 | 215 |
*** Isar *** |
216 |
||
15528
1b12557f720d
New reference Toplevel.debug for verbose printing of exns.
ballarin
parents:
15481
diff
changeset
|
217 |
* Debugging: new reference Toplevel.debug; default false. |
1b12557f720d
New reference Toplevel.debug for verbose printing of exns.
ballarin
parents:
15481
diff
changeset
|
218 |
Set to make printing of exceptions THM, TERM, TYPE and THEORY more verbose. |
1b12557f720d
New reference Toplevel.debug for verbose printing of exns.
ballarin
parents:
15481
diff
changeset
|
219 |
|
15127 | 220 |
* Locales: |
221 |
- "includes" disallowed in declaration of named locales (command "locale"). |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15200
diff
changeset
|
222 |
- Fixed parameter management in theorem generation for goals with "includes". |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15200
diff
changeset
|
223 |
INCOMPATIBILITY: rarely, the generated theorem statement is different. |
15475
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
224 |
|
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
225 |
* New syntax |
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
226 |
|
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
227 |
<theorem_name> (<index>, ..., <index>-<index>, ...) |
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
228 |
|
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
229 |
for referring to specific theorems in a named list of theorems via |
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
230 |
indices. |
fdf9434b04ea
- Proofs are now hidden by default when generating documents
berghofe
parents:
15454
diff
changeset
|
231 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14699
diff
changeset
|
232 |
*** HOL *** |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14699
diff
changeset
|
233 |
|
15242 | 234 |
* Datatype induction via method `induct' now preserves the name of the |
235 |
induction variable. For example, when proving P(xs::'a list) by induction |
|
236 |
on xs, the induction step is now P(xs) ==> P(a#xs) rather than |
|
237 |
P(list) ==> P(a#list) as previously. |
|
238 |
||
14731 | 239 |
* HOL/record: reimplementation of records. Improved scalability for |
240 |
records with many fields, avoiding performance problems for type |
|
241 |
inference. Records are no longer composed of nested field types, but |
|
242 |
of nested extension types. Therefore the record type only grows |
|
243 |
linear in the number of extensions and not in the number of fields. |
|
244 |
The top-level (users) view on records is preserved. Potential |
|
245 |
INCOMPATIBILITY only in strange cases, where the theory depends on |
|
246 |
the old record representation. The type generated for a record is |
|
247 |
called <record_name>_ext_type. |
|
248 |
||
15022 | 249 |
* HOL/record: Reference record_quick_and_dirty_sensitive can be |
250 |
enabled to skip the proofs triggered by a record definition or a |
|
251 |
simproc (if quick_and_dirty is enabled). Definitions of large |
|
252 |
records can take quite long. |
|
253 |
||
254 |
* HOL/record: "record_upd_simproc" for simplification of multiple |
|
255 |
record updates enabled by default. Moreover, trivial updates are |
|
256 |
also removed: r(|x := x r|) = r. INCOMPATIBILITY: old proofs break |
|
257 |
occasionally, since simplification is more powerful by default. |
|
15012
28fa57b57209
Added reference record_definition_quick_and_dirty_sensitive, to
schirmer
parents:
15011
diff
changeset
|
258 |
|
14878 | 259 |
* HOL: symbolic syntax of Hilbert Choice Operator is now as follows: |
260 |
||
261 |
syntax (epsilon) |
|
262 |
"_Eps" :: "[pttrn, bool] => 'a" ("(3\<some>_./ _)" [0, 10] 10) |
|
263 |
||
264 |
The symbol \<some> is displayed as the alternative epsilon of LaTeX |
|
265 |
and x-symbol; use option '-m epsilon' to get it actually printed. |
|
266 |
Moreover, the mathematically important symbolic identifier |
|
267 |
\<epsilon> becomes available as variable, constant etc. |
|
268 |
||
15361 | 269 |
* HOL: "x > y" abbreviates "y < x" and "x >= y" abbreviates "y <= x". |
270 |
Similarly for all quantifiers: "ALL x > y" etc. |
|
271 |
The x-symbol for >= is \<ge>. |
|
15356 | 272 |
|
15534 | 273 |
* HOL/Set: "{x:A. P}" abbreviates "{x. x:A & P}" |
274 |
(and similarly for "\<in>" instead of ":") |
|
275 |
||
15046 | 276 |
* HOL/SetInterval: The syntax for open intervals has changed: |
277 |
||
278 |
Old New |
|
279 |
{..n(} -> {..<n} |
|
280 |
{)n..} -> {n<..} |
|
281 |
{m..n(} -> {m..<n} |
|
282 |
{)m..n} -> {m<..n} |
|
283 |
{)m..n(} -> {m<..<n} |
|
284 |
||
285 |
The old syntax is still supported but will disappear in the future. |
|
286 |
For conversion use the following emacs search and replace patterns: |
|
287 |
||
288 |
{)\([^\.]*\)\.\. -> {\1<\.\.} |
|
289 |
\.\.\([^(}]*\)(} -> \.\.<\1} |
|
290 |
||
291 |
They are not perfect but work quite well. |
|
292 |
||
15073 | 293 |
* HOL: The syntax for 'setsum', summation over finite sets, has changed: |
294 |
||
295 |
The syntax for 'setsum (%x. e) A' used to be '\<Sum>x:A. e' |
|
296 |
and is now either 'SUM x:A. e' or '\<Sum>x\<in>A. e'. |
|
297 |
||
298 |
There is new syntax for summation over finite sets: |
|
15046 | 299 |
|
15050 | 300 |
'\<Sum>x | P. e' is the same as 'setsum (%x. e) {x. P}' |
301 |
'\<Sum>x=a..b. e' is the same as 'setsum (%x. e) {a..b}' |
|
302 |
'\<Sum>x=a..<b. e' is the same as 'setsum (%x. e) {a..<b}' |
|
303 |
'\<Sum>x<k. e' is the same as 'setsum (%x. e) {..<k}' |
|
15046 | 304 |
|
305 |
Function 'Summation' over nat is gone, its syntax '\<Sum>i<k. e' |
|
306 |
now translates into 'setsum' as above. |
|
307 |
||
15319 | 308 |
* HOL: Finite set induction: In Isar proofs, the insert case is now |
309 |
"case (insert x F)" instead of the old counterintuitive "case (insert F x)". |
|
310 |
||
15200 | 311 |
* HOL/Simplifier: |
312 |
||
313 |
- Is now set up to reason about transitivity chains involving "trancl" |
|
314 |
(r^+) and "rtrancl" (r^*) by setting up tactics provided by |
|
315 |
Provers/trancl.ML as additional solvers. INCOMPATIBILITY: old proofs break |
|
316 |
occasionally as simplification may now solve more goals than previously. |
|
317 |
||
318 |
- Converts x <= y into x = y if assumption y <= x is present. Works for |
|
319 |
all partial orders (class "order"), in particular numbers and sets. For |
|
320 |
linear orders (e.g. numbers) it treats ~ x < y just like y <= x. |
|
15089
430264838064
ZF/Simplifier: second copy of context type solver;
wenzelm
parents:
15076
diff
changeset
|
321 |
|
15423 | 322 |
- Simproc for "let x = a in f x" |
323 |
If a is a free or bound variable or a constant then the let is unfolded. |
|
324 |
Otherwise first a is simplified to a', and then f a' is simplified to |
|
325 |
g. If possible we abstract a' from g arriving at "let x = a' in g' x", |
|
326 |
otherwise we unfold the let and arrive at g. The simproc can be |
|
327 |
enabled/disabled by the reference use_let_simproc. Potential |
|
328 |
INCOMPATIBILITY since simplification is more powerful by default. |
|
329 |
||
15154 | 330 |
* HOL: new 'isatool dimacs2hol' to convert files in DIMACS CNF format |
331 |
(containing Boolean satisfiability problems) into Isabelle/HOL theories. |
|
332 |
||
14655
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
wenzelm
parents:
14624
diff
changeset
|
333 |
|
14682
a5072752114c
HOLCF: discontinued special version of 'constdefs';
wenzelm
parents:
14655
diff
changeset
|
334 |
*** HOLCF *** |
a5072752114c
HOLCF: discontinued special version of 'constdefs';
wenzelm
parents:
14655
diff
changeset
|
335 |
|
a5072752114c
HOLCF: discontinued special version of 'constdefs';
wenzelm
parents:
14655
diff
changeset
|
336 |
* HOLCF: discontinued special version of 'constdefs' (which used to |
14731 | 337 |
support continuous functions) in favor of the general Pure one with |
338 |
full type-inference. |
|
14682
a5072752114c
HOLCF: discontinued special version of 'constdefs';
wenzelm
parents:
14655
diff
changeset
|
339 |
|
a5072752114c
HOLCF: discontinued special version of 'constdefs';
wenzelm
parents:
14655
diff
changeset
|
340 |
|
14885 | 341 |
*** ZF *** |
342 |
||
15089
430264838064
ZF/Simplifier: second copy of context type solver;
wenzelm
parents:
15076
diff
changeset
|
343 |
* ZF/ex/{Group,Ring}: examples in abstract algebra, including the |
430264838064
ZF/Simplifier: second copy of context type solver;
wenzelm
parents:
15076
diff
changeset
|
344 |
First Isomorphism Theorem (on quotienting by the kernel of a |
430264838064
ZF/Simplifier: second copy of context type solver;
wenzelm
parents:
15076
diff
changeset
|
345 |
homomorphism). |
430264838064
ZF/Simplifier: second copy of context type solver;
wenzelm
parents:
15076
diff
changeset
|
346 |
|
430264838064
ZF/Simplifier: second copy of context type solver;
wenzelm
parents:
15076
diff
changeset
|
347 |
* ZF/Simplifier: install second copy of type solver that actually |
430264838064
ZF/Simplifier: second copy of context type solver;
wenzelm
parents:
15076
diff
changeset
|
348 |
makes use of TC rules declared to Isar proof contexts (or locales); |
430264838064
ZF/Simplifier: second copy of context type solver;
wenzelm
parents:
15076
diff
changeset
|
349 |
the old version is still required for ML proof scripts. |
14885 | 350 |
|
351 |
||
14655
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
wenzelm
parents:
14624
diff
changeset
|
352 |
|
14606 | 353 |
New in Isabelle2004 (April 2004) |
354 |
-------------------------------- |
|
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
355 |
|
14171
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents:
14136
diff
changeset
|
356 |
*** General *** |
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents:
14136
diff
changeset
|
357 |
|
14398
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
358 |
* Provers/order.ML: new efficient reasoner for partial and linear orders. |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
359 |
Replaces linorder.ML. |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
360 |
|
14606 | 361 |
* Pure: Greek letters (except small lambda, \<lambda>), as well as Gothic |
362 |
(\<aa>...\<zz>\<AA>...\<ZZ>), calligraphic (\<A>...\<Z>), and Euler |
|
14173 | 363 |
(\<a>...\<z>), are now considered normal letters, and can therefore |
364 |
be used anywhere where an ASCII letter (a...zA...Z) has until |
|
365 |
now. COMPATIBILITY: This obviously changes the parsing of some |
|
366 |
terms, especially where a symbol has been used as a binder, say |
|
367 |
'\<Pi>x. ...', which is now a type error since \<Pi>x will be parsed |
|
368 |
as an identifier. Fix it by inserting a space around former |
|
369 |
symbols. Call 'isatool fixgreek' to try to fix parsing errors in |
|
370 |
existing theory and ML files. |
|
14171
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents:
14136
diff
changeset
|
371 |
|
14237 | 372 |
* Pure: Macintosh and Windows line-breaks are now allowed in theory files. |
373 |
||
14731 | 374 |
* Pure: single letter sub/superscripts (\<^isub> and \<^isup>) are now |
375 |
allowed in identifiers. Similar to Greek letters \<^isub> is now considered |
|
376 |
a normal (but invisible) letter. For multiple letter subscripts repeat |
|
377 |
\<^isub> like this: x\<^isub>1\<^isub>2. |
|
14233 | 378 |
|
14333 | 379 |
* Pure: There are now sub-/superscripts that can span more than one |
380 |
character. Text between \<^bsub> and \<^esub> is set in subscript in |
|
14606 | 381 |
ProofGeneral and LaTeX, text between \<^bsup> and \<^esup> in |
382 |
superscript. The new control characters are not identifier parts. |
|
14333 | 383 |
|
14561
c53396af770e
* raw control symbols are of the form \<^raw:...> now.
schirmer
parents:
14556
diff
changeset
|
384 |
* Pure: Control-symbols of the form \<^raw:...> will literally print the |
14606 | 385 |
content of "..." to the latex file instead of \isacntrl... . The "..." |
386 |
may consist of any printable characters excluding the end bracket >. |
|
14361
ad2f5da643b4
* Support for raw latex output in control symbols: \<^raw...>
schirmer
parents:
14333
diff
changeset
|
387 |
|
14237 | 388 |
* Pure: Using new Isar command "finalconsts" (or the ML functions |
389 |
Theory.add_finals or Theory.add_finals_i) it is now possible to |
|
390 |
declare constants "final", which prevents their being given a definition |
|
391 |
later. It is useful for constants whose behaviour is fixed axiomatically |
|
14224 | 392 |
rather than definitionally, such as the meta-logic connectives. |
393 |
||
14606 | 394 |
* Pure: 'instance' now handles general arities with general sorts |
395 |
(i.e. intersections of classes), |
|
14503
255ad604e08e
Added check that Theory.ML does not occur in the files section of the theory
skalberg
parents:
14480
diff
changeset
|
396 |
|
14547 | 397 |
* Presentation: generated HTML now uses a CSS style sheet to make layout |
14731 | 398 |
(somewhat) independent of content. It is copied from lib/html/isabelle.css. |
14547 | 399 |
It can be changed to alter the colors/layout of generated pages. |
400 |
||
14556
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents:
14551
diff
changeset
|
401 |
|
14175
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
402 |
*** Isar *** |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
403 |
|
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14503
diff
changeset
|
404 |
* Tactic emulation methods rule_tac, erule_tac, drule_tac, frule_tac, |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14503
diff
changeset
|
405 |
cut_tac, subgoal_tac and thin_tac: |
14175
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
406 |
- Now understand static (Isar) contexts. As a consequence, users of Isar |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
407 |
locales are no longer forced to write Isar proof scripts. |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
408 |
For details see Isar Reference Manual, paragraph 4.3.2: Further tactic |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
409 |
emulations. |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
410 |
- INCOMPATIBILITY: names of variables to be instantiated may no |
14211
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
411 |
longer be enclosed in quotes. Instead, precede variable name with `?'. |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
412 |
This is consistent with the instantiation attribute "where". |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
413 |
|
14257
a7ef3f7588c5
Type inference bug in Isar attributes "where" and "of" fixed.
ballarin
parents:
14255
diff
changeset
|
414 |
* Attributes "where" and "of": |
14285
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
ballarin
parents:
14283
diff
changeset
|
415 |
- Now take type variables of instantiated theorem into account when reading |
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
ballarin
parents:
14283
diff
changeset
|
416 |
the instantiation string. This fixes a bug that caused instantiated |
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
ballarin
parents:
14283
diff
changeset
|
417 |
theorems to have too special types in some circumstances. |
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
ballarin
parents:
14283
diff
changeset
|
418 |
- "where" permits explicit instantiations of type variables. |
14257
a7ef3f7588c5
Type inference bug in Isar attributes "where" and "of" fixed.
ballarin
parents:
14255
diff
changeset
|
419 |
|
14556
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents:
14551
diff
changeset
|
420 |
* Calculation commands "moreover" and "also" no longer interfere with |
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents:
14551
diff
changeset
|
421 |
current facts ("this"), admitting arbitrary combinations with "then" |
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents:
14551
diff
changeset
|
422 |
and derived forms. |
14283 | 423 |
|
14211
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
424 |
* Locales: |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
425 |
- Goal statements involving the context element "includes" no longer |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
426 |
generate theorems with internal delta predicates (those ending on |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
427 |
"_axioms") in the premise. |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
428 |
Resolve particular premise with <locale>.intro to obtain old form. |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
429 |
- Fixed bug in type inference ("unify_frozen") that prevented mix of target |
7286c187596d
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
14199
diff
changeset
|
430 |
specification and "includes" elements in goal statement. |
14254
342634f38451
Isar/Locales: <loc>.intro and <loc>.axioms no longer intro? and elim? by
ballarin
parents:
14243
diff
changeset
|
431 |
- Rule sets <locale>.intro and <locale>.axioms no longer declared as |
342634f38451
Isar/Locales: <loc>.intro and <loc>.axioms no longer intro? and elim? by
ballarin
parents:
14243
diff
changeset
|
432 |
[intro?] and [elim?] (respectively) by default. |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14503
diff
changeset
|
433 |
- Experimental command for instantiation of locales in proof contexts: |
14551 | 434 |
instantiate <label>[<attrs>]: <loc> |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14503
diff
changeset
|
435 |
Instantiates locale <loc> and adds all its theorems to the current context |
14551 | 436 |
taking into account their attributes. Label and attrs are optional |
437 |
modifiers, like in theorem declarations. If present, names of |
|
438 |
instantiated theorems are qualified with <label>, and the attributes |
|
439 |
<attrs> are applied after any attributes these theorems might have already. |
|
440 |
If the locale has assumptions, a chained fact of the form |
|
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14503
diff
changeset
|
441 |
"<loc> t1 ... tn" is expected from which instantiations of the parameters |
14551 | 442 |
are derived. The command does not support old-style locales declared |
443 |
with "locale (open)". |
|
444 |
A few (very simple) examples can be found in FOL/ex/LocaleInst.thy. |
|
14175
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
445 |
|
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
446 |
* HOL: Tactic emulation methods induct_tac and case_tac understand static |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
447 |
(Isar) contexts. |
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
ballarin
parents:
14173
diff
changeset
|
448 |
|
14556
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents:
14551
diff
changeset
|
449 |
|
14136 | 450 |
*** HOL *** |
451 |
||
14624 | 452 |
* Proof import: new image HOL4 contains the imported library from |
453 |
the HOL4 system with about 2500 theorems. It is imported by |
|
454 |
replaying proof terms produced by HOL4 in Isabelle. The HOL4 image |
|
455 |
can be used like any other Isabelle image. See |
|
456 |
HOL/Import/HOL/README for more information. |
|
457 |
||
14398
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
458 |
* Simplifier: |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
459 |
- Much improved handling of linear and partial orders. |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
460 |
Reasoners for linear and partial orders are set up for type classes |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
461 |
"linorder" and "order" respectively, and are added to the default simpset |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
462 |
as solvers. This means that the simplifier can build transitivity chains |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
463 |
to solve goals from the assumptions. |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
464 |
- INCOMPATIBILITY: old proofs break occasionally. Typically, applications |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
465 |
of blast or auto after simplification become unnecessary because the goal |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
466 |
is solved by simplification already. |
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
14389
diff
changeset
|
467 |
|
14731 | 468 |
* Numerics: new theory Ring_and_Field contains over 250 basic numerical laws, |
14389 | 469 |
all proved in axiomatic type classes for semirings, rings and fields. |
470 |
||
471 |
* Numerics: |
|
472 |
- Numeric types (nat, int, and in HOL-Complex rat, real, complex, etc.) are |
|
14731 | 473 |
now formalized using the Ring_and_Field theory mentioned above. |
14389 | 474 |
- INCOMPATIBILITY: simplification and arithmetic behaves somewhat differently |
475 |
than before, because now they are set up once in a generic manner. |
|
14731 | 476 |
- INCOMPATIBILITY: many type-specific arithmetic laws have gone. |
14480 | 477 |
Look for the general versions in Ring_and_Field (and Power if they concern |
478 |
exponentiation). |
|
14389 | 479 |
|
14401 | 480 |
* Type "rat" of the rational numbers is now available in HOL-Complex. |
14389 | 481 |
|
14255 | 482 |
* Records: |
483 |
- Record types are now by default printed with their type abbreviation |
|
484 |
instead of the list of all field types. This can be configured via |
|
485 |
the reference "print_record_type_abbr". |
|
14731 | 486 |
- Simproc "record_upd_simproc" for simplification of multiple updates added |
14255 | 487 |
(not enabled by default). |
14427 | 488 |
- Simproc "record_ex_sel_eq_simproc" to simplify EX x. sel r = x resp. |
489 |
EX x. x = sel r to True (not enabled by default). |
|
14255 | 490 |
- Tactic "record_split_simp_tac" to split and simplify records added. |
14731 | 491 |
|
14136 | 492 |
* 'specification' command added, allowing for definition by |
14224 | 493 |
specification. There is also an 'ax_specification' command that |
494 |
introduces the new constants axiomatically. |
|
14136 | 495 |
|
14375 | 496 |
* arith(_tac) is now able to generate counterexamples for reals as well. |
497 |
||
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
14398
diff
changeset
|
498 |
* HOL-Algebra: new locale "ring" for non-commutative rings. |
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
14398
diff
changeset
|
499 |
|
14243 | 500 |
* HOL-ex: InductiveInvariant_examples illustrates advanced recursive function |
14610 | 501 |
definitions, thanks to Sava Krsti\'{c} and John Matthews. |
502 |
||
14731 | 503 |
* HOL-Matrix: a first theory for matrices in HOL with an application of |
14610 | 504 |
matrix theory to linear programming. |
14136 | 505 |
|
14380 | 506 |
* Unions and Intersections: |
15119 | 507 |
The latex output syntax of UN and INT has been changed |
508 |
from "\Union x \in A. B" to "\Union_{x \in A} B" |
|
509 |
i.e. the index formulae has become a subscript. |
|
510 |
Similarly for "\Union x. B", and for \Inter instead of \Union. |
|
14380 | 511 |
|
14418 | 512 |
* Unions and Intersections over Intervals: |
14731 | 513 |
There is new short syntax "UN i<=n. A" for "UN i:{0..n}. A". There is |
514 |
also an x-symbol version with subscripts "\<Union>\<^bsub>i <= n\<^esub>. A" |
|
14418 | 515 |
like in normal math, and corresponding versions for < and for intersection. |
516 |
||
14401 | 517 |
* ML: the legacy theory structures Int and List have been removed. They had |
518 |
conflicted with ML Basis Library structures having the same names. |
|
14380 | 519 |
|
14464 | 520 |
* 'refute' command added to search for (finite) countermodels. Only works |
521 |
for a fragment of HOL. The installation of an external SAT solver is |
|
522 |
highly recommended. See "HOL/Refute.thy" for details. |
|
523 |
||
14602 | 524 |
* 'quickcheck' command: Allows to find counterexamples by evaluating |
525 |
formulae under an assignment of free variables to random values. |
|
526 |
In contrast to 'refute', it can deal with inductive datatypes, |
|
527 |
but cannot handle quantifiers. See "HOL/ex/Quickcheck_Examples.thy" |
|
528 |
for examples. |
|
14464 | 529 |
|
14606 | 530 |
|
14536 | 531 |
*** HOLCF *** |
532 |
||
533 |
* Streams now come with concatenation and are part of the HOLCF image |
|
534 |
||
14572 | 535 |
|
536 |
||
14136 | 537 |
New in Isabelle2003 (May 2003) |
14606 | 538 |
------------------------------ |
14136 | 539 |
|
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
540 |
*** General *** |
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
541 |
|
13618 | 542 |
* Provers/simplifier: |
543 |
||
13781 | 544 |
- Completely reimplemented method simp (ML: Asm_full_simp_tac): |
13618 | 545 |
Assumptions are now subject to complete mutual simplification, |
546 |
not just from left to right. The simplifier now preserves |
|
547 |
the order of assumptions. |
|
548 |
||
549 |
Potential INCOMPATIBILITY: |
|
550 |
||
13781 | 551 |
-- simp sometimes diverges where the old version did |
552 |
not, e.g. invoking simp on the goal |
|
13618 | 553 |
|
554 |
[| P (f x); y = x; f x = f y |] ==> Q |
|
555 |
||
13781 | 556 |
now gives rise to the infinite reduction sequence |
557 |
||
558 |
P(f x) --(f x = f y)--> P(f y) --(y = x)--> P(f x) --(f x = f y)--> ... |
|
559 |
||
560 |
Using "simp (asm_lr)" (ML: Asm_lr_simp_tac) instead often solves this |
|
561 |
kind of problem. |
|
562 |
||
563 |
-- Tactics combining classical reasoner and simplification (such as auto) |
|
564 |
are also affected by this change, because many of them rely on |
|
565 |
simp. They may sometimes diverge as well or yield a different numbers |
|
566 |
of subgoals. Try to use e.g. force, fastsimp, or safe instead of auto |
|
567 |
in case of problems. Sometimes subsequent calls to the classical |
|
568 |
reasoner will fail because a preceeding call to the simplifier too |
|
569 |
eagerly simplified the goal, e.g. deleted redundant premises. |
|
13618 | 570 |
|
571 |
- The simplifier trace now shows the names of the applied rewrite rules |
|
572 |
||
13829 | 573 |
- You can limit the number of recursive invocations of the simplifier |
574 |
during conditional rewriting (where the simplifie tries to solve the |
|
575 |
conditions before applying the rewrite rule): |
|
576 |
ML "simp_depth_limit := n" |
|
577 |
where n is an integer. Thus you can force termination where previously |
|
578 |
the simplifier would diverge. |
|
579 |
||
13835
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
ballarin
parents:
13829
diff
changeset
|
580 |
- Accepts free variables as head terms in congruence rules. Useful in Isar. |
13829 | 581 |
|
13938 | 582 |
- No longer aborts on failed congruence proof. Instead, the |
583 |
congruence is ignored. |
|
584 |
||
14008 | 585 |
* Pure: New generic framework for extracting programs from constructive |
586 |
proofs. See HOL/Extraction.thy for an example instantiation, as well |
|
587 |
as HOL/Extraction for some case studies. |
|
588 |
||
13868 | 589 |
* Pure: The main goal of the proof state is no longer shown by default, only |
590 |
the subgoals. This behaviour is controlled by a new flag. |
|
13835
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
ballarin
parents:
13829
diff
changeset
|
591 |
PG menu: Isabelle/Isar -> Settings -> Show Main Goal |
13815 | 592 |
(ML: Proof.show_main_goal). |
593 |
||
594 |
* Pure: You can find all matching introduction rules for subgoal 1, i.e. all |
|
595 |
rules whose conclusion matches subgoal 1: |
|
596 |
PG menu: Isabelle/Isar -> Show me -> matching rules |
|
597 |
The rules are ordered by how closely they match the subgoal. |
|
598 |
In particular, rules that solve a subgoal outright are displayed first |
|
599 |
(or rather last, the way they are printed). |
|
600 |
(ML: ProofGeneral.print_intros()) |
|
601 |
||
602 |
* Pure: New flag trace_unify_fail causes unification to print |
|
13781 | 603 |
diagnostic information (PG: in trace buffer) when it fails. This is |
604 |
useful for figuring out why single step proofs like rule, erule or |
|
605 |
assumption failed. |
|
606 |
||
13815 | 607 |
* Pure: Locale specifications now produce predicate definitions |
13410
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
608 |
according to the body of text (covering assumptions modulo local |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
609 |
definitions); predicate "loc_axioms" covers newly introduced text, |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
610 |
while "loc" is cumulative wrt. all included locale expressions; the |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
611 |
latter view is presented only on export into the global theory |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
612 |
context; potential INCOMPATIBILITY, use "(open)" option to fall back |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
613 |
on the old view without predicates; |
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
wenzelm
parents:
13344
diff
changeset
|
614 |
|
13459
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents:
13443
diff
changeset
|
615 |
* Pure: predefined locales "var" and "struct" are useful for sharing |
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents:
13443
diff
changeset
|
616 |
parameters (as in CASL, for example); just specify something like |
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents:
13443
diff
changeset
|
617 |
``var x + var y + struct M'' as import; |
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents:
13443
diff
changeset
|
618 |
|
13463
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
619 |
* Pure: improved thms_containing: proper indexing of facts instead of |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
620 |
raw theorems; check validity of results wrt. current name space; |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
621 |
include local facts of proof configuration (also covers active |
13541 | 622 |
locales), cover fixed variables in index; may use "_" in term |
623 |
specification; an optional limit for the number of printed facts may |
|
624 |
be given (the default is 40); |
|
625 |
||
626 |
* Pure: disallow duplicate fact bindings within new-style theory files |
|
627 |
(batch-mode only); |
|
13540
aede0306e214
* Pure: disallow duplicate fact bindings within new-style theory files;
wenzelm
parents:
13522
diff
changeset
|
628 |
|
13463
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
629 |
* Provers: improved induct method: assumptions introduced by case |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
630 |
"foo" are split into "foo.hyps" (from the rule) and "foo.prems" (from |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
631 |
the goal statement); "foo" still refers to all facts collectively; |
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents:
13459
diff
changeset
|
632 |
|
13550 | 633 |
* Provers: the function blast.overloaded has been removed: all constants |
634 |
are regarded as potentially overloaded, which improves robustness in exchange |
|
635 |
for slight decrease in efficiency; |
|
636 |
||
13781 | 637 |
* Provers/linorder: New generic prover for transitivity reasoning over |
638 |
linear orders. Note: this prover is not efficient! |
|
639 |
||
13522
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
640 |
* Isar: preview of problems to finish 'show' now produce an error |
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
641 |
rather than just a warning (in interactive mode); |
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
642 |
|
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
643 |
|
13158 | 644 |
*** HOL *** |
645 |
||
13899 | 646 |
* arith(_tac) |
647 |
||
648 |
- Produces a counter example if it cannot prove a goal. |
|
649 |
Note that the counter example may be spurious if the goal is not a formula |
|
650 |
of quantifier-free linear arithmetic. |
|
651 |
In ProofGeneral the counter example appears in the trace buffer. |
|
652 |
||
653 |
- Knows about div k and mod k where k is a numeral of type nat or int. |
|
654 |
||
655 |
- Calls full Presburger arithmetic (by Amine Chaieb) if quantifier-free |
|
656 |
linear arithmetic fails. This takes account of quantifiers and divisibility. |
|
14731 | 657 |
Presburger arithmetic can also be called explicitly via presburger(_tac). |
13899 | 658 |
|
659 |
* simp's arithmetic capabilities have been enhanced a bit: it now |
|
660 |
takes ~= in premises into account (by performing a case split); |
|
661 |
||
662 |
* simp reduces "m*(n div m) + n mod m" to n, even if the two summands |
|
663 |
are distributed over a sum of terms; |
|
664 |
||
13735 | 665 |
* New tactic "trans_tac" and method "trans" instantiate |
666 |
Provers/linorder.ML for axclasses "order" and "linorder" (predicates |
|
14731 | 667 |
"<=", "<" and "="). |
668 |
||
669 |
* function INCOMPATIBILITIES: Pi-sets have been redefined and moved from main |
|
13587 | 670 |
HOL to Library/FuncSet; constant "Fun.op o" is now called "Fun.comp"; |
671 |
||
13443 | 672 |
* 'typedef' command has new option "open" to suppress the set |
673 |
definition; |
|
674 |
||
13522
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
675 |
* functions Min and Max on finite sets have been introduced (theory |
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents:
13518
diff
changeset
|
676 |
Finite_Set); |
13492 | 677 |
|
13443 | 678 |
* attribute [symmetric] now works for relations as well; it turns |
679 |
(x,y) : R^-1 into (y,x) : R, and vice versa; |
|
680 |
||
13613 | 681 |
* induct over a !!-quantified statement (say !!x1..xn): |
682 |
each "case" automatically performs "fix x1 .. xn" with exactly those names. |
|
683 |
||
13899 | 684 |
* Map: `empty' is no longer a constant but a syntactic abbreviation for |
685 |
%x. None. Warning: empty_def now refers to the previously hidden definition |
|
686 |
of the empty set. |
|
687 |
||
14018 | 688 |
* Algebra: formalization of classical algebra. Intended as base for |
689 |
any algebraic development in Isabelle. Currently covers group theory |
|
690 |
(up to Sylow's theorem) and ring theory (Universal Property of |
|
691 |
Univariate Polynomials). Contributions welcome; |
|
13960 | 692 |
|
693 |
* GroupTheory: deleted, since its material has been moved to Algebra; |
|
694 |
||
14731 | 695 |
* Complex: new directory of the complex numbers with numeric constants, |
696 |
nonstandard complex numbers, and some complex analysis, standard and |
|
13966
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
697 |
nonstandard (Jacques Fleuriot); |
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
698 |
|
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
699 |
* HOL-Complex: new image for analysis, replacing HOL-Real and HOL-Hyperreal; |
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
700 |
|
14731 | 701 |
* Hyperreal: introduced Gauge integration and hyperreal logarithms (Jacques |
13966
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents:
13960
diff
changeset
|
702 |
Fleuriot); |
13960 | 703 |
|
13549 | 704 |
* Real/HahnBanach: updated and adapted to locales; |
705 |
||
13995 | 706 |
* NumberTheory: added Gauss's law of quadratic reciprocity (by Avigad, |
707 |
Gray and Kramer); |
|
13872 | 708 |
|
709 |
* UNITY: added the Meier-Sanders theory of progress sets; |
|
710 |
||
14011 | 711 |
* MicroJava: bytecode verifier and lightweight bytecode verifier |
712 |
as abstract algorithms, instantiated to the JVM; |
|
713 |
||
14010 | 714 |
* Bali: Java source language formalization. Type system, operational |
715 |
semantics, axiomatic semantics. Supported language features: |
|
716 |
classes, interfaces, objects,virtual methods, static methods, |
|
717 |
static/instance fields, arrays, access modifiers, definite |
|
718 |
assignment, exceptions. |
|
13549 | 719 |
|
14011 | 720 |
|
13549 | 721 |
*** ZF *** |
722 |
||
15154 | 723 |
* ZF/Constructible: consistency proof for AC (Gdel's constructible |
13549 | 724 |
universe, etc.); |
725 |
||
13872 | 726 |
* Main ZF: virtually all theories converted to new-style format; |
13518 | 727 |
|
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
728 |
|
13478 | 729 |
*** ML *** |
730 |
||
731 |
* Pure: Tactic.prove provides sane interface for internal proofs; |
|
732 |
omits the infamous "standard" operation, so this is more appropriate |
|
733 |
than prove_goalw_cterm in many situations (e.g. in simprocs); |
|
734 |
||
735 |
* Pure: improved error reporting of simprocs; |
|
736 |
||
737 |
* Provers: Simplifier.simproc(_i) provides sane interface for setting |
|
738 |
up simprocs; |
|
739 |
||
740 |
||
13953 | 741 |
*** Document preparation *** |
742 |
||
743 |
* uses \par instead of \\ for line breaks in theory text. This may |
|
744 |
shift some page breaks in large documents. To get the old behaviour |
|
745 |
use \renewcommand{\isanewline}{\mbox{}\\\mbox{}} in root.tex. |
|
746 |
||
14731 | 747 |
* minimized dependencies of isabelle.sty and isabellesym.sty on |
13953 | 748 |
other packages |
749 |
||
750 |
* \<euro> now needs package babel/greek instead of marvosym (which |
|
751 |
broke \Rightarrow) |
|
752 |
||
14731 | 753 |
* normal size for \<zero>...\<nine> (uses \mathbf instead of |
13954 | 754 |
textcomp package) |
13953 | 755 |
|
13280
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents:
13190
diff
changeset
|
756 |
|
14572 | 757 |
|
12984 | 758 |
New in Isabelle2002 (March 2002) |
759 |
-------------------------------- |
|
11474 | 760 |
|
11572 | 761 |
*** Document preparation *** |
762 |
||
11842
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
763 |
* greatly simplified document preparation setup, including more |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
764 |
graceful interpretation of isatool usedir -i/-d/-D options, and more |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
765 |
instructive isatool mkdir; users should basically be able to get |
12899
7d5b690253ee
"isatool usedir -D output HOL Test && isatool document Test/output";
wenzelm
parents:
12889
diff
changeset
|
766 |
started with "isatool mkdir HOL Test && isatool make"; alternatively, |
7d5b690253ee
"isatool usedir -D output HOL Test && isatool document Test/output";
wenzelm
parents:
12889
diff
changeset
|
767 |
users may run a separate document processing stage manually like this: |
7d5b690253ee
"isatool usedir -D output HOL Test && isatool document Test/output";
wenzelm
parents:
12889
diff
changeset
|
768 |
"isatool usedir -D output HOL Test && isatool document Test/output"; |
11842
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
769 |
|
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
770 |
* theory dependency graph may now be incorporated into documents; |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
771 |
isatool usedir -g true will produce session_graph.eps/.pdf for use |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
772 |
with \includegraphics of LaTeX; |
b903d3dabbe2
* greatly simplified document preparation setup, including more
wenzelm
parents:
11817
diff
changeset
|
773 |
|
11864
371ce685b0ec
* proper spacing of consecutive markup elements, especially text
wenzelm
parents:
11842
diff
changeset
|
774 |
* proper spacing of consecutive markup elements, especially text |
371ce685b0ec
* proper spacing of consecutive markup elements, especially text
wenzelm
parents:
11842
diff
changeset
|
775 |
blocks after section headings; |
371ce685b0ec
* proper spacing of consecutive markup elements, especially text
wenzelm
parents:
11842
diff
changeset
|
776 |
|
11572 | 777 |
* support bold style (for single symbols only), input syntax is like |
778 |
this: "\<^bold>\<alpha>" or "\<^bold>A"; |
|
779 |
||
11814 | 780 |
* \<bullet> is now output as bold \cdot by default, which looks much |
11572 | 781 |
better in printed text; |
782 |
||
11712
deb8cac87063
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
wenzelm
parents:
11702
diff
changeset
|
783 |
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>; |
deb8cac87063
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
wenzelm
parents:
11702
diff
changeset
|
784 |
note that these symbols are currently unavailable in Proof General / |
12769 | 785 |
X-Symbol; new symbols \<zero>, \<one>, ..., \<nine>, and \<euro>; |
12690 | 786 |
|
787 |
* isatool latex no longer depends on changed TEXINPUTS, instead |
|
788 |
isatool document copies the Isabelle style files to the target |
|
789 |
location; |
|
11712
deb8cac87063
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
wenzelm
parents:
11702
diff
changeset
|
790 |
|
11572 | 791 |
|
11633 | 792 |
*** Isar *** |
793 |
||
12312
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
794 |
* Pure/Provers: improved proof by cases and induction; |
12280 | 795 |
- 'case' command admits impromptu naming of parameters (such as |
796 |
"case (Suc n)"); |
|
797 |
- 'induct' method divinates rule instantiation from the inductive |
|
798 |
claim; no longer requires excessive ?P bindings for proper |
|
799 |
instantiation of cases; |
|
800 |
- 'induct' method properly enumerates all possibilities of set/type |
|
801 |
rules; as a consequence facts may be also passed through *type* |
|
802 |
rules without further ado; |
|
803 |
- 'induct' method now derives symbolic cases from the *rulified* |
|
804 |
rule (before it used to rulify cases stemming from the internal |
|
805 |
atomized version); this means that the context of a non-atomic |
|
806 |
statement becomes is included in the hypothesis, avoiding the |
|
807 |
slightly cumbersome show "PROP ?case" form; |
|
808 |
- 'induct' may now use elim-style induction rules without chaining |
|
809 |
facts, using ``missing'' premises from the goal state; this allows |
|
810 |
rules stemming from inductive sets to be applied in unstructured |
|
811 |
scripts, while still benefitting from proper handling of non-atomic |
|
812 |
statements; NB: major inductive premises need to be put first, all |
|
813 |
the rest of the goal is passed through the induction; |
|
814 |
- 'induct' proper support for mutual induction involving non-atomic |
|
815 |
rule statements (uses the new concept of simultaneous goals, see |
|
816 |
below); |
|
12853 | 817 |
- append all possible rule selections, but only use the first |
818 |
success (no backtracking); |
|
11995
4a622f5fb164
- 'induct' may now use elim-style induction rules without chaining
wenzelm
parents:
11986
diff
changeset
|
819 |
- removed obsolete "(simplified)" and "(stripped)" options of methods; |
12754
044a59921f3b
Isar: undeclared rule case names default to numbers 1, 2, 3, ...;
wenzelm
parents:
12753
diff
changeset
|
820 |
- undeclared rule case names default to numbers 1, 2, 3, ...; |
044a59921f3b
Isar: undeclared rule case names default to numbers 1, 2, 3, ...;
wenzelm
parents:
12753
diff
changeset
|
821 |
- added 'print_induct_rules' (covered by help item in recent Proof |
044a59921f3b
Isar: undeclared rule case names default to numbers 1, 2, 3, ...;
wenzelm
parents:
12753
diff
changeset
|
822 |
General versions); |
11995
4a622f5fb164
- 'induct' may now use elim-style induction rules without chaining
wenzelm
parents:
11986
diff
changeset
|
823 |
- moved induct/cases attributes to Pure, methods to Provers; |
4a622f5fb164
- 'induct' may now use elim-style induction rules without chaining
wenzelm
parents:
11986
diff
changeset
|
824 |
- generic method setup instantiated for FOL and HOL; |
11986
26b95a6f3f79
- 'induct' method now derives symbolic cases from the *rulified* rule
wenzelm
parents:
11965
diff
changeset
|
825 |
|
12163
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
826 |
* Pure: support multiple simultaneous goal statements, for example |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
827 |
"have a: A and b: B" (same for 'theorem' etc.); being a pure |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
828 |
meta-level mechanism, this acts as if several individual goals had |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
829 |
been stated separately; in particular common proof methods need to be |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
830 |
repeated in order to cover all claims; note that a single elimination |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
831 |
step is *not* sufficient to establish the two conjunctions, so this |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
832 |
fails: |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
833 |
|
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
834 |
assume "A & B" then have A and B .. (*".." fails*) |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
835 |
|
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
836 |
better use "obtain" in situations as above; alternative refer to |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
837 |
multi-step methods like 'auto', 'simp_all', 'blast+' etc.; |
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
wenzelm
parents:
12159
diff
changeset
|
838 |
|
12078
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
wenzelm
parents:
12034
diff
changeset
|
839 |
* Pure: proper integration with ``locales''; unlike the original |
15154 | 840 |
version by Florian Kammller, Isar locales package high-level proof |
12078
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
wenzelm
parents:
12034
diff
changeset
|
841 |
contexts rather than raw logical ones (e.g. we admit to include |
12280 | 842 |
attributes everywhere); operations on locales include merge and |
12964 | 843 |
rename; support for implicit arguments (``structures''); simultaneous |
844 |
type-inference over imports and text; see also HOL/ex/Locales.thy for |
|
845 |
some examples; |
|
12078
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
wenzelm
parents:
12034
diff
changeset
|
846 |
|
12707
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
847 |
* Pure: the following commands have been ``localized'', supporting a |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
848 |
target locale specification "(in name)": 'lemma', 'theorem', |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
849 |
'corollary', 'lemmas', 'theorems', 'declare'; the results will be |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
850 |
stored both within the locale and at the theory level (exported and |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
851 |
qualified by the locale name); |
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
wenzelm
parents:
12690
diff
changeset
|
852 |
|
12964 | 853 |
* Pure: theory goals may now be specified in ``long'' form, with |
854 |
ad-hoc contexts consisting of arbitrary locale elements. for example |
|
855 |
``lemma foo: fixes x assumes "A x" shows "B x"'' (local syntax and |
|
856 |
definitions may be given, too); the result is a meta-level rule with |
|
857 |
the context elements being discharged in the obvious way; |
|
858 |
||
859 |
* Pure: new proof command 'using' allows to augment currently used |
|
860 |
facts after a goal statement ('using' is syntactically analogous to |
|
861 |
'apply', but acts on the goal's facts only); this allows chained facts |
|
862 |
to be separated into parts given before and after a claim, as in |
|
863 |
``from a and b have C using d and e <proof>''; |
|
12078
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
wenzelm
parents:
12034
diff
changeset
|
864 |
|
11722 | 865 |
* Pure: renamed "antecedent" case to "rule_context"; |
866 |
||
12964 | 867 |
* Pure: new 'judgment' command records explicit information about the |
868 |
object-logic embedding (used by several tools internally); no longer |
|
869 |
use hard-wired "Trueprop"; |
|
870 |
||
11738 | 871 |
* Pure: added 'corollary' command; |
872 |
||
11722 | 873 |
* Pure: fixed 'token_translation' command; |
874 |
||
11899 | 875 |
* Pure: removed obsolete 'exported' attribute; |
876 |
||
11933 | 877 |
* Pure: dummy pattern "_" in is/let is now automatically lifted over |
878 |
bound variables: "ALL x. P x --> Q x" (is "ALL x. _ --> ?C x") |
|
11899 | 879 |
supersedes more cumbersome ... (is "ALL x. _ x --> ?C x"); |
880 |
||
11952
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
881 |
* Pure: method 'atomize' presents local goal premises as object-level |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
882 |
statements (atomic meta-level propositions); setup controlled via |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
883 |
rewrite rules declarations of 'atomize' attribute; example |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
884 |
application: 'induct' method with proper rule statements in improper |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
885 |
proof *scripts*; |
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
wenzelm
parents:
11937
diff
changeset
|
886 |
|
12106
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
887 |
* Pure: emulation of instantiation tactics (rule_tac, cut_tac, etc.) |
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
888 |
now consider the syntactic context of assumptions, giving a better |
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
889 |
chance to get type-inference of the arguments right (this is |
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
890 |
especially important for locales); |
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
wenzelm
parents:
12078
diff
changeset
|
891 |
|
12312
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
892 |
* Pure: "sorry" no longer requires quick_and_dirty in interactive |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
893 |
mode; |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
894 |
|
12405
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
895 |
* Pure/obtain: the formal conclusion "thesis", being marked as |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
896 |
``internal'', may no longer be reference directly in the text; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
897 |
potential INCOMPATIBILITY, may need to use "?thesis" in rare |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
898 |
situations; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
899 |
|
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
900 |
* Pure: generic 'sym' attribute which declares a rule both as pure |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
901 |
'elim?' and for the 'symmetric' operation; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
902 |
|
12877
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
wenzelm
parents:
12853
diff
changeset
|
903 |
* Pure: marginal comments ``--'' may now occur just anywhere in the |
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
wenzelm
parents:
12853
diff
changeset
|
904 |
text; the fixed correlation with particular command syntax has been |
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
wenzelm
parents:
12853
diff
changeset
|
905 |
discontinued; |
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
wenzelm
parents:
12853
diff
changeset
|
906 |
|
13023
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
907 |
* Pure: new method 'rules' is particularly well-suited for proof |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
908 |
search in intuitionistic logic; a bit slower than 'blast' or 'fast', |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
909 |
but often produces more compact proof terms with less detours; |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
910 |
|
12364
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
911 |
* Pure/Provers/classical: simplified integration with pure rule |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
912 |
attributes and methods; the classical "intro?/elim?/dest?" |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
913 |
declarations coincide with the pure ones; the "rule" method no longer |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
914 |
includes classically swapped intros; "intro" and "elim" methods no |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
915 |
longer pick rules from the context; also got rid of ML declarations |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
916 |
AddXIs/AddXEs/AddXDs; all of this has some potential for |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
917 |
INCOMPATIBILITY; |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
918 |
|
12405
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
919 |
* Provers/classical: attribute 'swapped' produces classical inversions |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
920 |
of introduction rules; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
921 |
|
12364
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
922 |
* Provers/simplifier: 'simplified' attribute may refer to explicit |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
923 |
rules instead of full simplifier context; 'iff' attribute handles |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
924 |
conditional rules; |
11936
fef099613354
* Provers: 'simplified' attribute may refer to explicit rules instead
wenzelm
parents:
11933
diff
changeset
|
925 |
|
11745
06cd8c3b5487
* HOL: 'typedef' now allows alternative names for Rep/Abs morphisms;
wenzelm
parents:
11738
diff
changeset
|
926 |
* HOL: 'typedef' now allows alternative names for Rep/Abs morphisms; |
06cd8c3b5487
* HOL: 'typedef' now allows alternative names for Rep/Abs morphisms;
wenzelm
parents:
11738
diff
changeset
|
927 |
|
11690 | 928 |
* HOL: 'recdef' now fails on unfinished automated proofs, use |
11633 | 929 |
"(permissive)" option to recover old behavior; |
930 |
||
11933 | 931 |
* HOL: 'inductive' no longer features separate (collective) attributes |
932 |
for 'intros' (was found too confusing); |
|
933 |
||
12405
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
934 |
* HOL: properly declared induction rules less_induct and |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
935 |
wf_induct_rule; |
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
wenzelm
parents:
12364
diff
changeset
|
936 |
|
11788
60054fee3c16
canonical 'cases'/'induct' rules for n-tuples (n=3..7)
kleing
parents:
11745
diff
changeset
|
937 |
|
11474 | 938 |
*** HOL *** |
939 |
||
11702 | 940 |
* HOL: moved over to sane numeral syntax; the new policy is as |
941 |
follows: |
|
942 |
||
943 |
- 0 and 1 are polymorphic constants, which are defined on any |
|
944 |
numeric type (nat, int, real etc.); |
|
945 |
||
946 |
- 2, 3, 4, ... and -1, -2, -3, ... are polymorphic numerals, based |
|
947 |
binary representation internally; |
|
948 |
||
949 |
- type nat has special constructor Suc, and generally prefers Suc 0 |
|
950 |
over 1::nat and Suc (Suc 0) over 2::nat; |
|
951 |
||
12364
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
952 |
This change may cause significant problems of INCOMPATIBILITY; here |
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
wenzelm
parents:
12335
diff
changeset
|
953 |
are some hints on converting existing sources: |
11702 | 954 |
|
955 |
- due to the new "num" token, "-0" and "-1" etc. are now atomic |
|
956 |
entities, so expressions involving "-" (unary or binary minus) need |
|
957 |
to be spaced properly; |
|
958 |
||
959 |
- existing occurrences of "1" may need to be constraint "1::nat" or |
|
960 |
even replaced by Suc 0; similar for old "2"; |
|
961 |
||
962 |
- replace "#nnn" by "nnn", and "#-nnn" by "-nnn"; |
|
963 |
||
964 |
- remove all special provisions on numerals in proofs; |
|
965 |
||
13042 | 966 |
* HOL: simp rules nat_number expand numerals on nat to Suc/0 |
12837 | 967 |
representation (depends on bin_arith_simps in the default context); |
968 |
||
12736 | 969 |
* HOL: symbolic syntax for x^2 (numeral 2); |
970 |
||
12335
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
971 |
* HOL: the class of all HOL types is now called "type" rather than |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
972 |
"term"; INCOMPATIBILITY, need to adapt references to this type class |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
973 |
in axclass/classes, instance/arities, and (usually rare) occurrences |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
974 |
in typings (of consts etc.); internally the class is called |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
975 |
"HOL.type", ML programs should refer to HOLogic.typeS; |
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
wenzelm
parents:
12312
diff
changeset
|
976 |
|
12280 | 977 |
* HOL/record package improvements: |
978 |
- new derived operations "fields" to build a partial record section, |
|
979 |
"extend" to promote a fixed record to a record scheme, and |
|
980 |
"truncate" for the reverse; cf. theorems "xxx.defs", which are *not* |
|
981 |
declared as simp by default; |
|
12587
3f3d2ffb5df5
HOL/record: shared operations ("more", "fields", etc.) now need to be
wenzelm
parents:
12564
diff
changeset
|
982 |
- shared operations ("more", "fields", etc.) now need to be always |
3f3d2ffb5df5
HOL/record: shared operations ("more", "fields", etc.) now need to be
wenzelm
parents:
12564
diff
changeset
|
983 |
qualified) --- potential INCOMPATIBILITY; |
12280 | 984 |
- removed "make_scheme" operations (use "make" with "extend") -- |
985 |
INCOMPATIBILITY; |
|
11937 | 986 |
- removed "more" class (simply use "term") -- INCOMPATIBILITY; |
12253 | 987 |
- provides cases/induct rules for use with corresponding Isar |
988 |
methods (for concrete records, record schemes, concrete more |
|
12280 | 989 |
parts, and schematic more parts -- in that order); |
11930 | 990 |
- internal definitions directly based on a light-weight abstract |
991 |
theory of product types over typedef rather than datatype; |
|
992 |
||
13023
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
993 |
* HOL: generic code generator for generating executable ML code from |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
994 |
specifications; specific support for HOL constructs such as inductive |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
995 |
datatypes and sets, as well as recursive functions; can be invoked |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
996 |
via 'generate_code' theory section; |
f869b6822006
Added two paragraphs on "rules" method and code generator.
berghofe
parents:
12984
diff
changeset
|
997 |
|
11933 | 998 |
* HOL: canonical cases/induct rules for n-tuples (n = 3..7); |
999 |
||
13824 | 1000 |
* HOL: consolidated and renamed several theories. In particular: |
14731 | 1001 |
Ord.thy has been absorbed into HOL.thy |
1002 |
String.thy has been absorbed into List.thy |
|
1003 |
||
11802
1d5f5d2427d2
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
wenzelm
parents:
11797
diff
changeset
|
1004 |
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A" |
1d5f5d2427d2
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
wenzelm
parents:
11797
diff
changeset
|
1005 |
(beware of argument permutation!); |
1d5f5d2427d2
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
wenzelm
parents:
11797
diff
changeset
|
1006 |
|
11657 | 1007 |
* HOL: linorder_less_split superseded by linorder_cases; |
1008 |
||
12917 | 1009 |
* HOL/List: "nodups" renamed to "distinct"; |
12889 | 1010 |
|
11633 | 1011 |
* HOL: added "The" definite description operator; move Hilbert's "Eps" |
13824 | 1012 |
to peripheral theory "Hilbert_Choice"; some INCOMPATIBILITIES: |
1013 |
- Ex_def has changed, now need to use some_eq_ex |
|
11437 | 1014 |
|
11572 | 1015 |
* HOL: made split_all_tac safe; EXISTING PROOFS MAY FAIL OR LOOP, so |
1016 |
in this (rare) case use: |
|
1017 |
||
1018 |
delSWrapper "split_all_tac" |
|
1019 |
addSbefore ("unsafe_split_all_tac", unsafe_split_all_tac) |
|
1020 |
||
1021 |
* HOL: added safe wrapper "split_conv_tac" to claset; EXISTING PROOFS |
|
11474 | 1022 |
MAY FAIL; |
11361 | 1023 |
|
11572 | 1024 |
* HOL: introduced f^n = f o ... o f; warning: due to the limits of |
1025 |
Isabelle's type classes, ^ on functions and relations has too general |
|
1026 |
a domain, namely ('a * 'b) set and 'a => 'b; this means that it may be |
|
1027 |
necessary to attach explicit type constraints; |
|
11307 | 1028 |
|
12917 | 1029 |
* HOL/Relation: the prefix name of the infix "O" has been changed from |
1030 |
"comp" to "rel_comp"; INCOMPATIBILITY: a few theorems have been |
|
1031 |
renamed accordingly (eg "compI" -> "rel_compI"). |
|
12489 | 1032 |
|
11487
95071c9e85a3
* HOL: syntax translations now work properly with numerals and records
wenzelm
parents:
11475
diff
changeset
|
1033 |
* HOL: syntax translations now work properly with numerals and records |
95071c9e85a3
* HOL: syntax translations now work properly with numerals and records
wenzelm
parents:
11475
diff
changeset
|
1034 |
expressions; |
11474 | 1035 |
|
12457
cbfc53e45476
* HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead
wenzelm
parents:
12405
diff
changeset
|
1036 |
* HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead |
cbfc53e45476
* HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead
wenzelm
parents:
12405
diff
changeset
|
1037 |
of "lam" -- INCOMPATIBILITY; |
11474 | 1038 |
|
11933 | 1039 |
* HOL: got rid of some global declarations (potential INCOMPATIBILITY |
1040 |
for ML tools): const "()" renamed "Product_Type.Unity", type "unit" |
|
1041 |
renamed "Product_Type.unit"; |
|
11611 | 1042 |
|
12564 | 1043 |
* HOL: renamed rtrancl_into_rtrancl2 to converse_rtrancl_into_rtrancl |
1044 |
||
12924 | 1045 |
* HOL: removed obsolete theorem "optionE" (use "option.exhaust", or |
1046 |
the "cases" method); |
|
1047 |
||
12597
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
1048 |
* HOL/GroupTheory: group theory examples including Sylow's theorem (by |
15154 | 1049 |
Florian Kammller); |
12597
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
1050 |
|
12608
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
1051 |
* HOL/IMP: updated and converted to new-style theory format; several |
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
1052 |
parts turned into readable document, with proper Isar proof texts and |
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
1053 |
some explanations (by Gerwin Klein); |
12597
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
1054 |
|
12734 | 1055 |
* HOL-Real: added Complex_Numbers (by Gertrud Bauer); |
1056 |
||
12690 | 1057 |
* HOL-Hyperreal is now a logic image; |
1058 |
||
11611 | 1059 |
|
12022
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
wenzelm
parents:
11995
diff
changeset
|
1060 |
*** HOLCF *** |
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
wenzelm
parents:
11995
diff
changeset
|
1061 |
|
12622 | 1062 |
* Isar: consts/constdefs supports mixfix syntax for continuous |
1063 |
operations; |
|
1064 |
||
1065 |
* Isar: domain package adapted to new-style theory format, e.g. see |
|
1066 |
HOLCF/ex/Dnat.thy; |
|
1067 |
||
1068 |
* theory Lift: proper use of rep_datatype lift instead of ML hacks -- |
|
12280 | 1069 |
potential INCOMPATIBILITY; now use plain induct_tac instead of former |
1070 |
lift.induct_tac, always use UU instead of Undef; |
|
12022
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
wenzelm
parents:
11995
diff
changeset
|
1071 |
|
12597
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
1072 |
* HOLCF/IMP: updated and converted to new-style theory; |
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
1073 |
|
12022
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
wenzelm
parents:
11995
diff
changeset
|
1074 |
|
11474 | 1075 |
*** ZF *** |
1076 |
||
12622 | 1077 |
* Isar: proper integration of logic-specific tools and packages, |
1078 |
including theory commands '(co)inductive', '(co)datatype', |
|
1079 |
'rep_datatype', 'inductive_cases', as well as methods 'ind_cases', |
|
1080 |
'induct_tac', 'case_tac', and 'typecheck' (with attribute 'TC'); |
|
1081 |
||
1082 |
* theory Main no longer includes AC; for the Axiom of Choice, base |
|
1083 |
your theory on Main_ZFC; |
|
1084 |
||
1085 |
* the integer library now covers quotients and remainders, with many |
|
1086 |
laws relating division to addition, multiplication, etc.; |
|
12563 | 1087 |
|
12280 | 1088 |
* ZF/UNITY: Chandy and Misra's UNITY is now available in ZF, giving a |
1089 |
typeless version of the formalism; |
|
1090 |
||
13025 | 1091 |
* ZF/AC, Coind, IMP, Resid: updated and converted to new-style theory |
1092 |
format; |
|
12608
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
1093 |
|
12280 | 1094 |
* ZF/Induct: new directory for examples of inductive definitions, |
12608
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
1095 |
including theory Multiset for multiset orderings; converted to |
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
wenzelm
parents:
12597
diff
changeset
|
1096 |
new-style theory format; |
12177
b1c16d685a99
* ZF: new-style theory commands 'inductive', 'inductive_cases', and
wenzelm
parents:
12163
diff
changeset
|
1097 |
|
13025 | 1098 |
* ZF: many new theorems about lists, ordinals, etc.; |
12850 | 1099 |
|
11474 | 1100 |
|
1101 |
*** General *** |
|
1102 |
||
12280 | 1103 |
* Pure/kernel: meta-level proof terms (by Stefan Berghofer); reference |
1104 |
variable proof controls level of detail: 0 = no proofs (only oracle |
|
1105 |
dependencies), 1 = lemma dependencies, 2 = compact proof terms; see |
|
1106 |
also ref manual for further ML interfaces; |
|
1107 |
||
1108 |
* Pure/axclass: removed obsolete ML interface |
|
1109 |
goal_subclass/goal_arity; |
|
1110 |
||
1111 |
* Pure/syntax: new token syntax "num" for plain numerals (without "#" |
|
1112 |
of "xnum"); potential INCOMPATIBILITY, since -0, -1 etc. are now |
|
1113 |
separate tokens, so expressions involving minus need to be spaced |
|
1114 |
properly; |
|
1115 |
||
12312
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
1116 |
* Pure/syntax: support non-oriented infixes, using keyword "infix" |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
1117 |
rather than "infixl" or "infixr"; |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
1118 |
|
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
1119 |
* Pure/syntax: concrete syntax for dummy type variables admits genuine |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
1120 |
sort constraint specifications in type inference; e.g. "x::_::foo" |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
1121 |
ensures that the type of "x" is of sort "foo" (but not necessarily a |
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
wenzelm
parents:
12280
diff
changeset
|
1122 |
type variable); |
12280 | 1123 |
|
1124 |
* Pure/syntax: print modes "type_brackets" and "no_type_brackets" |
|
1125 |
control output of nested => (types); the default behavior is |
|
1126 |
"type_brackets"; |
|
1127 |
||
1128 |
* Pure/syntax: builtin parse translation for "_constify" turns valued |
|
11817 | 1129 |
tokens into AST constants; |
11474 | 1130 |
|
12280 | 1131 |
* Pure/syntax: prefer later declarations of translations and print |
1132 |
translation functions; potential INCOMPATIBILITY: need to reverse |
|
1133 |
multiple declarations for same syntax element constant; |
|
1134 |
||
12832
c31b44286a8a
* Pure/show_hyps reset by default (in accordance to existing Isar practice);
wenzelm
parents:
12777
diff
changeset
|
1135 |
* Pure/show_hyps reset by default (in accordance to existing Isar |
c31b44286a8a
* Pure/show_hyps reset by default (in accordance to existing Isar practice);
wenzelm
parents:
12777
diff
changeset
|
1136 |
practice); |
c31b44286a8a
* Pure/show_hyps reset by default (in accordance to existing Isar practice);
wenzelm
parents:
12777
diff
changeset
|
1137 |
|
12280 | 1138 |
* Provers/classical: renamed addaltern to addafter, addSaltern to |
1139 |
addSafter; |
|
1140 |
||
1141 |
* Provers/clasimp: ``iff'' declarations now handle conditional rules |
|
1142 |
as well; |
|
12253 | 1143 |
|
12538 | 1144 |
* system: tested support for MacOS X; should be able to get Isabelle + |
1145 |
Proof General to work in a plain Terminal after installing Poly/ML |
|
1146 |
(e.g. from the Isabelle distribution area) and GNU bash alone |
|
1147 |
(e.g. from http://www.apple.com); full X11, XEmacs and X-Symbol |
|
1148 |
support requires further installations, e.g. from |
|
1149 |
http://fink.sourceforge.net/); |
|
1150 |
||
12280 | 1151 |
* system: support Poly/ML 4.1.1 (able to manage larger heaps); |
11551 | 1152 |
|
12753
3a62df7ae926
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead
wenzelm
parents:
12736
diff
changeset
|
1153 |
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead |
3a62df7ae926
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead
wenzelm
parents:
12736
diff
changeset
|
1154 |
of 40 MB), cf. ML_OPTIONS; |
3a62df7ae926
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead
wenzelm
parents:
12736
diff
changeset
|
1155 |
|
11633 | 1156 |
* system: Proof General keywords specification is now part of the |
1157 |
Isabelle distribution (see etc/isar-keywords.el); |
|
1158 |
||
12728 | 1159 |
* system: support for persistent Proof General sessions (refrain from |
1160 |
outdating all loaded theories on startup); user may create writable |
|
1161 |
logic images like this: ``isabelle -q HOL Test''; |
|
12597
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
wenzelm
parents:
12587
diff
changeset
|
1162 |
|
11551 | 1163 |
* system: smart selection of Isabelle process versus Isabelle |
11572 | 1164 |
interface, accommodates case-insensitive file systems (e.g. HFS+); may |
1165 |
run both "isabelle" and "Isabelle" even if file names are badly |
|
1166 |
damaged (executable inspects the case of the first letter of its own |
|
1167 |
name); added separate "isabelle-process" and "isabelle-interface"; |
|
11551 | 1168 |
|
12472 | 1169 |
* system: refrain from any attempt at filtering input streams; no |
1170 |
longer support ``8bit'' encoding of old isabelle font, instead proper |
|
1171 |
iso-latin characters may now be used; the related isatools |
|
1172 |
"symbolinput" and "nonascii" have disappeared as well; |
|
1173 |
||
1174 |
* system: removed old "xterm" interface (the print modes "xterm" and |
|
1175 |
"xterm_color" are still available for direct use in a suitable |
|
1176 |
terminal); |
|
1177 |
||
11314 | 1178 |
|
11169
98c2f741e32b
made split_all_tac safe introducing safe_full_simp_tac, EXISTING PROOFS MAY FAIL
oheimb
parents:
11130
diff
changeset
|
1179 |
|
11062 | 1180 |
New in Isabelle99-2 (February 2001) |
1181 |
----------------------------------- |
|
1182 |
||
10224 | 1183 |
*** Overview of INCOMPATIBILITIES *** |
1184 |
||
11241 | 1185 |
* HOL: please note that theories in the Library and elsewhere often use the |
1186 |
new-style (Isar) format; to refer to their theorems in an ML script you must |
|
12622 | 1187 |
bind them to ML identifers by e.g. val thm_name = thm "thm_name"; |
11241 | 1188 |
|
11043
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
wenzelm
parents:
11016
diff
changeset
|
1189 |
* HOL: inductive package no longer splits induction rule aggressively, |
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
wenzelm
parents:
11016
diff
changeset
|
1190 |
but only as far as specified by the introductions given; the old |
11130 | 1191 |
format may be recovered via ML function complete_split_rule or attribute |
11043
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
wenzelm
parents:
11016
diff
changeset
|
1192 |
'split_rule (complete)'; |
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
wenzelm
parents:
11016
diff
changeset
|
1193 |
|
10998 | 1194 |
* HOL: induct renamed to lfp_induct, lfp_Tarski to lfp_unfold, |
1195 |
gfp_Tarski to gfp_unfold; |
|
10224 | 1196 |
|
10288 | 1197 |
* HOL: contrapos, contrapos2 renamed to contrapos_nn, contrapos_pp; |
1198 |
||
10858 | 1199 |
* HOL: infix "dvd" now has priority 50 rather than 70 (because it is a |
1200 |
relation); infix "^^" has been renamed "``"; infix "``" has been |
|
1201 |
renamed "`"; "univalent" has been renamed "single_valued"; |
|
10793 | 1202 |
|
10998 | 1203 |
* HOL/Real: "rinv" and "hrinv" replaced by overloaded "inverse" |
1204 |
operation; |
|
1205 |
||
10868 | 1206 |
* HOLCF: infix "`" has been renamed "$"; the symbol syntax is \<cdot>; |
10856 | 1207 |
|
10391 | 1208 |
* Isar: 'obtain' no longer declares "that" fact as simp/intro; |
1209 |
||
10401
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
1210 |
* Isar/HOL: method 'induct' now handles non-atomic goals; as a |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
1211 |
consequence, it is no longer monotonic wrt. the local goal context |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
1212 |
(which is now passed through the inductive cases); |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
1213 |
|
10976
0e7cf6f9fa29
* Document preparation: renamed standard symbols \<ll> to \<lless> and
wenzelm
parents:
10966
diff
changeset
|
1214 |
* Document preparation: renamed standard symbols \<ll> to \<lless> and |
0e7cf6f9fa29
* Document preparation: renamed standard symbols \<ll> to \<lless> and
wenzelm
parents:
10966
diff
changeset
|
1215 |
\<gg> to \<ggreater>; |
0e7cf6f9fa29
* Document preparation: renamed standard symbols \<ll> to \<lless> and
wenzelm
parents:
10966
diff
changeset
|
1216 |
|
10224 | 1217 |
|
10245
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1218 |
*** Document preparation *** |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1219 |
|
10858 | 1220 |
* \isabellestyle{NAME} selects version of Isabelle output (currently |
1221 |
available: are "it" for near math-mode best-style output, "sl" for |
|
1222 |
slanted text style, and "tt" for plain type-writer; if no |
|
1223 |
\isabellestyle command is given, output is according to slanted |
|
1224 |
type-writer); |
|
1225 |
||
10322
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
1226 |
* support sub/super scripts (for single symbols only), input syntax is |
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
1227 |
like this: "A\<^sup>*" or "A\<^sup>\<star>"; |
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
1228 |
|
10858 | 1229 |
* some more standard symbols; see Appendix A of the system manual for |
11062 | 1230 |
the complete list of symbols defined in isabellesym.sty; |
10858 | 1231 |
|
10998 | 1232 |
* improved isabelle style files; more abstract symbol implementation |
1233 |
(should now use \isamath{...} and \isatext{...} in custom symbol |
|
1234 |
definitions); |
|
1235 |
||
10634 | 1236 |
* antiquotation @{goals} and @{subgoals} for output of *dynamic* goals |
1237 |
state; Note that presentation of goal states does not conform to |
|
1238 |
actual human-readable proof documents. Please do not include goal |
|
1239 |
states into document output unless you really know what you are doing! |
|
10322
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
1240 |
|
11062 | 1241 |
* proper indentation of antiquoted output with proportional LaTeX |
1242 |
fonts; |
|
10862 | 1243 |
|
11050
ac5709ac50b9
* no_document ML operator temporarily disables LaTeX document
wenzelm
parents:
11043
diff
changeset
|
1244 |
* no_document ML operator temporarily disables LaTeX document |
ac5709ac50b9
* no_document ML operator temporarily disables LaTeX document
wenzelm
parents:
11043
diff
changeset
|
1245 |
generation; |
ac5709ac50b9
* no_document ML operator temporarily disables LaTeX document
wenzelm
parents:
11043
diff
changeset
|
1246 |
|
11062 | 1247 |
* isatool unsymbolize tunes sources for plain ASCII communication; |
1248 |
||
10322
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
wenzelm
parents:
10306
diff
changeset
|
1249 |
|
10306
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
wenzelm
parents:
10288
diff
changeset
|
1250 |
*** Isar *** |
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
wenzelm
parents:
10288
diff
changeset
|
1251 |
|
10547 | 1252 |
* Pure: Isar now suffers initial goal statements to contain unbound |
1253 |
schematic variables (this does not conform to actual readable proof |
|
1254 |
documents, due to unpredictable outcome and non-compositional proof |
|
1255 |
checking); users who know what they are doing may use schematic goals |
|
1256 |
for Prolog-style synthesis of proven results; |
|
1257 |
||
10391 | 1258 |
* Pure: assumption method (an implicit finishing) now handles actual |
1259 |
rules as well; |
|
1260 |
||
1261 |
* Pure: improved 'obtain' --- moved to Pure, insert "that" into |
|
1262 |
initial goal, declare "that" only as Pure intro (only for single |
|
1263 |
steps); the "that" rule assumption may now be involved in implicit |
|
1264 |
finishing, thus ".." becomes a feasible for trivial obtains; |
|
1265 |
||
1266 |
* Pure: default proof step now includes 'intro_classes'; thus trivial |
|
1267 |
instance proofs may be performed by ".."; |
|
1268 |
||
1269 |
* Pure: ?thesis / ?this / "..." now work for pure meta-level |
|
1270 |
statements as well; |
|
10306
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
wenzelm
parents:
10288
diff
changeset
|
1271 |
|
11097 | 1272 |
* Pure: more robust selection of calculational rules; |
1273 |
||
10858 | 1274 |
* Pure: the builtin notion of 'finished' goal now includes the ==-refl |
1275 |
rule (as well as the assumption rule); |
|
1276 |
||
1277 |
* Pure: 'thm_deps' command visualizes dependencies of theorems and |
|
1278 |
lemmas, using the graph browser tool; |
|
1279 |
||
10944 | 1280 |
* Pure: predict failure of "show" in interactive mode; |
1281 |
||
11016
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
wenzelm
parents:
10998
diff
changeset
|
1282 |
* Pure: 'thms_containing' now takes actual terms as arguments; |
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
wenzelm
parents:
10998
diff
changeset
|
1283 |
|
10401
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
1284 |
* HOL: improved method 'induct' --- now handles non-atomic goals |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
1285 |
(potential INCOMPATIBILITY); tuned error handling; |
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
wenzelm
parents:
10391
diff
changeset
|
1286 |
|
10557 | 1287 |
* HOL: cases and induct rules now provide explicit hints about the |
10547 | 1288 |
number of facts to be consumed (0 for "type" and 1 for "set" rules); |
1289 |
any remaining facts are inserted into the goal verbatim; |
|
1290 |
||
10858 | 1291 |
* HOL: local contexts (aka cases) may now contain term bindings as |
1292 |
well; the 'cases' and 'induct' methods new provide a ?case binding for |
|
1293 |
the result to be shown in each case; |
|
1294 |
||
10770 | 1295 |
* HOL: added 'recdef_tc' command; |
1296 |
||
11016
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
wenzelm
parents:
10998
diff
changeset
|
1297 |
* isatool convert assists in eliminating legacy ML scripts; |
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
wenzelm
parents:
10998
diff
changeset
|
1298 |
|
10306
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
wenzelm
parents:
10288
diff
changeset
|
1299 |
|
10245
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1300 |
*** HOL *** |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1301 |
|
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1302 |
* HOL/Library: a collection of generic theories to be used together |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1303 |
with main HOL; the theory loader path already includes this directory |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1304 |
by default; the following existing theories have been moved here: |
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1305 |
HOL/Induct/Multiset, HOL/Induct/Acc (as Accessible_Part), HOL/While |
10337 | 1306 |
(as While_Combinator), HOL/Lex/Prefix (as List_Prefix); |
10245
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1307 |
|
10966 | 1308 |
* HOL/Unix: "Some aspects of Unix file-system security", a typical |
1309 |
modelling and verification task performed in Isabelle/HOL + |
|
1310 |
Isabelle/Isar + Isabelle document preparation (by Markus Wenzel). |
|
1311 |
||
11094 | 1312 |
* HOL/Algebra: special summation operator SUM no longer exists, it has |
1313 |
been replaced by setsum; infix 'assoc' now has priority 50 (like |
|
1314 |
'dvd'); axiom 'one_not_zero' has been moved from axclass 'ring' to |
|
1315 |
'domain', this makes the theory consistent with mathematical |
|
1316 |
literature; |
|
1317 |
||
10514 | 1318 |
* HOL basics: added overloaded operations "inverse" and "divide" |
10726 | 1319 |
(infix "/"), syntax for generic "abs" operation, generic summation |
11094 | 1320 |
operator \<Sum>; |
10452
abeefb0a79ae
* added overloaded operations "inverse" and "divide" (infix "/");
wenzelm
parents:
10428
diff
changeset
|
1321 |
|
10391 | 1322 |
* HOL/typedef: simplified package, provide more useful rules (see also |
1323 |
HOL/subset.thy); |
|
1324 |
||
10915
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1325 |
* HOL/datatype: induction rule for arbitrarily branching datatypes is |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1326 |
now expressed as a proper nested rule (old-style tactic scripts may |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1327 |
require atomize_strip_tac to cope with non-atomic premises); |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1328 |
|
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1329 |
* HOL: renamed theory "Prod" to "Product_Type", renamed "split" rule |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1330 |
to "split_conv" (old name still available for compatibility); |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1331 |
|
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1332 |
* HOL: improved concrete syntax for strings (e.g. allows translation |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1333 |
rules with string literals); |
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
wenzelm
parents:
10868
diff
changeset
|
1334 |
|
12245 | 1335 |
* HOL-Real-Hyperreal: this extends HOL-Real with the hyperreals |
1336 |
and Fleuriot's mechanization of analysis, including the transcendental |
|
1337 |
functions for the reals; |
|
10756 | 1338 |
|
11094 | 1339 |
* HOL/Real, HOL/Hyperreal: improved arithmetic simplification; |
10391 | 1340 |
|
10858 | 1341 |
|
10474 | 1342 |
*** CTT *** |
1343 |
||
10547 | 1344 |
* CTT: x-symbol support for Pi, Sigma, -->, : (membership); note that |
1345 |
"lam" is displayed as TWO lambda-symbols |
|
10474 | 1346 |
|
10547 | 1347 |
* CTT: theory Main now available, containing everything (that is, Bool |
1348 |
and Arith); |
|
1349 |
||
10474 | 1350 |
|
10391 | 1351 |
*** General *** |
1352 |
||
10547 | 1353 |
* Pure: the Simplifier has been implemented properly as a derived rule |
1354 |
outside of the actual kernel (at last!); the overall performance |
|
1355 |
penalty in practical applications is about 50%, while reliability of |
|
1356 |
the Isabelle inference kernel has been greatly improved; |
|
1357 |
||
11112 | 1358 |
* print modes "brackets" and "no_brackets" control output of nested => |
1359 |
(types) and ==> (props); the default behaviour is "brackets"; |
|
1360 |
||
10391 | 1361 |
* Provers: fast_tac (and friends) now handle actual object-logic rules |
1362 |
as assumptions as well; |
|
1363 |
||
11124 | 1364 |
* system: support Poly/ML 4.0; |
1365 |
||
1366 |
* system: isatool install handles KDE version 1 or 2; |
|
1367 |
||
10391 | 1368 |
|
10245
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
wenzelm
parents:
10224
diff
changeset
|
1369 |
|
10103 | 1370 |
New in Isabelle99-1 (October 2000) |
1371 |
---------------------------------- |
|
8015 | 1372 |
|
10003 | 1373 |
*** Overview of INCOMPATIBILITIES *** |
8014 | 1374 |
|
8848 | 1375 |
* HOL: simplification of natural numbers is much changed; to partly |
1376 |
recover the old behaviour (e.g. to prevent n+n rewriting to #2*n) |
|
1377 |
issue the following ML commands: |
|
1378 |
||
1379 |
Delsimprocs Nat_Numeral_Simprocs.cancel_numerals; |
|
1380 |
Delsimprocs [Nat_Numeral_Simprocs.combine_numerals]; |
|
8788 | 1381 |
|
10129 | 1382 |
* HOL: simplification no longer dives into case-expressions; this is |
1383 |
controlled by "t.weak_case_cong" for each datatype t; |
|
10003 | 1384 |
|
1385 |
* HOL: nat_less_induct renamed to less_induct; |
|
1386 |
||
1387 |
* HOL: systematic renaming of the SOME (Eps) rules, may use isatool |
|
1388 |
fixsome to patch .thy and .ML sources automatically; |
|
8967 | 1389 |
|
10003 | 1390 |
select_equality -> some_equality |
1391 |
select_eq_Ex -> some_eq_ex |
|
1392 |
selectI2EX -> someI2_ex |
|
1393 |
selectI2 -> someI2 |
|
1394 |
selectI -> someI |
|
1395 |
select1_equality -> some1_equality |
|
1396 |
Eps_sym_eq -> some_sym_eq_trivial |
|
1397 |
Eps_eq -> some_eq_trivial |
|
1398 |
||
1399 |
* HOL: exhaust_tac on datatypes superceded by new generic case_tac; |
|
1400 |
||
1401 |
* HOL: removed obsolete theorem binding expand_if (refer to split_if |
|
1402 |
instead); |
|
1403 |
||
1404 |
* HOL: the recursion equations generated by 'recdef' are now called |
|
1405 |
f.simps instead of f.rules; |
|
1406 |
||
1407 |
* HOL: qed_spec_mp now also handles bounded ALL as well; |
|
1408 |
||
1409 |
* HOL: 0 is now overloaded, so the type constraint ":: nat" may |
|
1410 |
sometimes be needed; |
|
1411 |
||
1412 |
* HOL: the constant for "f``x" is now "image" rather than "op ``"; |
|
8014 | 1413 |
|
10065 | 1414 |
* HOL: the constant for "f-``x" is now "vimage" rather than "op -``"; |
1415 |
||
9330
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1416 |
* HOL: the disjoint sum is now "<+>" instead of "Plus"; the cartesian |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1417 |
product is now "<*>" instead of "Times"; the lexicographic product is |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1418 |
now "<*lex*>" instead of "**"; |
8705 | 1419 |
|
10003 | 1420 |
* HOL: theory Sexp is now in HOL/Induct examples (it used to be part |
1421 |
of main HOL, but was unused); better use HOL's datatype package; |
|
9971 | 1422 |
|
10137
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
1423 |
* HOL: removed "symbols" syntax for constant "override" of theory Map; |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
1424 |
the old syntax may be recovered as follows: |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
1425 |
|
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
1426 |
syntax (symbols) |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
1427 |
override :: "('a ~=> 'b) => ('a ~=> 'b) => ('a ~=> 'b)" |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
1428 |
(infixl "\\<oplus>" 100) |
d1c2bef01e2f
removed "symbols" syntax for constant "override";
wenzelm
parents:
10129
diff
changeset
|
1429 |
|
8848 | 1430 |
* HOL/Real: "rabs" replaced by overloaded "abs" function; |
1431 |
||
8887
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
1432 |
* HOL/ML: even fewer consts are declared as global (see theories Ord, |
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
1433 |
Lfp, Gfp, WF); this only affects ML packages that refer to const names |
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
1434 |
internally; |
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
1435 |
|
10003 | 1436 |
* HOL and ZF: syntax for quotienting wrt an equivalence relation |
1437 |
changed from A/r to A//r; |
|
9908 | 1438 |
|
10003 | 1439 |
* ZF: new treatment of arithmetic (nat & int) may break some old |
1440 |
proofs; |
|
8921
7c04c98132c4
* Pure: changed syntax of local blocks from {{ }} to { };
wenzelm
parents:
8887
diff
changeset
|
1441 |
|
10003 | 1442 |
* Isar: renamed some attributes (RS -> THEN, simplify -> simplified, |
1443 |
rulify -> rule_format, elimify -> elim_format, ...); |
|
9542 | 1444 |
|
9941
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1445 |
* Isar/Provers: intro/elim/dest attributes changed; renamed |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1446 |
intro/intro!/intro!! flags to intro!/intro/intro? (in most cases, one |
9937 | 1447 |
should have to change intro!! to intro? only); replaced "delrule" by |
1448 |
"rule del"; |
|
9437
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
wenzelm
parents:
9402
diff
changeset
|
1449 |
|
9612 | 1450 |
* Isar/HOL: renamed "intrs" to "intros" in inductive definitions; |
1451 |
||
9437
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
wenzelm
parents:
9402
diff
changeset
|
1452 |
* Provers: strengthened force_tac by using new first_best_tac; |
9402 | 1453 |
|
10003 | 1454 |
* LaTeX document preparation: several changes of isabelle.sty (see |
1455 |
lib/texinputs); |
|
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1456 |
|
8014 | 1457 |
|
8487 | 1458 |
*** Document preparation *** |
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1459 |
|
9198
0ab3c81e9425
* formal comments (text blocks etc.) in new-style theories may now
wenzelm
parents:
9185
diff
changeset
|
1460 |
* formal comments (text blocks etc.) in new-style theories may now |
9753 | 1461 |
contain antiquotations of thm/prop/term/typ/text to be presented |
1462 |
according to latex print mode; concrete syntax is like this: |
|
1463 |
@{term[show_types] "f(x) = a + x"}; |
|
9198
0ab3c81e9425
* formal comments (text blocks etc.) in new-style theories may now
wenzelm
parents:
9185
diff
changeset
|
1464 |
|
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1465 |
* isatool mkdir provides easy setup of Isabelle session directories, |
8518 | 1466 |
including proper document sources; |
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1467 |
|
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1468 |
* generated LaTeX sources are now deleted after successful run |
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1469 |
(isatool document -c); may retain a copy somewhere else via -D option |
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1470 |
of isatool usedir; |
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1471 |
|
8566 | 1472 |
* isatool usedir -D now lets isatool latex -o sty update the Isabelle |
10003 | 1473 |
style files, achieving self-contained LaTeX sources and simplifying |
1474 |
LaTeX debugging; |
|
8566 | 1475 |
|
8518 | 1476 |
* old-style theories now produce (crude) LaTeX output as well; |
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1477 |
|
9057
af1ca1acf292
* browser info session directories are now self-contained (may be put
wenzelm
parents:
9052
diff
changeset
|
1478 |
* browser info session directories are now self-contained (may be put |
9437
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
wenzelm
parents:
9402
diff
changeset
|
1479 |
on WWW server seperately); improved graphs of nested sessions; removed |
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
wenzelm
parents:
9402
diff
changeset
|
1480 |
graph for 'all sessions'; |
9057
af1ca1acf292
* browser info session directories are now self-contained (may be put
wenzelm
parents:
9052
diff
changeset
|
1481 |
|
10003 | 1482 |
* several improvements in isabelle style files; \isabellestyle{it} |
1483 |
produces fake math mode output; \isamarkupheader is now \section by |
|
1484 |
default; see lib/texinputs/isabelle.sty etc.; |
|
9489
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1485 |
|
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1486 |
|
8184 | 1487 |
*** Isar *** |
1488 |
||
10003 | 1489 |
* Isar/Pure: local results and corresponding term bindings are now |
1490 |
subject to Hindley-Milner polymorphism (similar to ML); this |
|
1491 |
accommodates incremental type-inference very nicely; |
|
8283
0a319c5746eb
* Pure now provides its own version of intro/elim/dest attributes;
wenzelm
parents:
8271
diff
changeset
|
1492 |
|
10003 | 1493 |
* Isar/Pure: new derived language element 'obtain' supports |
1494 |
generalized existence reasoning; |
|
8621
8ba0f90f6f35
* Isar/Pure: local results and corresponding term bindings are now
wenzelm
parents:
8603
diff
changeset
|
1495 |
|
10003 | 1496 |
* Isar/Pure: new calculational elements 'moreover' and 'ultimately' |
1497 |
support accumulation of results, without applying any rules yet; |
|
1498 |
useful to collect intermediate results without explicit name |
|
1499 |
references, and for use with transitivity rules with more than 2 |
|
1500 |
premises; |
|
8184 | 1501 |
|
10003 | 1502 |
* Isar/Pure: scalable support for case-analysis type proofs: new |
1503 |
'case' language element refers to local contexts symbolically, as |
|
1504 |
produced by certain proof methods; internally, case names are attached |
|
1505 |
to theorems as "tags"; |
|
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1506 |
|
10003 | 1507 |
* Isar/Pure: theory command 'hide' removes declarations from |
9330
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1508 |
class/type/const name spaces; |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1509 |
|
10003 | 1510 |
* Isar/Pure: theory command 'defs' supports option "(overloaded)" to |
9330
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1511 |
indicate potential overloading; |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1512 |
|
10003 | 1513 |
* Isar/Pure: changed syntax of local blocks from {{ }} to { }; |
8621
8ba0f90f6f35
* Isar/Pure: local results and corresponding term bindings are now
wenzelm
parents:
8603
diff
changeset
|
1514 |
|
10003 | 1515 |
* Isar/Pure: syntax of sorts made 'inner', i.e. have to write |
1516 |
"{a,b,c}" instead of {a,b,c}; |
|
9011
0cfc347f8d19
Isar/Pure: removed obsolete 'transfer' attribute (transfer of thms to
wenzelm
parents:
8994
diff
changeset
|
1517 |
|
10003 | 1518 |
* Isar/Pure now provides its own version of intro/elim/dest |
1519 |
attributes; useful for building new logics, but beware of confusion |
|
1520 |
with the version in Provers/classical; |
|
9612 | 1521 |
|
10003 | 1522 |
* Isar/Pure: the local context of (non-atomic) goals is provided via |
1523 |
case name 'antecedent'; |
|
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1524 |
|
10003 | 1525 |
* Isar/Pure: removed obsolete 'transfer' attribute (transfer of thms |
1526 |
to the current context is now done automatically); |
|
9383
c21fa1c48de0
* HOL: removed obsolete expand_if = split_if; theorems if_splits =
wenzelm
parents:
9349
diff
changeset
|
1527 |
|
10003 | 1528 |
* Isar/Pure: theory command 'method_setup' provides a simple interface |
1529 |
for definining proof methods in ML; |
|
9612 | 1530 |
|
10003 | 1531 |
* Isar/Provers: intro/elim/dest attributes changed; renamed |
9941
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1532 |
intro/intro!/intro!! flags to intro!/intro/intro? (INCOMPATIBILITY, in |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1533 |
most cases, one should have to change intro!! to intro? only); |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1534 |
replaced "delrule" by "rule del"; |
8283
0a319c5746eb
* Pure now provides its own version of intro/elim/dest attributes;
wenzelm
parents:
8271
diff
changeset
|
1535 |
|
10003 | 1536 |
* Isar/Provers: new 'hypsubst' method, plain 'subst' method and |
1537 |
'symmetric' attribute (the latter supercedes [RS sym]); |
|
1538 |
||
1539 |
* Isar/Provers: splitter support (via 'split' attribute and 'simp' |
|
1540 |
method modifier); 'simp' method: 'only:' modifier removes loopers as |
|
1541 |
well (including splits); |
|
1542 |
||
1543 |
* Isar/Provers: Simplifier and Classical methods now support all kind |
|
1544 |
of modifiers used in the past, including 'cong', 'iff', etc. |
|
1545 |
||
1546 |
* Isar/Provers: added 'fastsimp' and 'clarsimp' methods (combination |
|
1547 |
of Simplifier and Classical reasoner); |
|
1548 |
||
1549 |
* Isar/HOL: new proof method 'cases' and improved version of 'induct' |
|
1550 |
now support named cases; major packages (inductive, datatype, primrec, |
|
1551 |
recdef) support case names and properly name parameters; |
|
9612 | 1552 |
|
10003 | 1553 |
* Isar/HOL: new transitivity rules for substitution in inequalities -- |
1554 |
monotonicity conditions are extracted to be proven at end of |
|
1555 |
calculations; |
|
1556 |
||
1557 |
* Isar/HOL: removed 'case_split' thm binding, should use 'cases' proof |
|
1558 |
method anyway; |
|
1559 |
||
1560 |
* Isar/HOL: removed old expand_if = split_if; theorems if_splits = |
|
1561 |
split_if split_if_asm; datatype package provides theorems foo.splits = |
|
1562 |
foo.split foo.split_asm for each datatype; |
|
1563 |
||
1564 |
* Isar/HOL: tuned inductive package, rename "intrs" to "intros" |
|
1565 |
(potential INCOMPATIBILITY), emulation of mk_cases feature for proof |
|
1566 |
scripts: new 'inductive_cases' command and 'ind_cases' method; (Note: |
|
1567 |
use "(cases (simplified))" method in proper proof texts); |
|
1568 |
||
1569 |
* Isar/HOL: added global 'arith_split' attribute for 'arith' method; |
|
1570 |
||
1571 |
* Isar: names of theorems etc. may be natural numbers as well; |
|
1572 |
||
1573 |
* Isar: 'pr' command: optional arguments for goals_limit and |
|
9724
2030c5d63741
* 'pr' command: optional argument for ProofContext.prems_limit;
wenzelm
parents:
9709
diff
changeset
|
1574 |
ProofContext.prems_limit; no longer prints theory contexts, but only |
2030c5d63741
* 'pr' command: optional argument for ProofContext.prems_limit;
wenzelm
parents:
9709
diff
changeset
|
1575 |
proof states; |
8487 | 1576 |
|
10003 | 1577 |
* Isar: diagnostic commands 'pr', 'thm', 'prop', 'term', 'typ' admit |
8518 | 1578 |
additional print modes to be specified; e.g. "pr(latex)" will print |
1579 |
proof state according to the Isabelle LaTeX style; |
|
8487 | 1580 |
|
10003 | 1581 |
* Isar: improved support for emulating tactic scripts, including proof |
9612 | 1582 |
methods 'rule_tac' etc., 'cut_tac', 'thin_tac', 'subgoal_tac', |
1583 |
'rename_tac', 'rotate_tac', 'tactic', and 'case_tac' / 'induct_tac' |
|
1584 |
(for HOL datatypes); |
|
8534 | 1585 |
|
10003 | 1586 |
* Isar: simplified (more robust) goal selection of proof methods: 1st |
1587 |
goal, all goals, or explicit goal specifier (tactic emulation); thus |
|
1588 |
'proof method scripts' have to be in depth-first order; |
|
8673
987ea1a559d0
Isar: simplified (more robust) goal selection of proof methods;
wenzelm
parents:
8655
diff
changeset
|
1589 |
|
10003 | 1590 |
* Isar: tuned 'let' syntax: replaced 'as' keyword by 'and'; |
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1591 |
|
10003 | 1592 |
* Isar: removed 'help' command, which hasn't been too helpful anyway; |
1593 |
should instead use individual commands for printing items |
|
1594 |
(print_commands, print_methods etc.); |
|
9224
0da360494917
* Isar: removed 'help' command, which hasn't been too helpful anyway;
wenzelm
parents:
9198
diff
changeset
|
1595 |
|
10003 | 1596 |
* Isar: added 'nothing' --- the empty list of theorems; |
9239 | 1597 |
|
8184 | 1598 |
|
8014 | 1599 |
*** HOL *** |
1600 |
||
10080 | 1601 |
* HOL/MicroJava: formalization of a fragment of Java, together with a |
1602 |
corresponding virtual machine and a specification of its bytecode |
|
1603 |
verifier and a lightweight bytecode verifier, including proofs of |
|
1604 |
type-safety; by Gerwin Klein, Tobias Nipkow, David von Oheimb, and |
|
1605 |
Cornelia Pusch (see also the homepage of project Bali at |
|
1606 |
http://isabelle.in.tum.de/Bali/); |
|
1607 |
||
8518 | 1608 |
* HOL/Algebra: new theory of rings and univariate polynomials, by |
1609 |
Clemens Ballarin; |
|
8014 | 1610 |
|
10157
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1611 |
* HOL/NumberTheory: fundamental Theorem of Arithmetic, Chinese |
10003 | 1612 |
Remainder Theorem, Fermat/Euler Theorem, Wilson's Theorem, by Thomas M |
1613 |
Rasmussen; |
|
8570 | 1614 |
|
10157
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1615 |
* HOL/Lattice: fundamental concepts of lattice theory and order |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1616 |
structures, including duals, properties of bounds versus algebraic |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1617 |
laws, lattice operations versus set-theoretic ones, the Knaster-Tarski |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1618 |
Theorem for complete lattices etc.; may also serve as a demonstration |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1619 |
for abstract algebraic reasoning using axiomatic type classes, and |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1620 |
mathematics-style proof in Isabelle/Isar; by Markus Wenzel; |
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
wenzelm
parents:
10137
diff
changeset
|
1621 |
|
10003 | 1622 |
* HOL/Prolog: a (bare-bones) implementation of Lambda-Prolog, by David |
1623 |
von Oheimb; |
|
9542 | 1624 |
|
10164
c240747082aa
* HOL/IMPP: extension of IMP with local variables and mutually
wenzelm
parents:
10157
diff
changeset
|
1625 |
* HOL/IMPP: extension of IMP with local variables and mutually |
c240747082aa
* HOL/IMPP: extension of IMP with local variables and mutually
wenzelm
parents:
10157
diff
changeset
|
1626 |
recursive procedures, by David von Oheimb; |
c240747082aa
* HOL/IMPP: extension of IMP with local variables and mutually
wenzelm
parents:
10157
diff
changeset
|
1627 |
|
10003 | 1628 |
* HOL/Lambda: converted into new-style theory and document; |
9542 | 1629 |
|
10003 | 1630 |
* HOL/ex/Multiquote: example of multiple nested quotations and |
1631 |
anti-quotations -- basically a generalized version of de-Bruijn |
|
1632 |
representation; very useful in avoiding lifting of operations; |
|
8848 | 1633 |
|
9612 | 1634 |
* HOL/record: added general record equality rule to simpset; fixed |
1635 |
select-update simplification procedure to handle extended records as |
|
1636 |
well; admit "r" as field name; |
|
9542 | 1637 |
|
8967 | 1638 |
* HOL: 0 is now overloaded over the new sort "zero", allowing its use with |
1639 |
other numeric types and also as the identity of groups, rings, etc.; |
|
1640 |
||
1641 |
* HOL: new axclass plus_ac0 for addition with the AC-laws and 0 as identity. |
|
1642 |
Types nat and int belong to this axclass; |
|
1643 |
||
10003 | 1644 |
* HOL: greatly improved simplification involving numerals of type nat, int, real: |
8788 | 1645 |
(i + #8 + j) = Suc k simplifies to #7 + (i + j) = k |
8832 | 1646 |
i*j + k + j*#3*i simplifies to #4*(i*j) + k |
1647 |
two terms #m*u and #n*u are replaced by #(m+n)*u |
|
1648 |
(where #m, #n and u can implicitly be 1; this is simproc combine_numerals) |
|
1649 |
and the term/formula #m*u+x ~~ #n*u+y simplifies simplifies to #(m-n)+x ~~ y |
|
1650 |
or x ~~ #(n-m)+y, where ~~ is one of = < <= or - (simproc cancel_numerals); |
|
8736 | 1651 |
|
10003 | 1652 |
* HOL: meson_tac is available (previously in ex/meson.ML); it is a |
1653 |
powerful prover for predicate logic but knows nothing of clasets; see |
|
1654 |
ex/mesontest.ML and ex/mesontest2.ML for example applications; |
|
9835 | 1655 |
|
8848 | 1656 |
* HOL: new version of "case_tac" subsumes both boolean case split and |
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1657 |
"exhaust_tac" on datatypes; INCOMPATIBILITY: exhaust_tac no longer |
8518 | 1658 |
exists, may define val exhaust_tac = case_tac for ad-hoc portability; |
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1659 |
|
8848 | 1660 |
* HOL: simplification no longer dives into case-expressions: only the |
10129 | 1661 |
selector expression is simplified, but not the remaining arms; to |
1662 |
enable full simplification of case-expressions for datatype t, you may |
|
1663 |
remove t.weak_case_cong from the simpset, either globally (Delcongs |
|
1664 |
[thm"t.weak_case_cong"];) or locally (delcongs [...]). |
|
8603 | 1665 |
|
8848 | 1666 |
* HOL/recdef: the recursion equations generated by 'recdef' for |
1667 |
function 'f' are now called f.simps instead of f.rules; if all |
|
1668 |
termination conditions are proved automatically, these simplification |
|
1669 |
rules are added to the simpset, as in primrec; rules may be named |
|
1670 |
individually as well, resulting in a separate list of theorems for |
|
1671 |
each equation; |
|
1672 |
||
9489
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1673 |
* HOL/While is a new theory that provides a while-combinator. It |
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1674 |
permits the definition of tail-recursive functions without the |
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1675 |
provision of a termination measure. The latter is necessary once the |
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1676 |
invariant proof rule for while is applied. |
9457 | 1677 |
|
10003 | 1678 |
* HOL: new (overloaded) notation for the set of elements below/above |
1679 |
some element: {..u}, {..u(}, {l..}, {)l..}. See theory SetInterval. |
|
8925 | 1680 |
|
8848 | 1681 |
* HOL: theorems impI, allI, ballI bound as "strip"; |
1682 |
||
10003 | 1683 |
* HOL: new tactic induct_thm_tac: thm -> string -> int -> tactic |
9746 | 1684 |
induct_tac th "x1 ... xn" expects th to have a conclusion of the form |
1685 |
P v1 ... vn and abbreviates res_inst_tac [("v1","x1"),...,("vn","xn")] th; |
|
1686 |
||
10003 | 1687 |
* HOL/Real: "rabs" replaced by overloaded "abs" function; |
9737 | 1688 |
|
10003 | 1689 |
* HOL: theory Sexp now in HOL/Induct examples (it used to be part of |
1690 |
main HOL, but was unused); |
|
8626 | 1691 |
|
10003 | 1692 |
* HOL: fewer consts declared as global (e.g. have to refer to |
1693 |
"Lfp.lfp" instead of "lfp" internally; affects ML packages only); |
|
8887
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
wenzelm
parents:
8848
diff
changeset
|
1694 |
|
10003 | 1695 |
* HOL: tuned AST representation of nested pairs, avoiding bogus output |
1696 |
in case of overlap with user translations (e.g. judgements over |
|
1697 |
tuples); (note that the underlying logical represenation is still |
|
1698 |
bogus); |
|
9349
d43669fb423d
* tuned AST representation of nested pairs, avoiding bogus output in
wenzelm
parents:
9335
diff
changeset
|
1699 |
|
8412 | 1700 |
|
9542 | 1701 |
*** ZF *** |
1702 |
||
10003 | 1703 |
* ZF: simplification automatically cancels common terms in arithmetic |
1704 |
expressions over nat and int; |
|
9542 | 1705 |
|
10003 | 1706 |
* ZF: new treatment of nat to minimize type-checking: all operators |
1707 |
coerce their operands to a natural number using the function natify, |
|
1708 |
making the algebraic laws unconditional; |
|
9542 | 1709 |
|
10003 | 1710 |
* ZF: as above, for int: operators coerce their operands to an integer |
1711 |
using the function intify; |
|
9542 | 1712 |
|
10003 | 1713 |
* ZF: the integer library now contains many of the usual laws for the |
1714 |
orderings, including $<=, and monotonicity laws for $+ and $*; |
|
9542 | 1715 |
|
10003 | 1716 |
* ZF: new example ZF/ex/NatSum to demonstrate integer arithmetic |
1717 |
simplification; |
|
9388 | 1718 |
|
10003 | 1719 |
* FOL and ZF: AddIffs now available, giving theorems of the form P<->Q |
1720 |
to the simplifier and classical reasoner simultaneously; |
|
9388 | 1721 |
|
1722 |
||
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1723 |
*** General *** |
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1724 |
|
10003 | 1725 |
* Provers: blast_tac now handles actual object-logic rules as |
1726 |
assumptions; note that auto_tac uses blast_tac internally as well; |
|
1727 |
||
1728 |
* Provers: new functions rulify/rulify_no_asm: thm -> thm for turning |
|
1729 |
outer -->/All/Ball into ==>/!!; qed_spec_mp now uses rulify_no_asm; |
|
1730 |
||
9941
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1731 |
* Provers: delrules now handles destruct rules as well (no longer need |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1732 |
explicit make_elim); |
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents:
9937
diff
changeset
|
1733 |
|
10003 | 1734 |
* Provers: Blast_tac now warns of and ignores "weak elimination rules" e.g. |
1735 |
[| inj ?f; ?f ?x = ?f ?y; ?x = ?y ==> ?W |] ==> ?W |
|
1736 |
use instead the strong form, |
|
1737 |
[| inj ?f; ~ ?W ==> ?f ?x = ?f ?y; ?x = ?y ==> ?W |] ==> ?W |
|
1738 |
in HOL, FOL and ZF the function cla_make_elim will create such rules |
|
1739 |
from destruct-rules; |
|
9489
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
wenzelm
parents:
9457
diff
changeset
|
1740 |
|
9709
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1741 |
* Provers: Simplifier.easy_setup provides a fast path to basic |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1742 |
Simplifier setup for new object-logics; |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1743 |
|
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1744 |
* Pure: AST translation rules no longer require constant head on LHS; |
9349
d43669fb423d
* tuned AST representation of nested pairs, avoiding bogus output in
wenzelm
parents:
9335
diff
changeset
|
1745 |
|
9709
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1746 |
* Pure: improved name spaces: ambiguous output is qualified; support |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1747 |
for hiding of names; |
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1748 |
|
10003 | 1749 |
* system: smart setup of canonical ML_HOME, ISABELLE_INTERFACE, and |
1750 |
XSYMBOL_HOME; no longer need to do manual configuration in most |
|
1751 |
situations; |
|
1752 |
||
9709
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1753 |
* system: compression of ML heaps images may now be controlled via -c |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1754 |
option of isabelle and isatool usedir (currently only observed by |
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1755 |
Poly/ML); |
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1756 |
|
9981
01a0c4772c18
system: isatool installfonts may handle X-Symbol fonts as well;
wenzelm
parents:
9971
diff
changeset
|
1757 |
* system: isatool installfonts may handle X-Symbol fonts as well (very |
01a0c4772c18
system: isatool installfonts may handle X-Symbol fonts as well;
wenzelm
parents:
9971
diff
changeset
|
1758 |
useful for remote X11); |
01a0c4772c18
system: isatool installfonts may handle X-Symbol fonts as well;
wenzelm
parents:
9971
diff
changeset
|
1759 |
|
9709
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
wenzelm
parents:
9701
diff
changeset
|
1760 |
* system: provide TAGS file for Isabelle sources; |
9052 | 1761 |
|
9288
06a55195741b
infix 'OF' is a version of 'MRS' with more appropriate argument order;
wenzelm
parents:
9239
diff
changeset
|
1762 |
* ML: infix 'OF' is a version of 'MRS' with more appropriate argument |
06a55195741b
infix 'OF' is a version of 'MRS' with more appropriate argument order;
wenzelm
parents:
9239
diff
changeset
|
1763 |
order; |
06a55195741b
infix 'OF' is a version of 'MRS' with more appropriate argument order;
wenzelm
parents:
9239
diff
changeset
|
1764 |
|
8994
803533fbb3ec
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
wenzelm
parents:
8991
diff
changeset
|
1765 |
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global |
803533fbb3ec
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
wenzelm
parents:
8991
diff
changeset
|
1766 |
timing flag supersedes proof_timing and Toplevel.trace; |
803533fbb3ec
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
wenzelm
parents:
8991
diff
changeset
|
1767 |
|
10003 | 1768 |
* ML: new combinators |>> and |>>> for incremental transformations |
1769 |
with secondary results (e.g. certain theory extensions): |
|
1770 |
||
9330
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1771 |
* ML: PureThy.add_defs gets additional argument to indicate potential |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1772 |
overloading (usually false); |
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
wenzelm
parents:
9288
diff
changeset
|
1773 |
|
10003 | 1774 |
* ML: PureThy.add_thms/add_axioms/add_defs now return theorems as |
1775 |
results; |
|
8440
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
wenzelm
parents:
8425
diff
changeset
|
1776 |
|
8358
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
wenzelm
parents:
8283
diff
changeset
|
1777 |
|
8015 | 1778 |
|
7986 | 1779 |
New in Isabelle99 (October 1999) |
1780 |
-------------------------------- |
|
4649 | 1781 |
|
5931 | 1782 |
*** Overview of INCOMPATIBILITIES (see below for more details) *** |
1783 |
||
6922 | 1784 |
* HOL: The THEN and ELSE parts of conditional expressions (if P then x else y) |
1785 |
are no longer simplified. (This allows the simplifier to unfold recursive |
|
1786 |
functional programs.) To restore the old behaviour, declare |
|
7215 | 1787 |
|
1788 |
Delcongs [if_weak_cong]; |
|
6922 | 1789 |
|
6269 | 1790 |
* HOL: Removed the obsolete syntax "Compl A"; use -A for set |
1791 |
complement; |
|
5931 | 1792 |
|
6269 | 1793 |
* HOL: the predicate "inj" is now defined by translation to "inj_on"; |
6174 | 1794 |
|
7847 | 1795 |
* HOL/datatype: mutual_induct_tac no longer exists -- |
1796 |
use induct_tac "x_1 ... x_n" instead of mutual_induct_tac ["x_1", ..., "x_n"] |
|
1797 |
||
6386
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
1798 |
* HOL/typedef: fixed type inference for representing set; type |
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
1799 |
arguments now have to occur explicitly on the rhs as type constraints; |
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
1800 |
|
6269 | 1801 |
* ZF: The con_defs part of an inductive definition may no longer refer |
1802 |
to constants declared in the same theory; |
|
6057 | 1803 |
|
6269 | 1804 |
* HOL, ZF: the function mk_cases, generated by the inductive |
1805 |
definition package, has lost an argument. To simplify its result, it |
|
1806 |
uses the default simpset instead of a supplied list of theorems. |
|
6141 | 1807 |
|
7215 | 1808 |
* HOL/List: the constructors of type list are now Nil and Cons; |
1809 |
||
7619 | 1810 |
* Simplifier: the type of the infix ML functions |
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1811 |
setSSolver addSSolver setSolver addSolver |
7619 | 1812 |
is now simpset * solver -> simpset where `solver' is a new abstract type |
1813 |
for packaging solvers. A solver is created via |
|
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
1814 |
mk_solver: string -> (thm list -> int -> tactic) -> solver |
7619 | 1815 |
where the string argument is only a comment. |
6057 | 1816 |
|
7647
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
wenzelm
parents:
7619
diff
changeset
|
1817 |
|
6069 | 1818 |
*** Proof tools *** |
1819 |
||
6343 | 1820 |
* Provers/Arith/fast_lin_arith.ML contains a functor for creating a |
1821 |
decision procedure for linear arithmetic. Currently it is used for |
|
7593 | 1822 |
types `nat', `int', and `real' in HOL (see below); it can, should and |
1823 |
will be instantiated for other types and logics as well. |
|
6069 | 1824 |
|
7324 | 1825 |
* The simplifier now accepts rewrite rules with flexible heads, eg |
1826 |
hom ?f ==> ?f(?x+?y) = ?f ?x + ?f ?y |
|
1827 |
They are applied like any rule with a non-pattern lhs, i.e. by first-order |
|
1828 |
matching. |
|
6069 | 1829 |
|
7593 | 1830 |
|
6014 | 1831 |
*** General *** |
1832 |
||
7986 | 1833 |
* New Isabelle/Isar subsystem provides an alternative to traditional |
7215 | 1834 |
tactical theorem proving; together with the ProofGeneral/isar user |
1835 |
interface it offers an interactive environment for developing human |
|
1836 |
readable proof documents (Isar == Intelligible semi-automated |
|
7886
8fa551e22e52
the settings environment is now statically scoped;
wenzelm
parents:
7863
diff
changeset
|
1837 |
reasoning); for further information see isatool doc isar-ref, |
7986 | 1838 |
src/HOL/Isar_examples and http://isabelle.in.tum.de/Isar/ |
7886
8fa551e22e52
the settings environment is now statically scoped;
wenzelm
parents:
7863
diff
changeset
|
1839 |
|
9612 | 1840 |
* improved and simplified presentation of theories: better HTML markup |
1841 |
(including colors), graph views in several sizes; isatool usedir now |
|
1842 |
provides a proper interface for user theories (via -P option); actual |
|
1843 |
document preparation based on (PDF)LaTeX is available as well (for |
|
1844 |
new-style theories only); see isatool doc system for more information; |
|
7215 | 1845 |
|
7252 | 1846 |
* native support for Proof General, both for classic Isabelle and |
7986 | 1847 |
Isabelle/Isar; |
7215 | 1848 |
|
7791 | 1849 |
* ML function thm_deps visualizes dependencies of theorems and lemmas, |
1850 |
using the graph browser tool; |
|
1851 |
||
6751 | 1852 |
* Isabelle manuals now also available as PDF; |
1853 |
||
6449 | 1854 |
* theory loader rewritten from scratch (may not be fully |
1855 |
bug-compatible); old loadpath variable has been replaced by show_path, |
|
6671 | 1856 |
add_path, del_path, reset_path functions; new operations such as |
7593 | 1857 |
update_thy, touch_thy, remove_thy, use/update_thy_only (see also |
1858 |
isatool doc ref); |
|
6449 | 1859 |
|
7215 | 1860 |
* improved isatool install: option -k creates KDE application icon, |
1861 |
option -p DIR installs standalone binaries; |
|
1862 |
||
1863 |
* added ML_PLATFORM setting (useful for cross-platform installations); |
|
1864 |
more robust handling of platform specific ML images for SML/NJ; |
|
1865 |
||
7886
8fa551e22e52
the settings environment is now statically scoped;
wenzelm
parents:
7863
diff
changeset
|
1866 |
* the settings environment is now statically scoped, i.e. it is never |
7986 | 1867 |
created again in sub-processes invoked from isabelle, isatool, or |
7886
8fa551e22e52
the settings environment is now statically scoped;
wenzelm
parents:
7863
diff
changeset
|
1868 |
Isabelle; |
8fa551e22e52
the settings environment is now statically scoped;
wenzelm
parents:
7863
diff
changeset
|
1869 |
|
7215 | 1870 |
* path element specification '~~' refers to '$ISABELLE_HOME'; |
1871 |
||
6343 | 1872 |
* in locales, the "assumes" and "defines" parts may be omitted if |
1873 |
empty; |
|
5973 | 1874 |
|
6269 | 1875 |
* new print_mode "xsymbols" for extended symbol support (e.g. genuine |
1876 |
long arrows); |
|
6259
488bdc1bd11a
path element specification '~~' refers to '$ISABELLE_HOME';
wenzelm
parents:
6174
diff
changeset
|
1877 |
|
6343 | 1878 |
* new print_mode "HTML"; |
1879 |
||
1880 |
* new flag show_tags controls display of tags of theorems (which are |
|
1881 |
basically just comments that may be attached by some tools); |
|
1882 |
||
6461 | 1883 |
* Isamode 2.6 requires patch to accomodate change of Isabelle font |
1884 |
mode and goal output format: |
|
1885 |
||
1886 |
diff -r Isamode-2.6/elisp/isa-load.el Isamode/elisp/isa-load.el |
|
1887 |
244c244 |
|
1888 |
< (list (isa-getenv "ISABELLE") "-msymbols" logic-name) |
|
1889 |
--- |
|
6533 | 1890 |
> (list (isa-getenv "ISABELLE") "-misabelle_font" "-msymbols" logic-name) |
6461 | 1891 |
diff -r Isabelle-2.6/elisp/isa-proofstate.el Isamode/elisp/isa-proofstate.el |
1892 |
181c181 |
|
1893 |
< (defconst proofstate-proofstart-regexp "^Level [0-9]+$" |
|
1894 |
--- |
|
1895 |
> (defconst proofstate-proofstart-regexp "^Level [0-9]+" |
|
1896 |
||
7450 | 1897 |
* function bind_thms stores lists of theorems (cf. bind_thm); |
1898 |
||
7593 | 1899 |
* new shorthand tactics ftac, eatac, datac, fatac; |
1900 |
||
1901 |
* qed (and friends) now accept "" as result name; in that case the |
|
7986 | 1902 |
theorem is not stored, but proper checks and presentation of the |
1903 |
result still apply; |
|
7593 | 1904 |
|
7805
0ae9ddc36fe0
theorem database now also indexes constants "Trueprop", "all",
wenzelm
parents:
7791
diff
changeset
|
1905 |
* theorem database now also indexes constants "Trueprop", "all", |
0ae9ddc36fe0
theorem database now also indexes constants "Trueprop", "all",
wenzelm
parents:
7791
diff
changeset
|
1906 |
"==>", "=="; thus thms_containing, findI etc. may retrieve more rules; |
0ae9ddc36fe0
theorem database now also indexes constants "Trueprop", "all",
wenzelm
parents:
7791
diff
changeset
|
1907 |
|
6028 | 1908 |
|
6057 | 1909 |
*** HOL *** |
1910 |
||
7215 | 1911 |
** HOL arithmetic ** |
1912 |
||
6343 | 1913 |
* There are now decision procedures for linear arithmetic over nat and |
1914 |
int: |
|
6131 | 1915 |
|
6343 | 1916 |
1. arith_tac copes with arbitrary formulae involving `=', `<', `<=', |
1917 |
`+', `-', `Suc', `min', `max' and numerical constants; other subterms |
|
1918 |
are treated as atomic; subformulae not involving type `nat' or `int' |
|
1919 |
are ignored; quantified subformulae are ignored unless they are |
|
1920 |
positive universal or negative existential. The tactic has to be |
|
1921 |
invoked by hand and can be a little bit slow. In particular, the |
|
1922 |
running time is exponential in the number of occurrences of `min' and |
|
1923 |
`max', and `-' on `nat'. |
|
6131 | 1924 |
|
6343 | 1925 |
2. fast_arith_tac is a cut-down version of arith_tac: it only takes |
1926 |
(negated) (in)equalities among the premises and the conclusion into |
|
1927 |
account (i.e. no compound formulae) and does not know about `min' and |
|
1928 |
`max', and `-' on `nat'. It is fast and is used automatically by the |
|
1929 |
simplifier. |
|
6131 | 1930 |
|
6343 | 1931 |
NB: At the moment, these decision procedures do not cope with mixed |
1932 |
nat/int formulae where the two parts interact, such as `m < n ==> |
|
1933 |
int(m) < int(n)'. |
|
6028 | 1934 |
|
7215 | 1935 |
* HOL/Numeral provides a generic theory of numerals (encoded |
7313 | 1936 |
efficiently as bit strings); setup for types nat/int/real is in place; |
7215 | 1937 |
INCOMPATIBILITY: since numeral syntax is now polymorphic, rather than |
1938 |
int, existing theories and proof scripts may require a few additional |
|
1939 |
type constraints; |
|
1940 |
||
1941 |
* integer division and remainder can now be performed on constant |
|
1942 |
arguments; |
|
7157 | 1943 |
|
7215 | 1944 |
* many properties of integer multiplication, division and remainder |
1945 |
are now available; |
|
6922 | 1946 |
|
7287 | 1947 |
* An interface to the Stanford Validity Checker (SVC) is available through the |
1948 |
tactic svc_tac. Propositional tautologies and theorems of linear arithmetic |
|
1949 |
are proved automatically. SVC must be installed separately, and its results |
|
1950 |
must be TAKEN ON TRUST (Isabelle does not check the proofs, but tags any |
|
1951 |
invocation of the underlying oracle). For SVC see |
|
7444 | 1952 |
http://verify.stanford.edu/SVC |
6922 | 1953 |
|
7125 | 1954 |
* IsaMakefile: the HOL-Real target now builds an actual image; |
1955 |
||
7215 | 1956 |
|
1957 |
** HOL misc ** |
|
1958 |
||
7595
5f5d575ddac3
* HOL/Real/HahnBanach: the Hahn-Banach theorem for real vector spaces
wenzelm
parents:
7593
diff
changeset
|
1959 |
* HOL/Real/HahnBanach: the Hahn-Banach theorem for real vector spaces |
5f5d575ddac3
* HOL/Real/HahnBanach: the Hahn-Banach theorem for real vector spaces
wenzelm
parents:
7593
diff
changeset
|
1960 |
(in Isabelle/Isar) -- by Gertrud Bauer; |
5f5d575ddac3
* HOL/Real/HahnBanach: the Hahn-Banach theorem for real vector spaces
wenzelm
parents:
7593
diff
changeset
|
1961 |
|
7691 | 1962 |
* HOL/BCV: generic model of bytecode verification, i.e. data-flow |
1963 |
analysis for assembly languages with subtypes; |
|
1964 |
||
6278 | 1965 |
* HOL/TLA (Lamport's Temporal Logic of Actions): major reorganization |
1966 |
-- avoids syntactic ambiguities and treats state, transition, and |
|
1967 |
temporal levels more uniformly; introduces INCOMPATIBILITIES due to |
|
1968 |
changed syntax and (many) tactics; |
|
1969 |
||
7791 | 1970 |
* HOL/inductive: Now also handles more general introduction rules such |
1971 |
as "ALL y. (y, x) : r --> y : acc r ==> x : acc r"; monotonicity |
|
1972 |
theorems are now maintained within the theory (maintained via the |
|
1973 |
"mono" attribute); |
|
7780
099742c562aa
Documented changes to HOL/inductive and function thm_deps.
berghofe
parents:
7691
diff
changeset
|
1974 |
|
7238
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
1975 |
* HOL/datatype: Now also handles arbitrarily branching datatypes |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
1976 |
(using function types) such as |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
1977 |
|
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
1978 |
datatype 'a tree = Atom 'a | Branch "nat => 'a tree" |
7047
d103b875ef1d
Datatype package now handles arbitrarily branching datatypes.
berghofe
parents:
6925
diff
changeset
|
1979 |
|
7326 | 1980 |
* HOL/record: record_simproc (part of the default simpset) takes care |
1981 |
of selectors applied to updated records; record_split_tac is no longer |
|
7327 | 1982 |
part of the default claset; update_defs may now be removed from the |
1983 |
simpset in many cases; COMPATIBILITY: old behavior achieved by |
|
7326 | 1984 |
|
1985 |
claset_ref () := claset() addSWrapper record_split_wrapper; |
|
1986 |
Delsimprocs [record_simproc] |
|
1987 |
||
6386
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
1988 |
* HOL/typedef: fixed type inference for representing set; type |
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
1989 |
arguments now have to occur explicitly on the rhs as type constraints; |
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
1990 |
|
7287 | 1991 |
* HOL/recdef (TFL): 'congs' syntax now expects comma separated list of theorem |
1992 |
names rather than an ML expression; |
|
1993 |
||
1994 |
* HOL/defer_recdef (TFL): like recdef but the well-founded relation can be |
|
1995 |
supplied later. Program schemes can be defined, such as |
|
1996 |
"While B C s = (if B s then While B C (C s) else s)" |
|
1997 |
where the well-founded relation can be chosen after B and C have been given. |
|
6563 | 1998 |
|
7215 | 1999 |
* HOL/List: the constructors of type list are now Nil and Cons; |
2000 |
INCOMPATIBILITY: while [] and infix # syntax is still there, of |
|
2001 |
course, ML tools referring to List.list.op # etc. have to be adapted; |
|
2002 |
||
7238
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2003 |
* HOL_quantifiers flag superseded by "HOL" print mode, which is |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2004 |
disabled by default; run isabelle with option -m HOL to get back to |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2005 |
the original Gordon/HOL-style output; |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2006 |
|
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2007 |
* HOL/Ord.thy: new bounded quantifier syntax (input only): ALL x<y. P, |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2008 |
ALL x<=y. P, EX x<y. P, EX x<=y. P; |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2009 |
|
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2010 |
* HOL basic syntax simplified (more orthogonal): all variants of |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2011 |
All/Ex now support plain / symbolic / HOL notation; plain syntax for |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2012 |
Eps operator is provided as well: "SOME x. P[x]"; |
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7216
diff
changeset
|
2013 |
|
7320 | 2014 |
* HOL/Sum.thy: sum_case has been moved to HOL/Datatype; |
7261 | 2015 |
|
7280 | 2016 |
* HOL/Univ.thy: infix syntax <*>, <+>, <**>, <+> eliminated and made |
2017 |
thus available for user theories; |
|
2018 |
||
7300
8439bf404c28
* HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with HOL/List;
wenzelm
parents:
7287
diff
changeset
|
2019 |
* HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with |
8439bf404c28
* HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with HOL/List;
wenzelm
parents:
7287
diff
changeset
|
2020 |
HOL/List; hardly an INCOMPATIBILITY since '>>' syntax is used all the |
8439bf404c28
* HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with HOL/List;
wenzelm
parents:
7287
diff
changeset
|
2021 |
time; |
8439bf404c28
* HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with HOL/List;
wenzelm
parents:
7287
diff
changeset
|
2022 |
|
7986 | 2023 |
* HOL: new tactic smp_tac: int -> int -> tactic, which applies spec |
2024 |
several times and then mp; |
|
7492 | 2025 |
|
7215 | 2026 |
|
7113 | 2027 |
*** LK *** |
2028 |
||
7215 | 2029 |
* the notation <<...>> is now available as a notation for sequences of |
2030 |
formulas; |
|
7113 | 2031 |
|
2032 |
* the simplifier is now installed |
|
2033 |
||
8729
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
wenzelm
parents:
8705
diff
changeset
|
2034 |
* the axiom system has been generalized (thanks to Soren Heilmann) |
7113 | 2035 |
|
2036 |
* the classical reasoner now has a default rule database |
|
2037 |
||
2038 |
||
6064 | 2039 |
*** ZF *** |
2040 |
||
2041 |
* new primrec section allows primitive recursive functions to be given |
|
6269 | 2042 |
directly (as in HOL) over datatypes and the natural numbers; |
6064 | 2043 |
|
6269 | 2044 |
* new tactics induct_tac and exhaust_tac for induction (or case |
2045 |
analysis) over datatypes and the natural numbers; |
|
6064 | 2046 |
|
2047 |
* the datatype declaration of type T now defines the recursor T_rec; |
|
2048 |
||
6141 | 2049 |
* simplification automatically does freeness reasoning for datatype |
6269 | 2050 |
constructors; |
6141 | 2051 |
|
6269 | 2052 |
* automatic type-inference, with AddTCs command to insert new |
2053 |
type-checking rules; |
|
6155 | 2054 |
|
6269 | 2055 |
* datatype introduction rules are now added as Safe Introduction rules |
2056 |
to the claset; |
|
6155 | 2057 |
|
6269 | 2058 |
* the syntax "if P then x else y" is now available in addition to |
2059 |
if(P,x,y); |
|
2060 |
||
6069 | 2061 |
|
6343 | 2062 |
*** Internal programming interfaces *** |
2063 |
||
7919
35c18affc1d8
tuned simplifier trace output; new flag debug_simp
wenzelm
parents:
7886
diff
changeset
|
2064 |
* tuned simplifier trace output; new flag debug_simp; |
35c18affc1d8
tuned simplifier trace output; new flag debug_simp
wenzelm
parents:
7886
diff
changeset
|
2065 |
|
7420
cba45c114f3b
structures Vartab / Termtab (instances of TableFun);
wenzelm
parents:
7327
diff
changeset
|
2066 |
* structures Vartab / Termtab (instances of TableFun) offer efficient |
cba45c114f3b
structures Vartab / Termtab (instances of TableFun);
wenzelm
parents:
7327
diff
changeset
|
2067 |
tables indexed by indexname_ord / term_ord (compatible with aconv); |
cba45c114f3b
structures Vartab / Termtab (instances of TableFun);
wenzelm
parents:
7327
diff
changeset
|
2068 |
|
6386
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
2069 |
* AxClass.axclass_tac lost the theory argument; |
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
wenzelm
parents:
6343
diff
changeset
|
2070 |
|
6343 | 2071 |
* tuned current_goals_markers semantics: begin / end goal avoids |
2072 |
printing empty lines; |
|
2073 |
||
2074 |
* removed prs and prs_fn hook, which was broken because it did not |
|
2075 |
include \n in its semantics, forcing writeln to add one |
|
2076 |
uncoditionally; replaced prs_fn by writeln_fn; consider std_output: |
|
2077 |
string -> unit if you really want to output text without newline; |
|
2078 |
||
2079 |
* Symbol.output subject to print mode; INCOMPATIBILITY: defaults to |
|
2080 |
plain output, interface builders may have to enable 'isabelle_font' |
|
2081 |
mode to get Isabelle font glyphs as before; |
|
2082 |
||
2083 |
* refined token_translation interface; INCOMPATIBILITY: output length |
|
2084 |
now of type real instead of int; |
|
2085 |
||
7196 | 2086 |
* theory loader actions may be traced via new ThyInfo.add_hook |
2087 |
interface (see src/Pure/Thy/thy_info.ML); example application: keep |
|
2088 |
your own database of information attached to *whole* theories -- as |
|
2089 |
opposed to intra-theory data slots offered via TheoryDataFun; |
|
2090 |
||
7647
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
wenzelm
parents:
7619
diff
changeset
|
2091 |
* proper handling of dangling sort hypotheses (at last!); |
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
wenzelm
parents:
7619
diff
changeset
|
2092 |
Thm.strip_shyps and Drule.strip_shyps_warning take care of removing |
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
wenzelm
parents:
7619
diff
changeset
|
2093 |
extra sort hypotheses that can be witnessed from the type signature; |
7986 | 2094 |
the force_strip_shyps flag is gone, any remaining shyps are simply |
2095 |
left in the theorem (with a warning issued by strip_shyps_warning); |
|
7647
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
wenzelm
parents:
7619
diff
changeset
|
2096 |
|
6343 | 2097 |
|
6064 | 2098 |
|
5781 | 2099 |
New in Isabelle98-1 (October 1998) |
2100 |
---------------------------------- |
|
2101 |
||
5127 | 2102 |
*** Overview of INCOMPATIBILITIES (see below for more details) *** |
4842 | 2103 |
|
5726 | 2104 |
* several changes of automated proof tools; |
5373 | 2105 |
|
5726 | 2106 |
* HOL: major changes to the inductive and datatype packages, including |
2107 |
some minor incompatibilities of theory syntax; |
|
5214 | 2108 |
|
5726 | 2109 |
* HOL: renamed r^-1 to 'converse' from 'inverse'; 'inj_onto' is now |
5217 | 2110 |
called `inj_on'; |
5160 | 2111 |
|
5275 | 2112 |
* HOL: removed duplicate thms in Arith: |
2113 |
less_imp_add_less should be replaced by trans_less_add1 |
|
2114 |
le_imp_add_le should be replaced by trans_le_add1 |
|
5160 | 2115 |
|
5726 | 2116 |
* HOL: unary minus is now overloaded (new type constraints may be |
2117 |
required); |
|
5490 | 2118 |
|
5726 | 2119 |
* HOL and ZF: unary minus for integers is now #- instead of #~. In |
2120 |
ZF, expressions such as n#-1 must be changed to n#- 1, since #-1 is |
|
2121 |
now taken as an integer constant. |
|
5541 | 2122 |
|
5726 | 2123 |
* Pure: ML function 'theory_of' renamed to 'theory'; |
5397
034ed25535b9
* Pure: ML function 'theory_of' replaced by 'theory';
wenzelm
parents:
5373
diff
changeset
|
2124 |
|
5363 | 2125 |
|
5127 | 2126 |
*** Proof tools *** |
4880 | 2127 |
|
5657
1a6c9c6a3f8e
2. The simplifier now knows a little bit about nat-arithmetic.
nipkow
parents:
5651
diff
changeset
|
2128 |
* Simplifier: |
1a6c9c6a3f8e
2. The simplifier now knows a little bit about nat-arithmetic.
nipkow
parents:
5651
diff
changeset
|
2129 |
1. Asm_full_simp_tac is now more aggressive. |
1a6c9c6a3f8e
2. The simplifier now knows a little bit about nat-arithmetic.
nipkow
parents:
5651
diff
changeset
|
2130 |
1. It will sometimes reorient premises if that increases their power to |
1a6c9c6a3f8e
2. The simplifier now knows a little bit about nat-arithmetic.
nipkow
parents:
5651
diff
changeset
|
2131 |
simplify. |
1a6c9c6a3f8e
2. The simplifier now knows a little bit about nat-arithmetic.
nipkow
parents:
5651
diff
changeset
|
2132 |
2. It does no longer proceed strictly from left to right but may also |
1a6c9c6a3f8e
2. The simplifier now knows a little bit about nat-arithmetic.
nipkow
parents:
5651
diff
changeset
|
2133 |
rotate premises to achieve further simplification. |
1a6c9c6a3f8e
2. The simplifier now knows a little bit about nat-arithmetic.
nipkow
parents:
5651
diff
changeset
|
2134 |
For compatibility reasons there is now Asm_lr_simp_tac which is like the |
1a6c9c6a3f8e
2. The simplifier now knows a little bit about nat-arithmetic.
nipkow
parents:
5651
diff
changeset
|
2135 |
old Asm_full_simp_tac in that it does not rotate premises. |
1a6c9c6a3f8e
2. The simplifier now knows a little bit about nat-arithmetic.
nipkow
parents:
5651
diff
changeset
|
2136 |
2. The simplifier now knows a little bit about nat-arithmetic. |
4880 | 2137 |
|
5127 | 2138 |
* Classical reasoner: wrapper mechanism for the classical reasoner now |
2139 |
allows for selected deletion of wrappers, by introduction of names for |
|
2140 |
wrapper functionals. This implies that addbefore, addSbefore, |
|
2141 |
addaltern, and addSaltern now take a pair (name, tactic) as argument, |
|
2142 |
and that adding two tactics with the same name overwrites the first |
|
2143 |
one (emitting a warning). |
|
4824 | 2144 |
type wrapper = (int -> tactic) -> (int -> tactic) |
4649 | 2145 |
setWrapper, setSWrapper, compWrapper and compSWrapper are replaced by |
4824 | 2146 |
addWrapper, addSWrapper: claset * (string * wrapper) -> claset |
2147 |
delWrapper, delSWrapper: claset * string -> claset |
|
4649 | 2148 |
getWrapper is renamed to appWrappers, getSWrapper to appSWrappers; |
2149 |
||
5705
56f2030c46c6
tuned (all proofs are INSTABLE by David's definition of instability);
wenzelm
parents:
5671
diff
changeset
|
2150 |
* Classical reasoner: addbefore/addSbefore now have APPEND/ORELSE |
5726 | 2151 |
semantics; addbefore now affects only the unsafe part of step_tac |
2152 |
etc.; this affects addss/auto_tac/force_tac, so EXISTING PROOFS MAY |
|
2153 |
FAIL, but proofs should be fixable easily, e.g. by replacing Auto_tac |
|
2154 |
by Force_tac; |
|
5524 | 2155 |
|
5726 | 2156 |
* Classical reasoner: setwrapper to setWrapper and compwrapper to |
2157 |
compWrapper; added safe wrapper (and access functions for it); |
|
5524 | 2158 |
|
5127 | 2159 |
* HOL/split_all_tac is now much faster and fails if there is nothing |
5726 | 2160 |
to split. Some EXISTING PROOFS MAY REQUIRE ADAPTION because the order |
2161 |
and the names of the automatically generated variables have changed. |
|
2162 |
split_all_tac has moved within claset() from unsafe wrappers to safe |
|
2163 |
wrappers, which means that !!-bound variables are split much more |
|
2164 |
aggressively, and safe_tac and clarify_tac now split such variables. |
|
2165 |
If this splitting is not appropriate, use delSWrapper "split_all_tac". |
|
2166 |
Note: the same holds for record_split_tac, which does the job of |
|
2167 |
split_all_tac for record fields. |
|
5127 | 2168 |
|
5726 | 2169 |
* HOL/Simplifier: Rewrite rules for case distinctions can now be added |
2170 |
permanently to the default simpset using Addsplits just like |
|
2171 |
Addsimps. They can be removed via Delsplits just like |
|
2172 |
Delsimps. Lower-case versions are also available. |
|
5127 | 2173 |
|
5726 | 2174 |
* HOL/Simplifier: The rule split_if is now part of the default |
2175 |
simpset. This means that the simplifier will eliminate all occurrences |
|
2176 |
of if-then-else in the conclusion of a goal. To prevent this, you can |
|
2177 |
either remove split_if completely from the default simpset by |
|
2178 |
`Delsplits [split_if]' or remove it in a specific call of the |
|
2179 |
simplifier using `... delsplits [split_if]'. You can also add/delete |
|
2180 |
other case splitting rules to/from the default simpset: every datatype |
|
2181 |
generates suitable rules `split_t_case' and `split_t_case_asm' (where |
|
2182 |
t is the name of the datatype). |
|
5127 | 2183 |
|
5726 | 2184 |
* Classical reasoner / Simplifier combination: new force_tac (and |
5127 | 2185 |
derivatives Force_tac, force) combines rewriting and classical |
2186 |
reasoning (and whatever other tools) similarly to auto_tac, but is |
|
5726 | 2187 |
aimed to solve the given subgoal completely. |
5127 | 2188 |
|
2189 |
||
2190 |
*** General *** |
|
2191 |
||
5217 | 2192 |
* new top-level commands `Goal' and `Goalw' that improve upon `goal' |
5127 | 2193 |
and `goalw': the theory is no longer needed as an explicit argument - |
2194 |
the current theory context is used; assumptions are no longer returned |
|
2195 |
at the ML-level unless one of them starts with ==> or !!; it is |
|
5217 | 2196 |
recommended to convert to these new commands using isatool fixgoal |
2197 |
(backup your sources first!); |
|
4842 | 2198 |
|
5217 | 2199 |
* new top-level commands 'thm' and 'thms' for retrieving theorems from |
5207 | 2200 |
the current theory context, and 'theory' to lookup stored theories; |
4806 | 2201 |
|
5722 | 2202 |
* new theory section 'locale' for declaring constants, assumptions and |
2203 |
definitions that have local scope; |
|
2204 |
||
5127 | 2205 |
* new theory section 'nonterminals' for purely syntactic types; |
4858 | 2206 |
|
5127 | 2207 |
* new theory section 'setup' for generic ML setup functions |
2208 |
(e.g. package initialization); |
|
4869 | 2209 |
|
5131 | 2210 |
* the distribution now includes Isabelle icons: see |
2211 |
lib/logo/isabelle-{small,tiny}.xpm; |
|
2212 |
||
5363 | 2213 |
* isatool install - install binaries with absolute references to |
2214 |
ISABELLE_HOME/bin; |
|
2215 |
||
5572 | 2216 |
* isatool logo -- create instances of the Isabelle logo (as EPS); |
2217 |
||
5407 | 2218 |
* print mode 'emacs' reserved for Isamode; |
2219 |
||
5726 | 2220 |
* support multiple print (ast) translations per constant name; |
2221 |
||
6925
8d4d45ec6a3d
theorems involving oracles are now printed with a suffixed [!];
wenzelm
parents:
6922
diff
changeset
|
2222 |
* theorems involving oracles are now printed with a suffixed [!]; |
8d4d45ec6a3d
theorems involving oracles are now printed with a suffixed [!];
wenzelm
parents:
6922
diff
changeset
|
2223 |
|
4711 | 2224 |
|
4661 | 2225 |
*** HOL *** |
2226 |
||
5710 | 2227 |
* there is now a tutorial on Isabelle/HOL (do 'isatool doc tutorial'); |
5709 | 2228 |
|
5217 | 2229 |
* HOL/inductive package reorganized and improved: now supports mutual |
5267 | 2230 |
definitions such as |
5217 | 2231 |
|
2232 |
inductive EVEN ODD |
|
2233 |
intrs |
|
2234 |
null "0 : EVEN" |
|
2235 |
oddI "n : EVEN ==> Suc n : ODD" |
|
2236 |
evenI "n : ODD ==> Suc n : EVEN" |
|
2237 |
||
2238 |
new theorem list "elims" contains an elimination rule for each of the |
|
2239 |
recursive sets; inductive definitions now handle disjunctive premises |
|
2240 |
correctly (also ZF); |
|
5214 | 2241 |
|
5217 | 2242 |
INCOMPATIBILITIES: requires Inductive as an ancestor; component |
2243 |
"mutual_induct" no longer exists - the induction rule is always |
|
2244 |
contained in "induct"; |
|
2245 |
||
2246 |
||
2247 |
* HOL/datatype package re-implemented and greatly improved: now |
|
5267 | 2248 |
supports mutually recursive datatypes such as |
5217 | 2249 |
|
2250 |
datatype |
|
2251 |
'a aexp = IF_THEN_ELSE ('a bexp) ('a aexp) ('a aexp) |
|
2252 |
| SUM ('a aexp) ('a aexp) |
|
2253 |
| DIFF ('a aexp) ('a aexp) |
|
2254 |
| NUM 'a |
|
2255 |
and |
|
2256 |
'a bexp = LESS ('a aexp) ('a aexp) |
|
2257 |
| AND ('a bexp) ('a bexp) |
|
2258 |
| OR ('a bexp) ('a bexp) |
|
2259 |
||
5267 | 2260 |
as well as indirectly recursive datatypes such as |
5214 | 2261 |
|
5217 | 2262 |
datatype |
2263 |
('a, 'b) term = Var 'a |
|
2264 |
| App 'b ((('a, 'b) term) list) |
|
5214 | 2265 |
|
5217 | 2266 |
The new tactic mutual_induct_tac [<var_1>, ..., <var_n>] i performs |
2267 |
induction on mutually / indirectly recursive datatypes. |
|
2268 |
||
2269 |
Primrec equations are now stored in theory and can be accessed via |
|
2270 |
<function_name>.simps. |
|
2271 |
||
2272 |
INCOMPATIBILITIES: |
|
5214 | 2273 |
|
5217 | 2274 |
- Theories using datatypes must now have theory Datatype as an |
2275 |
ancestor. |
|
2276 |
- The specific <typename>.induct_tac no longer exists - use the |
|
2277 |
generic induct_tac instead. |
|
5226 | 2278 |
- natE has been renamed to nat.exhaust - use exhaust_tac |
5217 | 2279 |
instead of res_inst_tac ... natE. Note that the variable |
5226 | 2280 |
names in nat.exhaust differ from the names in natE, this |
5217 | 2281 |
may cause some "fragile" proofs to fail. |
2282 |
- The theorems split_<typename>_case and split_<typename>_case_asm |
|
2283 |
have been renamed to <typename>.split and <typename>.split_asm. |
|
2284 |
- Since default sorts of type variables are now handled correctly, |
|
2285 |
some datatype definitions may have to be annotated with explicit |
|
2286 |
sort constraints. |
|
2287 |
- Primrec definitions no longer require function name and type |
|
2288 |
of recursive argument. |
|
5214 | 2289 |
|
5217 | 2290 |
Consider using isatool fixdatatype to adapt your theories and proof |
2291 |
scripts to the new package (backup your sources first!). |
|
2292 |
||
2293 |
||
5726 | 2294 |
* HOL/record package: considerably improved implementation; now |
2295 |
includes concrete syntax for record types, terms, updates; theorems |
|
2296 |
for surjective pairing and splitting !!-bound record variables; proof |
|
2297 |
support is as follows: |
|
2298 |
||
2299 |
1) standard conversions (selectors or updates applied to record |
|
2300 |
constructor terms) are part of the standard simpset; |
|
2301 |
||
2302 |
2) inject equations of the form ((x, y) = (x', y')) == x=x' & y=y' are |
|
2303 |
made part of standard simpset and claset via addIffs; |
|
2304 |
||
2305 |
3) a tactic for record field splitting (record_split_tac) is part of |
|
2306 |
the standard claset (addSWrapper); |
|
2307 |
||
2308 |
To get a better idea about these rules you may retrieve them via |
|
2309 |
something like 'thms "foo.simps"' or 'thms "foo.iffs"', where "foo" is |
|
2310 |
the name of your record type. |
|
2311 |
||
2312 |
The split tactic 3) conceptually simplifies by the following rule: |
|
2313 |
||
2314 |
"(!!x. PROP ?P x) == (!!a b. PROP ?P (a, b))" |
|
2315 |
||
2316 |
Thus any record variable that is bound by meta-all will automatically |
|
2317 |
blow up into some record constructor term, consequently the |
|
2318 |
simplifications of 1), 2) apply. Thus force_tac, auto_tac etc. shall |
|
2319 |
solve record problems automatically. |
|
2320 |
||
5214 | 2321 |
|
5125 | 2322 |
* reorganized the main HOL image: HOL/Integ and String loaded by |
2323 |
default; theory Main includes everything; |
|
2324 |
||
5650 | 2325 |
* automatic simplification of integer sums and comparisons, using cancellation; |
2326 |
||
5526 | 2327 |
* added option_map_eq_Some and not_Some_eq to the default simpset and claset; |
5127 | 2328 |
|
2329 |
* added disj_not1 = "(~P | Q) = (P --> Q)" to the default simpset; |
|
2330 |
||
2331 |
* many new identities for unions, intersections, set difference, etc.; |
|
2332 |
||
2333 |
* expand_if, expand_split, expand_sum_case and expand_nat_case are now |
|
2334 |
called split_if, split_split, split_sum_case and split_nat_case (to go |
|
2335 |
with add/delsplits); |
|
5125 | 2336 |
|
5127 | 2337 |
* HOL/Prod introduces simplification procedure unit_eq_proc rewriting |
2338 |
(?x::unit) = (); this is made part of the default simpset, which COULD |
|
2339 |
MAKE EXISTING PROOFS FAIL under rare circumstances (consider |
|
5207 | 2340 |
'Delsimprocs [unit_eq_proc];' as last resort); also note that |
2341 |
unit_abs_eta_conv is added in order to counter the effect of |
|
2342 |
unit_eq_proc on (%u::unit. f u), replacing it by f rather than by |
|
2343 |
%u.f(); |
|
5125 | 2344 |
|
5217 | 2345 |
* HOL/Fun INCOMPATIBILITY: `inj_onto' is now called `inj_on' (which |
2346 |
makes more sense); |
|
5109 | 2347 |
|
5475 | 2348 |
* HOL/Set INCOMPATIBILITY: rule `equals0D' is now a well-formed destruct rule; |
2349 |
It and 'sym RS equals0D' are now in the default claset, giving automatic |
|
2350 |
disjointness reasoning but breaking a few old proofs. |
|
5267 | 2351 |
|
5217 | 2352 |
* HOL/Relation INCOMPATIBILITY: renamed the relational operator r^-1 |
2353 |
to 'converse' from 'inverse' (for compatibility with ZF and some |
|
2354 |
literature); |
|
5085
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
wenzelm
parents:
5077
diff
changeset
|
2355 |
|
5127 | 2356 |
* HOL/recdef can now declare non-recursive functions, with {} supplied as |
2357 |
the well-founded relation; |
|
4838 | 2358 |
|
5490 | 2359 |
* HOL/Set INCOMPATIBILITY: the complement of set A is now written -A instead of |
2360 |
Compl A. The "Compl" syntax remains available as input syntax for this |
|
2361 |
release ONLY. |
|
2362 |
||
5127 | 2363 |
* HOL/Update: new theory of function updates: |
2364 |
f(a:=b) == %x. if x=a then b else f x |
|
2365 |
may also be iterated as in f(a:=b,c:=d,...); |
|
5077
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5075
diff
changeset
|
2366 |
|
5127 | 2367 |
* HOL/Vimage: new theory for inverse image of a function, syntax f-``B; |
4899 | 2368 |
|
5282 | 2369 |
* HOL/List: |
2370 |
- new function list_update written xs[i:=v] that updates the i-th |
|
2371 |
list position. May also be iterated as in xs[i:=a,j:=b,...]. |
|
5428 | 2372 |
- new function `upt' written [i..j(] which generates the list |
2373 |
[i,i+1,...,j-1], i.e. the upper bound is excluded. To include the upper |
|
2374 |
bound write [i..j], which is a shorthand for [i..j+1(]. |
|
5282 | 2375 |
- new lexicographic orderings and corresponding wellfoundedness theorems. |
4779 | 2376 |
|
5127 | 2377 |
* HOL/Arith: |
2378 |
- removed 'pred' (predecessor) function; |
|
2379 |
- generalized some theorems about n-1; |
|
2380 |
- many new laws about "div" and "mod"; |
|
2381 |
- new laws about greatest common divisors (see theory ex/Primes); |
|
4766 | 2382 |
|
5127 | 2383 |
* HOL/Relation: renamed the relational operator r^-1 "converse" |
4842 | 2384 |
instead of "inverse"; |
4711 | 2385 |
|
5651 | 2386 |
* HOL/Induct/Multiset: a theory of multisets, including the wellfoundedness |
2387 |
of the multiset ordering; |
|
2388 |
||
5127 | 2389 |
* directory HOL/Real: a construction of the reals using Dedekind cuts |
5651 | 2390 |
(not included by default); |
4835 | 2391 |
|
5127 | 2392 |
* directory HOL/UNITY: Chandy and Misra's UNITY formalism; |
4711 | 2393 |
|
5651 | 2394 |
* directory HOL/Hoare: a new version of Hoare logic which permits many-sorted |
2395 |
programs, i.e. different program variables may have different types. |
|
2396 |
||
5142 | 2397 |
* calling (stac rew i) now fails if "rew" has no effect on the goal |
2398 |
[previously, this check worked only if the rewrite rule was unconditional] |
|
5308 | 2399 |
Now rew can involve either definitions or equalities (either == or =). |
5002
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
2400 |
|
5363 | 2401 |
|
4879
58656c6a3551
"let" is no longer restricted to FOL terms and allows any logical terms
paulson
parents:
4869
diff
changeset
|
2402 |
*** ZF *** |
58656c6a3551
"let" is no longer restricted to FOL terms and allows any logical terms
paulson
parents:
4869
diff
changeset
|
2403 |
|
5332 | 2404 |
* theory Main includes everything; INCOMPATIBILITY: theory ZF.thy contains |
2405 |
only the theorems proved on ZF.ML; |
|
5160 | 2406 |
|
5475 | 2407 |
* ZF INCOMPATIBILITY: rule `equals0D' is now a well-formed destruct rule; |
2408 |
It and 'sym RS equals0D' are now in the default claset, giving automatic |
|
2409 |
disjointness reasoning but breaking a few old proofs. |
|
5267 | 2410 |
|
5160 | 2411 |
* ZF/Update: new theory of function updates |
2412 |
with default rewrite rule f(x:=y) ` z = if(z=x, y, f`z) |
|
2413 |
may also be iterated as in f(a:=b,c:=d,...); |
|
2414 |
||
4879
58656c6a3551
"let" is no longer restricted to FOL terms and allows any logical terms
paulson
parents:
4869
diff
changeset
|
2415 |
* in let x=t in u(x), neither t nor u(x) has to be an FOL term. |
4649 | 2416 |
|
5142 | 2417 |
* calling (stac rew i) now fails if "rew" has no effect on the goal |
2418 |
[previously, this check worked only if the rewrite rule was unconditional] |
|
5308 | 2419 |
Now rew can involve either definitions or equalities (either == or =). |
5142 | 2420 |
|
5160 | 2421 |
* case_tac provided for compatibility with HOL |
2422 |
(like the old excluded_middle_tac, but with subgoals swapped) |
|
2423 |
||
4842 | 2424 |
|
5127 | 2425 |
*** Internal programming interfaces *** |
5002
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
2426 |
|
5251 | 2427 |
* Pure: several new basic modules made available for general use, see |
2428 |
also src/Pure/README; |
|
5207 | 2429 |
|
5008 | 2430 |
* improved the theory data mechanism to support encapsulation (data |
2431 |
kind name replaced by private Object.kind, acting as authorization |
|
5373 | 2432 |
key); new type-safe user interface via functor TheoryDataFun; generic |
2433 |
print_data function becomes basically useless; |
|
5002
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
2434 |
|
5251 | 2435 |
* removed global_names compatibility flag -- all theory declarations |
2436 |
are qualified by default; |
|
2437 |
||
5085
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
wenzelm
parents:
5077
diff
changeset
|
2438 |
* module Pure/Syntax now offers quote / antiquote translation |
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
wenzelm
parents:
5077
diff
changeset
|
2439 |
functions (useful for Hoare logic etc. with implicit dependencies); |
5373 | 2440 |
see HOL/ex/Antiquote for an example use; |
5085
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
wenzelm
parents:
5077
diff
changeset
|
2441 |
|
5127 | 2442 |
* Simplifier now offers conversions (asm_)(full_)rewrite: simpset -> |
2443 |
cterm -> thm; |
|
2444 |
||
5207 | 2445 |
* new tactical CHANGED_GOAL for checking that a tactic modifies a |
2446 |
subgoal; |
|
5142 | 2447 |
|
5251 | 2448 |
* Display.print_goals function moved to Locale.print_goals; |
2449 |
||
5731 | 2450 |
* standard print function for goals supports current_goals_markers |
2451 |
variable for marking begin of proof, end of proof, start of goal; the |
|
2452 |
default is ("", "", ""); setting current_goals_markers := ("<proof>", |
|
2453 |
"</proof>", "<goal>") causes SGML like tagged proof state printing, |
|
2454 |
for example; |
|
2455 |
||
5002
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
2456 |
|
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
wenzelm
parents:
4981
diff
changeset
|
2457 |
|
4410 | 2458 |
New in Isabelle98 (January 1998) |
2459 |
-------------------------------- |
|
2460 |
||
2461 |
*** Overview of INCOMPATIBILITIES (see below for more details) *** |
|
2462 |
||
2463 |
* changed lexical syntax of terms / types: dots made part of long |
|
2464 |
identifiers, e.g. "%x.x" no longer possible, should be "%x. x"; |
|
2465 |
||
2466 |
* simpset (and claset) reference variable replaced by functions |
|
2467 |
simpset / simpset_ref; |
|
2468 |
||
2469 |
* no longer supports theory aliases (via merge) and non-trivial |
|
2470 |
implicit merge of thms' signatures; |
|
2471 |
||
2472 |
* most internal names of constants changed due to qualified names; |
|
2473 |
||
2474 |
* changed Pure/Sequence interface (see Pure/seq.ML); |
|
2475 |
||
3454 | 2476 |
|
3715 | 2477 |
*** General Changes *** |
2478 |
||
4174 | 2479 |
* hierachically structured name spaces (for consts, types, axms, thms |
3943 | 2480 |
etc.); new lexical class 'longid' (e.g. Foo.bar.x) may render much of |
4108 | 2481 |
old input syntactically incorrect (e.g. "%x.x"); COMPATIBILITY: |
2482 |
isatool fixdots ensures space after dots (e.g. "%x. x"); set |
|
4174 | 2483 |
long_names for fully qualified output names; NOTE: ML programs |
2484 |
(special tactics, packages etc.) referring to internal names may have |
|
2485 |
to be adapted to cope with fully qualified names; in case of severe |
|
2486 |
backward campatibility problems try setting 'global_names' at compile |
|
2487 |
time to have enrything declared within a flat name space; one may also |
|
2488 |
fine tune name declarations in theories via the 'global' and 'local' |
|
2489 |
section; |
|
4108 | 2490 |
|
2491 |
* reimplemented the implicit simpset and claset using the new anytype |
|
2492 |
data filed in signatures; references simpset:simpset ref etc. are |
|
2493 |
replaced by functions simpset:unit->simpset and |
|
2494 |
simpset_ref:unit->simpset ref; COMPATIBILITY: use isatool fixclasimp |
|
2495 |
to patch your ML files accordingly; |
|
3856 | 2496 |
|
3857 | 2497 |
* HTML output now includes theory graph data for display with Java |
2498 |
applet or isatool browser; data generated automatically via isatool |
|
3901 | 2499 |
usedir (see -i option, ISABELLE_USEDIR_OPTIONS); |
3857 | 2500 |
|
3856 | 2501 |
* defs may now be conditional; improved rewrite_goals_tac to handle |
2502 |
conditional equations; |
|
2503 |
||
4174 | 2504 |
* defs now admits additional type arguments, using TYPE('a) syntax; |
2505 |
||
3901 | 2506 |
* theory aliases via merge (e.g. M=A+B+C) no longer supported, always |
2507 |
creates a new theory node; implicit merge of thms' signatures is |
|
4112 | 2508 |
restricted to 'trivial' ones; COMPATIBILITY: one may have to use |
3901 | 2509 |
transfer:theory->thm->thm in (rare) cases; |
2510 |
||
3968
ec138de716d9
improved handling of draft signatures / theories; draft thms (and
wenzelm
parents:
3964
diff
changeset
|
2511 |
* improved handling of draft signatures / theories; draft thms (and |
ec138de716d9
improved handling of draft signatures / theories; draft thms (and
wenzelm
parents:
3964
diff
changeset
|
2512 |
ctyps, cterms) are automatically promoted to real ones; |
ec138de716d9
improved handling of draft signatures / theories; draft thms (and
wenzelm
parents:
3964
diff
changeset
|
2513 |
|
3901 | 2514 |
* slightly changed interfaces for oracles: admit many per theory, named |
2515 |
(e.g. oracle foo = mlfun), additional name argument for invoke_oracle; |
|
2516 |
||
2517 |
* print_goals: optional output of const types (set show_consts and |
|
2518 |
show_types); |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3846
diff
changeset
|
2519 |
|
4388 | 2520 |
* improved output of warnings (###) and errors (***); |
3697
c5833dfcc2cc
Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
wenzelm
parents:
3671
diff
changeset
|
2521 |
|
4178
e64ff1c1bc70
subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents:
4174
diff
changeset
|
2522 |
* 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
|
2523 |
|
3715 | 2524 |
* removed old README and Makefiles; |
3697
c5833dfcc2cc
Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
wenzelm
parents:
3671
diff
changeset
|
2525 |
|
3856 | 2526 |
* 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
|
2527 |
|
3715 | 2528 |
* removed obsolete init_pps and init_database; |
2529 |
||
2530 |
* deleted the obsolete tactical STATE, which was declared by |
|
2531 |
fun STATE tacfun st = tacfun st st; |
|
2532 |
||
4388 | 2533 |
* cd and use now support path variables, e.g. $ISABELLE_HOME, or ~ |
2534 |
(which abbreviates $HOME); |
|
4269 | 2535 |
|
2536 |
* changed Pure/Sequence interface (see Pure/seq.ML); COMPATIBILITY: |
|
2537 |
use isatool fixseq to adapt your ML programs (this works for fully |
|
2538 |
qualified references to the Sequence structure only!); |
|
2539 |
||
4381 | 2540 |
* use_thy no longer requires writable current directory; it always |
2541 |
reloads .ML *and* .thy file, if either one is out of date; |
|
4269 | 2542 |
|
3715 | 2543 |
|
2544 |
*** Classical Reasoner *** |
|
2545 |
||
3744 | 2546 |
* Clarify_tac, clarify_tac, clarify_step_tac, Clarify_step_tac: new |
2547 |
tactics that use classical reasoning to simplify a subgoal without |
|
2548 |
splitting it into several subgoals; |
|
3715 | 2549 |
|
3719 | 2550 |
* Safe_tac: like safe_tac but uses the default claset; |
2551 |
||
3715 | 2552 |
|
2553 |
*** Simplifier *** |
|
2554 |
||
2555 |
* added simplification meta rules: |
|
2556 |
(asm_)(full_)simplify: simpset -> thm -> thm; |
|
2557 |
||
2558 |
* simplifier.ML no longer part of Pure -- has to be loaded by object |
|
2559 |
logics (again); |
|
2560 |
||
2561 |
* added prems argument to simplification procedures; |
|
2562 |
||
4325 | 2563 |
* HOL, FOL, ZF: added infix function `addsplits': |
2564 |
instead of `<simpset> setloop (split_tac <thms>)' |
|
2565 |
you can simply write `<simpset> addsplits <thms>' |
|
2566 |
||
3715 | 2567 |
|
2568 |
*** Syntax *** |
|
2569 |
||
4174 | 2570 |
* TYPE('a) syntax for type reflection terms; |
2571 |
||
3985 | 2572 |
* no longer handles consts with name "" -- declare as 'syntax' instead; |
3856 | 2573 |
|
2574 |
* pretty printer: changed order of mixfix annotation preference (again!); |
|
3846 | 2575 |
|
3715 | 2576 |
* Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories; |
2577 |
||
2578 |
||
2579 |
*** HOL *** |
|
2580 |
||
5726 | 2581 |
* HOL: there is a new splitter `split_asm_tac' that can be used e.g. |
4189 | 2582 |
with `addloop' of the simplifier to faciliate case splitting in premises. |
2583 |
||
4035 | 2584 |
* HOL/TLA: Stephan Merz's formalization of Lamport's Temporal Logic of Actions; |
3985 | 2585 |
|
2586 |
* HOL/Auth: new protocol proofs including some for the Internet |
|
4035 | 2587 |
protocol TLS; |
3985 | 2588 |
|
4125 | 2589 |
* HOL/Map: new theory of `maps' a la VDM; |
3982 | 2590 |
|
4335 | 2591 |
* HOL/simplifier: simplification procedures nat_cancel_sums for |
2592 |
cancelling out common nat summands from =, <, <= (in)equalities, or |
|
2593 |
differences; simplification procedures nat_cancel_factor for |
|
2594 |
cancelling common factor from =, <, <= (in)equalities over natural |
|
4373 | 2595 |
sums; nat_cancel contains both kinds of procedures, it is installed by |
2596 |
default in Arith.thy -- this COULD MAKE EXISTING PROOFS FAIL; |
|
4335 | 2597 |
|
3580 | 2598 |
* HOL/simplifier: terms of the form |
4325 | 2599 |
`? x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x)' (or t=x) |
3580 | 2600 |
are rewritten to |
4035 | 2601 |
`P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t)', |
2602 |
and those of the form |
|
4325 | 2603 |
`! x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x) --> R(x)' (or t=x) |
4035 | 2604 |
are rewritten to |
2605 |
`P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t) --> R(t)', |
|
2606 |
||
2607 |
* HOL/datatype |
|
2608 |
Each datatype `t' now comes with a theorem `split_t_case' of the form |
|
3580 | 2609 |
|
4035 | 2610 |
P(t_case f1 ... fn x) = |
2611 |
( (!y1 ... ym1. x = C1 y1 ... ym1 --> P(f1 y1 ... ym1)) & |
|
2612 |
... |
|
4189 | 2613 |
(!y1 ... ymn. x = Cn y1 ... ymn --> P(f1 y1 ... ymn)) |
4035 | 2614 |
) |
2615 |
||
4930
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4915
diff
changeset
|
2616 |
and a theorem `split_t_case_asm' of the form |
4189 | 2617 |
|
2618 |
P(t_case f1 ... fn x) = |
|
2619 |
~( (? y1 ... ym1. x = C1 y1 ... ym1 & ~P(f1 y1 ... ym1)) | |
|
2620 |
... |
|
2621 |
(? y1 ... ymn. x = Cn y1 ... ymn & ~P(f1 y1 ... ymn)) |
|
2622 |
) |
|
4930
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4915
diff
changeset
|
2623 |
which can be added to a simpset via `addsplits'. The existing theorems |
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4915
diff
changeset
|
2624 |
expand_list_case and expand_option_case have been renamed to |
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4915
diff
changeset
|
2625 |
split_list_case and split_option_case. |
4189 | 2626 |
|
4361 | 2627 |
* HOL/Arithmetic: |
2628 |
- `pred n' is automatically converted to `n-1'. |
|
2629 |
Users are strongly encouraged not to use `pred' any longer, |
|
2630 |
because it will disappear altogether at some point. |
|
2631 |
- Users are strongly encouraged to write "0 < n" rather than |
|
2632 |
"n ~= 0". Theorems and proof tools have been modified towards this |
|
2633 |
`standard'. |
|
4357 | 2634 |
|
4502 | 2635 |
* HOL/Lists: |
2636 |
the function "set_of_list" has been renamed "set" (and its theorems too); |
|
2637 |
the function "nth" now takes its arguments in the reverse order and |
|
2638 |
has acquired the infix notation "!" as in "xs!n". |
|
3570 | 2639 |
|
4154 | 2640 |
* HOL/Set: UNIV is now a constant and is no longer translated to Compl{}; |
2641 |
||
2642 |
* HOL/Set: The operator (UN x.B x) now abbreviates (UN x:UNIV. B x) and its |
|
2643 |
specialist theorems (like UN1_I) are gone. Similarly for (INT x.B x); |
|
2644 |
||
4575 | 2645 |
* HOL/record: extensible records with schematic structural subtyping |
2646 |
(single inheritance); EXPERIMENTAL version demonstrating the encoding, |
|
2647 |
still lacks various theorems and concrete record syntax; |
|
2648 |
||
4125 | 2649 |
|
3715 | 2650 |
*** HOLCF *** |
3535 | 2651 |
|
4125 | 2652 |
* removed "axioms" and "generated by" sections; |
2653 |
||
4123 | 2654 |
* replaced "ops" section by extended "consts" section, which is capable of |
4125 | 2655 |
handling the continuous function space "->" directly; |
2656 |
||
2657 |
* domain package: |
|
2658 |
. proves theorems immediately and stores them in the theory, |
|
2659 |
. creates hierachical name space, |
|
2660 |
. now uses normal mixfix annotations (instead of cinfix...), |
|
2661 |
. minor changes to some names and values (for consistency), |
|
2662 |
. e.g. cases -> casedist, dists_eq -> dist_eqs, [take_lemma] -> take_lemmas, |
|
2663 |
. separator between mutual domain defs: changed "," to "and", |
|
2664 |
. improved handling of sort constraints; now they have to |
|
2665 |
appear on the left-hand side of the equations only; |
|
4123 | 2666 |
|
2667 |
* fixed LAM <x,y,zs>.b syntax; |
|
3567 | 2668 |
|
3744 | 2669 |
* added extended adm_tac to simplifier in HOLCF -- can now discharge |
2670 |
adm (%x. P (t x)), where P is chainfinite and t continuous; |
|
3579 | 2671 |
|
2672 |
||
3719 | 2673 |
*** FOL and ZF *** |
2674 |
||
5726 | 2675 |
* FOL: there is a new splitter `split_asm_tac' that can be used e.g. |
4189 | 2676 |
with `addloop' of the simplifier to faciliate case splitting in premises. |
2677 |
||
3744 | 2678 |
* qed_spec_mp, qed_goal_spec_mp, qed_goalw_spec_mp are available, as |
2679 |
in HOL, they strip ALL and --> from proved theorems; |
|
2680 |
||
3719 | 2681 |
|
3579 | 2682 |
|
3006 | 2683 |
New in Isabelle94-8 (May 1997) |
2684 |
------------------------------ |
|
2654 | 2685 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2686 |
*** General Changes *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2687 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2688 |
* 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
|
2689 |
still somewhat experimental); old Makefiles etc. still functional; |
2971 | 2690 |
|
3205 | 2691 |
* new 'Isabelle System Manual'; |
2692 |
||
2825 | 2693 |
* INSTALL text, together with ./configure and ./build scripts; |
2773 | 2694 |
|
3006 | 2695 |
* reimplemented type inference for greater efficiency, better error |
2696 |
messages and clean internal interface; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2697 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2698 |
* 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
|
2699 |
setting goals_limit); |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2700 |
|
3006 | 2701 |
|
2702 |
*** Syntax *** |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2703 |
|
3116 | 2704 |
* supports alternative (named) syntax tables (parser and pretty |
2705 |
printer); internal interface is provided by add_modesyntax(_i); |
|
2706 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2707 |
* 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
|
2708 |
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
|
2709 |
"symbols" syntax table; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2710 |
|
2705 | 2711 |
* added token_translation interface (may translate name tokens in |
2756 | 2712 |
arbitrary ways, dependent on their type (free, bound, tfree, ...) and |
3116 | 2713 |
the current print_mode); IMPORTANT: user print translation functions |
2714 |
are responsible for marking newly introduced bounds |
|
2715 |
(Syntax.mark_boundT); |
|
2705 | 2716 |
|
2730 | 2717 |
* token translations for modes "xterm" and "xterm_color" that display |
3006 | 2718 |
names in bold, underline etc. or colors (which requires a color |
2719 |
version of xterm); |
|
2730 | 2720 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2721 |
* 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
|
2722 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2723 |
* added typed_print_translation (like print_translation, but may |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2724 |
access type of constant); |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2725 |
|
3006 | 2726 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2727 |
*** Classical Reasoner *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2728 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2729 |
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
|
2730 |
some limitations. Blast_tac... |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2731 |
+ ignores addss, addbefore, addafter; this restriction is intrinsic |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2732 |
+ ignores elimination rules that don't have the correct format |
5726 | 2733 |
(the conclusion MUST be a formula variable) |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2734 |
+ ignores types, which can make HOL proofs fail |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2735 |
+ 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
|
2736 |
[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
|
2737 |
+ 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
|
2738 |
|
3107 | 2739 |
* substitution with equality assumptions no longer permutes other |
2740 |
assumptions; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2741 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2742 |
* 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
|
2743 |
setwrapper to setWrapper and compwrapper to compWrapper; added safe wrapper |
3107 | 2744 |
(and access functions for it); |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2745 |
|
5726 | 2746 |
* improved combination of classical reasoner and simplifier: |
3317 | 2747 |
+ functions for handling clasimpsets |
2748 |
+ improvement of addss: now the simplifier is called _after_ the |
|
2749 |
safe steps. |
|
2750 |
+ safe variant of addss called addSss: uses safe simplifications |
|
5726 | 2751 |
_during_ the safe steps. It is more complete as it allows multiple |
3317 | 2752 |
instantiations of unknowns (e.g. with slow_tac). |
3006 | 2753 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2754 |
*** Simplifier *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2755 |
|
3006 | 2756 |
* added interface for simplification procedures (functions that |
2757 |
produce *proven* rewrite rules on the fly, depending on current |
|
2758 |
redex); |
|
2759 |
||
2760 |
* ordering on terms as parameter (used for ordered rewriting); |
|
2761 |
||
3107 | 2762 |
* 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
|
2763 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2764 |
* 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
|
2765 |
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
|
2766 |
functions setsolver and addsolver have been renamed to setSolver and |
3107 | 2767 |
addSolver; added safe_asm_full_simp_tac; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2768 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2769 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2770 |
*** HOL *** |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2771 |
|
3042 | 2772 |
* a generic induction tactic `induct_tac' which works for all datatypes and |
3107 | 2773 |
also for type `nat'; |
3042 | 2774 |
|
3316 | 2775 |
* a generic case distinction tactic `exhaust_tac' which works for all |
2776 |
datatypes and also for type `nat'; |
|
2777 |
||
2778 |
* each datatype comes with a function `size'; |
|
2779 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2780 |
* patterns in case expressions allow tuple patterns as arguments to |
3107 | 2781 |
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
|
2782 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2783 |
* primrec now also works with type nat; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2784 |
|
3338 | 2785 |
* recdef: a new declaration form, allows general recursive functions to be |
2786 |
defined in theory files. See HOL/ex/Fib, HOL/ex/Primes, HOL/Subst/Unify. |
|
2787 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2788 |
* the constant for negation has been renamed from "not" to "Not" to |
3107 | 2789 |
harmonize with FOL, ZF, LK, etc.; |
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2790 |
|
3107 | 2791 |
* HOL/ex/LFilter theory of a corecursive "filter" functional for |
2792 |
infinite lists; |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2793 |
|
3227 | 2794 |
* HOL/Modelcheck demonstrates invocation of model checker oracle; |
2795 |
||
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2796 |
* 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
|
2797 |
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
|
2798 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2799 |
* more examples in HOL/MiniML and HOL/Auth; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2800 |
|
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2801 |
* more default rewrite rules for quantifiers, union/intersection; |
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2802 |
|
3321 | 2803 |
* a new constant `arbitrary == @x.False'; |
2804 |
||
3107 | 2805 |
* HOLCF/IOA replaces old HOL/IOA; |
2806 |
||
5726 | 2807 |
* HOLCF changes: derived all rules and arities |
2808 |
+ axiomatic type classes instead of classes |
|
2653
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
2809 |
+ typedef instead of faking type definitions |
2747 | 2810 |
+ eliminated the internal constants less_fun, less_cfun, UU_fun, UU_cfun etc. |
2730 | 2811 |
+ 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
|
2812 |
+ eliminated the types void, one, tr |
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
slotosch
parents:
2649
diff
changeset
|
2813 |
+ 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
|
2814 |
+ eliminated blift from Lift3.thy (use Def instead of blift) |
3107 | 2815 |
all eliminated rules are derived as theorems --> no visible changes ; |
2649 | 2816 |
|
3006 | 2817 |
|
3002
223e5d65faaa
Reorganized under headings. Also documented Blast_tac and LFilter
paulson
parents:
2993
diff
changeset
|
2818 |
*** ZF *** |
2553 | 2819 |
|
2865 | 2820 |
* ZF now has Fast_tac, Simp_tac and Auto_tac. Union_iff is a now a default |
2821 |
rewrite rule; this may affect some proofs. eq_cs is gone but can be put back |
|
2822 |
as ZF_cs addSIs [equalityI]; |
|
2553 | 2823 |
|
2554 | 2824 |
|
2732 | 2825 |
|
2553 | 2826 |
New in Isabelle94-7 (November 96) |
2827 |
--------------------------------- |
|
2828 |
||
2829 |
* allowing negative levels (as offsets) in prlev and choplev; |
|
2830 |
||
2554 | 2831 |
* super-linear speedup for large simplifications; |
2832 |
||
2833 |
* FOL, ZF and HOL now use miniscoping: rewriting pushes |
|
2834 |
quantifications in as far as possible (COULD MAKE EXISTING PROOFS |
|
2835 |
FAIL); can suppress it using the command Delsimps (ex_simps @ |
|
2836 |
all_simps); De Morgan laws are also now included, by default; |
|
2837 |
||
2838 |
* improved printing of ==> : ~: |
|
2839 |
||
2840 |
* new object-logic "Sequents" adds linear logic, while replacing LK |
|
2841 |
and Modal (thanks to Sara Kalvala); |
|
2842 |
||
2843 |
* HOL/Auth: correctness proofs for authentication protocols; |
|
2844 |
||
2845 |
* HOL: new auto_tac combines rewriting and classical reasoning (many |
|
2846 |
examples on HOL/Auth); |
|
2847 |
||
2848 |
* HOL: new command AddIffs for declaring theorems of the form P=Q to |
|
2849 |
the rewriter and classical reasoner simultaneously; |
|
2850 |
||
2851 |
* function uresult no longer returns theorems in "standard" format; |
|
2852 |
regain previous version by: val uresult = standard o uresult; |
|
2853 |
||
2854 |
||
2855 |
||
2856 |
New in Isabelle94-6 |
|
2857 |
------------------- |
|
2858 |
||
2859 |
* oracles -- these establish an interface between Isabelle and trusted |
|
2860 |
external reasoners, which may deliver results as theorems; |
|
2861 |
||
2862 |
* proof objects (in particular record all uses of oracles); |
|
2863 |
||
2864 |
* Simp_tac, Fast_tac, etc. that refer to implicit simpset / claset; |
|
2865 |
||
2866 |
* "constdefs" section in theory files; |
|
2867 |
||
2868 |
* "primrec" section (HOL) no longer requires names; |
|
2869 |
||
2870 |
* internal type "tactic" now simply "thm -> thm Sequence.seq"; |
|
2871 |
||
2872 |
||
2873 |
||
2874 |
New in Isabelle94-5 |
|
2875 |
------------------- |
|
2876 |
||
2877 |
* reduced space requirements; |
|
2878 |
||
2879 |
* automatic HTML generation from theories; |
|
2880 |
||
2881 |
* theory files no longer require "..." (quotes) around most types; |
|
2882 |
||
2883 |
* new examples, including two proofs of the Church-Rosser theorem; |
|
2884 |
||
2885 |
* non-curried (1994) version of HOL is no longer distributed; |
|
2886 |
||
2553 | 2887 |
|
2557 | 2888 |
|
2889 |
New in Isabelle94-4 |
|
2890 |
------------------- |
|
2891 |
||
2747 | 2892 |
* greatly reduced space requirements; |
2557 | 2893 |
|
2894 |
* theory files (.thy) no longer require \...\ escapes at line breaks; |
|
2895 |
||
5726 | 2896 |
* searchable theorem database (see the section "Retrieving theorems" on |
2557 | 2897 |
page 8 of the Reference Manual); |
2898 |
||
2899 |
* new examples, including Grabczewski's monumental case study of the |
|
2900 |
Axiom of Choice; |
|
2901 |
||
2902 |
* The previous version of HOL renamed to Old_HOL; |
|
2903 |
||
5726 | 2904 |
* The new version of HOL (previously called CHOL) uses a curried syntax |
2557 | 2905 |
for functions. Application looks like f a b instead of f(a,b); |
2906 |
||
2907 |
* Mutually recursive inductive definitions finally work in HOL; |
|
2908 |
||
2909 |
* In ZF, pattern-matching on tuples is now available in all abstractions and |
|
2910 |
translates to the operator "split"; |
|
2911 |
||
2912 |
||
2913 |
||
2914 |
New in Isabelle94-3 |
|
2915 |
------------------- |
|
2916 |
||
5726 | 2917 |
* new infix operator, addss, allowing the classical reasoner to |
2557 | 2918 |
perform simplification at each step of its search. Example: |
5726 | 2919 |
fast_tac (cs addss ss) |
2557 | 2920 |
|
5726 | 2921 |
* a new logic, CHOL, the same as HOL, but with a curried syntax |
2922 |
for functions. Application looks like f a b instead of f(a,b). Also pairs |
|
2557 | 2923 |
look like (a,b) instead of <a,b>; |
2924 |
||
2925 |
* PLEASE NOTE: CHOL will eventually replace HOL! |
|
2926 |
||
2927 |
* In CHOL, pattern-matching on tuples is now available in all abstractions. |
|
2928 |
It translates to the operator "split". A new theory of integers is available; |
|
2929 |
||
2930 |
* In ZF, integer numerals now denote two's-complement binary integers. |
|
2931 |
Arithmetic operations can be performed by rewriting. See ZF/ex/Bin.ML; |
|
2932 |
||
5726 | 2933 |
* Many new examples: I/O automata, Church-Rosser theorem, equivalents |
2557 | 2934 |
of the Axiom of Choice; |
2935 |
||
2936 |
||
2937 |
||
2938 |
New in Isabelle94-2 |
|
2939 |
------------------- |
|
2940 |
||
5726 | 2941 |
* Significantly faster resolution; |
2557 | 2942 |
|
2943 |
* the different sections in a .thy file can now be mixed and repeated |
|
2944 |
freely; |
|
2945 |
||
2946 |
* Database of theorems for FOL, HOL and ZF. New |
|
2947 |
commands including qed, qed_goal and bind_thm store theorems in the database. |
|
2948 |
||
2949 |
* Simple database queries: return a named theorem (get_thm) or all theorems of |
|
2950 |
a given theory (thms_of), or find out what theory a theorem was proved in |
|
2951 |
(theory_of_thm); |
|
2952 |
||
2953 |
* Bugs fixed in the inductive definition and datatype packages; |
|
2954 |
||
2955 |
* The classical reasoner provides deepen_tac and depth_tac, making FOL_dup_cs |
|
2956 |
and HOL_dup_cs obsolete; |
|
2957 |
||
2958 |
* Syntactic ambiguities caused by the new treatment of syntax in Isabelle94-1 |
|
2959 |
have been removed; |
|
2960 |
||
2961 |
* Simpler definition of function space in ZF; |
|
2962 |
||
2963 |
* new results about cardinal and ordinal arithmetic in ZF; |
|
2964 |
||
2965 |
* 'subtype' facility in HOL for introducing new types as subsets of existing |
|
2966 |
types; |
|
2967 |
||
2968 |
||
2553 | 2969 |
$Id$ |