author | paulson <lp15@cam.ac.uk> |
Wed, 18 Mar 2015 14:28:40 +0000 | |
changeset 59743 | d8fb00487c4d |
parent 59741 | 5b762cd73a8e |
parent 59739 | 4ed50ebf5d36 |
child 59747 | 7325ffa35038 |
permissions | -rw-r--r-- |
51397
03b586ee5930
support for 'chapter' specifications within session ROOT;
wenzelm
parents:
51263
diff
changeset
|
1 |
chapter HOL |
03b586ee5930
support for 'chapter' specifications within session ROOT;
wenzelm
parents:
51263
diff
changeset
|
2 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
3 |
session HOL (main) = Pure + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
4 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
5 |
Classical Higher-order Logic. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
6 |
*} |
56801
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
wenzelm
parents:
56781
diff
changeset
|
7 |
global_theories |
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
wenzelm
parents:
56781
diff
changeset
|
8 |
Main |
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
wenzelm
parents:
56781
diff
changeset
|
9 |
Complex_Main |
48901
5e0455e29339
more basic file dependencies -- no load command here;
wenzelm
parents:
48765
diff
changeset
|
10 |
files |
5e0455e29339
more basic file dependencies -- no load command here;
wenzelm
parents:
48765
diff
changeset
|
11 |
"Tools/Quickcheck/Narrowing_Engine.hs" |
5e0455e29339
more basic file dependencies -- no load command here;
wenzelm
parents:
48765
diff
changeset
|
12 |
"Tools/Quickcheck/PNF_Narrowing_Engine.hs" |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
13 |
document_files |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
14 |
"root.bib" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
15 |
"root.tex" |
48338 | 16 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
17 |
session "HOL-Proofs" = Pure + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
18 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
19 |
HOL-Main with explicit proof terms. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
20 |
*} |
59006
272d7fb92396
no quick_and_dirty for proof extraction, to avoid obscure errors like "corr: bad proof";
wenzelm
parents:
58849
diff
changeset
|
21 |
options [document = false, quick_and_dirty = false] |
52488
cd65ee49a8ba
discontinued system option "proofs" -- global state of Proofterm.proofs is persistently compiled into HOL-Proofs image;
wenzelm
parents:
52424
diff
changeset
|
22 |
theories Proofs (*sequential change of global flag!*) |
58372
bfd497f2f4c2
moved 'old_datatype' out of 'Main' (but put it in 'HOL-Proofs' because of the inductive realizer)
blanchet
parents:
58371
diff
changeset
|
23 |
theories "~~/src/HOL/Library/Old_Datatype" |
48901
5e0455e29339
more basic file dependencies -- no load command here;
wenzelm
parents:
48765
diff
changeset
|
24 |
files |
5e0455e29339
more basic file dependencies -- no load command here;
wenzelm
parents:
48765
diff
changeset
|
25 |
"Tools/Quickcheck/Narrowing_Engine.hs" |
5e0455e29339
more basic file dependencies -- no load command here;
wenzelm
parents:
48765
diff
changeset
|
26 |
"Tools/Quickcheck/PNF_Narrowing_Engine.hs" |
48338 | 27 |
|
50844
b95ff3744815
populate "main" session group, e.g. relevant for Isabelle/jEdit logic selection;
wenzelm
parents:
50833
diff
changeset
|
28 |
session "HOL-Library" (main) in Library = HOL + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
29 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
30 |
Classical Higher-order Logic -- batteries included. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
31 |
*} |
48481 | 32 |
theories |
33 |
Library |
|
51161
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
34 |
(*conflicting type class instantiations*) |
48481 | 35 |
List_lexord |
36 |
Sublist_Order |
|
51115
7dbd6832a689
consolidation of library theories on product orders
haftmann
parents:
51093
diff
changeset
|
37 |
Product_Lexorder |
7dbd6832a689
consolidation of library theories on product orders
haftmann
parents:
51093
diff
changeset
|
38 |
Product_Order |
51161
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
39 |
Finite_Lattice |
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
40 |
(*data refinements and dependent applications*) |
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
41 |
AList_Mapping |
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
42 |
Code_Binary_Nat |
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
43 |
Code_Char |
55447 | 44 |
Code_Prolog |
48481 | 45 |
Code_Real_Approx_By_Float |
50023
28f3263d4d1b
refined stack of library theories implementing int and/or nat by target language numerals
haftmann
parents:
49985
diff
changeset
|
46 |
Code_Target_Numeral |
51161
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
47 |
DAList |
54429
be1bc181bcde
explicit inclusion of data refinement theory into HOL-Library session
haftmann
parents:
54193
diff
changeset
|
48 |
DAList_Multiset |
51161
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
49 |
RBT_Mapping |
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
50 |
RBT_Set |
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
51 |
(*legacy tools*) |
49985
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents:
49932
diff
changeset
|
52 |
Refute |
58372
bfd497f2f4c2
moved 'old_datatype' out of 'Main' (but put it in 'HOL-Proofs' because of the inductive realizer)
blanchet
parents:
58371
diff
changeset
|
53 |
Old_Datatype |
51161
6ed12ae3b3e1
attempt to re-establish conventions which theories are loaded into the grand unified library theory;
haftmann
parents:
51160
diff
changeset
|
54 |
Old_Recdef |
58110
019c0211ed1f
took out legacy material from 'HOL/Library/Library.thy'
blanchet
parents:
58039
diff
changeset
|
55 |
Old_SMT |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
56 |
document_files "root.bib" "root.tex" |
48481 | 57 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
58 |
session "HOL-Hahn_Banach" in Hahn_Banach = HOL + |
48481 | 59 |
description {* |
60 |
Author: Gertrud Bauer, TU Munich |
|
61 |
||
62 |
The Hahn-Banach theorem for real vector spaces. |
|
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
63 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
64 |
This is the proof of the Hahn-Banach theorem for real vectorspaces, |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
65 |
following H. Heuser, Funktionalanalysis, p. 228 -232. The Hahn-Banach |
55018
2a526bd279ed
moved 'Zorn' into 'Main', since it's a BNF dependency
blanchet
parents:
54961
diff
changeset
|
66 |
theorem is one of the fundamental theorems of functional analysis. It is a |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
67 |
conclusion of Zorn's lemma. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
68 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
69 |
Two different formaulations of the theorem are presented, one for general |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
70 |
real vectorspaces and its application to normed vectorspaces. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
71 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
72 |
The theorem says, that every continous linearform, defined on arbitrary |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
73 |
subspaces (not only one-dimensional subspaces), can be extended to a |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
74 |
continous linearform on the whole vectorspace. |
48481 | 75 |
*} |
76 |
theories Hahn_Banach |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
77 |
document_files "root.bib" "root.tex" |
48481 | 78 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
79 |
session "HOL-Induct" in Induct = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
80 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
81 |
Examples of (Co)Inductive Definitions. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
82 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
83 |
Comb proves the Church-Rosser theorem for combinators (see |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
84 |
http://www.cl.cam.ac.uk/ftp/papers/reports/TR396-lcp-generic-automatic-proof-tools.ps.gz). |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
85 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
86 |
Mutil is the famous Mutilated Chess Board problem (see |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
87 |
http://www.cl.cam.ac.uk/ftp/papers/reports/TR394-lcp-mutilated-chess-board.dvi.gz). |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
88 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
89 |
PropLog proves the completeness of a formalization of propositional logic |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
90 |
(see |
58372
bfd497f2f4c2
moved 'old_datatype' out of 'Main' (but put it in 'HOL-Proofs' because of the inductive realizer)
blanchet
parents:
58371
diff
changeset
|
91 |
http://www.cl.cam.ac.uk/Research/Reports/TR312-lcp-set-II.ps.gz). |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
92 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
93 |
Exp demonstrates the use of iterated inductive definitions to reason about |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
94 |
mutually recursive relations. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
95 |
*} |
58372
bfd497f2f4c2
moved 'old_datatype' out of 'Main' (but put it in 'HOL-Proofs' because of the inductive realizer)
blanchet
parents:
58371
diff
changeset
|
96 |
theories [document = false] |
bfd497f2f4c2
moved 'old_datatype' out of 'Main' (but put it in 'HOL-Proofs' because of the inductive realizer)
blanchet
parents:
58371
diff
changeset
|
97 |
"~~/src/HOL/Library/Old_Datatype" |
48481 | 98 |
theories [quick_and_dirty] |
99 |
Common_Patterns |
|
100 |
theories |
|
101 |
QuoDataType |
|
102 |
QuoNestedDataType |
|
103 |
Term |
|
104 |
SList |
|
105 |
ABexp |
|
106 |
Tree |
|
107 |
Ordinals |
|
108 |
Sigma_Algebra |
|
109 |
Comb |
|
110 |
PropLog |
|
111 |
Com |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
112 |
document_files "root.tex" |
48481 | 113 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
114 |
session "HOL-IMP" in IMP = HOL + |
59446 | 115 |
options [document_variants = document] |
48481 | 116 |
theories [document = false] |
55601 | 117 |
"~~/src/Tools/Permanent_Interpretation" |
48481 | 118 |
"~~/src/HOL/Library/While_Combinator" |
119 |
"~~/src/HOL/Library/Char_ord" |
|
120 |
"~~/src/HOL/Library/List_lexord" |
|
51625 | 121 |
"~~/src/HOL/Library/Quotient_List" |
122 |
"~~/src/HOL/Library/Extended" |
|
48481 | 123 |
theories |
124 |
BExp |
|
125 |
ASM |
|
50050 | 126 |
Finite_Reachable |
52394 | 127 |
Denotational |
52400 | 128 |
Compiler2 |
48481 | 129 |
Poly_Types |
130 |
Sec_Typing |
|
131 |
Sec_TypingT |
|
52726 | 132 |
Def_Init_Big |
133 |
Def_Init_Small |
|
134 |
Fold |
|
48481 | 135 |
Live |
136 |
Live_True |
|
137 |
Hoare_Examples |
|
52269 | 138 |
VCG |
52282 | 139 |
Hoare_Total |
48481 | 140 |
Collecting1 |
48765
fb1ed5230abc
special code with lists no longer necessary, use sets
nipkow
parents:
48738
diff
changeset
|
141 |
Collecting_Examples |
48481 | 142 |
Abs_Int_Tests |
143 |
Abs_Int1_parity |
|
144 |
Abs_Int1_const |
|
145 |
Abs_Int3 |
|
146 |
"Abs_Int_ITP/Abs_Int1_parity_ITP" |
|
147 |
"Abs_Int_ITP/Abs_Int1_const_ITP" |
|
148 |
"Abs_Int_ITP/Abs_Int3_ITP" |
|
149 |
"Abs_Int_Den/Abs_Int_den2" |
|
150 |
Procs_Dyn_Vars_Dyn |
|
151 |
Procs_Stat_Vars_Dyn |
|
152 |
Procs_Stat_Vars_Stat |
|
153 |
C_like |
|
154 |
OO |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
155 |
document_files "root.bib" "root.tex" |
48481 | 156 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
157 |
session "HOL-IMPP" in IMPP = HOL + |
48481 | 158 |
description {* |
159 |
Author: David von Oheimb |
|
160 |
Copyright 1999 TUM |
|
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
161 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
162 |
IMPP -- An imperative language with procedures. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
163 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
164 |
This is an extension of IMP with local variables and mutually recursive |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
165 |
procedures. For documentation see "Hoare Logic for Mutual Recursion and |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
166 |
Local Variables" (http://isabelle.in.tum.de/Bali/papers/FSTTCS99.html). |
48481 | 167 |
*} |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
168 |
options [document = false] |
48481 | 169 |
theories EvenOdd |
170 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
171 |
session "HOL-Import" in Import = HOL + |
48481 | 172 |
theories HOL_Light_Maps |
173 |
theories [condition = HOL_LIGHT_BUNDLE] HOL_Light_Import |
|
174 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
175 |
session "HOL-Number_Theory" in Number_Theory = HOL + |
55321
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
176 |
description {* |
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
177 |
Fundamental Theorem of Arithmetic, Chinese Remainder Theorem, Fermat/Euler |
55730
97ff9276e12d
Gauss.thy ported from Old_Number_Theory (unfinished)
paulson <lp15@cam.ac.uk>
parents:
55663
diff
changeset
|
178 |
Theorem, Wilson's Theorem, some lemmas for Quadratic Reciprocity. |
55321
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
179 |
*} |
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
180 |
theories [document = false] |
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
181 |
"~~/src/HOL/Library/FuncSet" |
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
182 |
"~~/src/HOL/Library/Multiset" |
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
183 |
"~~/src/HOL/Algebra/Ring" |
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
184 |
"~~/src/HOL/Algebra/FiniteProduct" |
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
185 |
theories |
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
186 |
Pocklington |
55730
97ff9276e12d
Gauss.thy ported from Old_Number_Theory (unfinished)
paulson <lp15@cam.ac.uk>
parents:
55663
diff
changeset
|
187 |
Gauss |
55321
eadea363deb6
Restoration of Pocklington.thy. Tidying.
paulson <lp15@cam.ac.uk>
parents:
55240
diff
changeset
|
188 |
Number_Theory |
58023
62826b36ac5e
generic euclidean algorithm (due to Manuel Eberl)
haftmann
parents:
57998
diff
changeset
|
189 |
Euclidean_Algorithm |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
190 |
document_files |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
191 |
"root.tex" |
48481 | 192 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
193 |
session "HOL-Old_Number_Theory" in Old_Number_Theory = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
194 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
195 |
Fundamental Theorem of Arithmetic, Chinese Remainder Theorem, Fermat/Euler |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
196 |
Theorem, Wilson's Theorem, Quadratic Reciprocity. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
197 |
*} |
48481 | 198 |
theories [document = false] |
199 |
"~~/src/HOL/Library/Infinite_Set" |
|
200 |
"~~/src/HOL/Library/Permutation" |
|
201 |
theories |
|
202 |
Fib |
|
203 |
Factorization |
|
204 |
Chinese |
|
205 |
WilsonRuss |
|
206 |
WilsonBij |
|
207 |
Quadratic_Reciprocity |
|
208 |
Primes |
|
209 |
Pocklington |
|
58623 | 210 |
document_files |
211 |
"root.bib" |
|
212 |
"root.tex" |
|
48481 | 213 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
214 |
session "HOL-Hoare" in Hoare = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
215 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
216 |
Verification of imperative programs (verification conditions are generated |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
217 |
automatically from pre/post conditions and loop invariants). |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
218 |
*} |
48481 | 219 |
theories Hoare |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
220 |
document_files "root.bib" "root.tex" |
48481 | 221 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
222 |
session "HOL-Hoare_Parallel" in Hoare_Parallel = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
223 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
224 |
Verification of shared-variable imperative programs a la Owicki-Gries. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
225 |
(verification conditions are generated automatically). |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
226 |
*} |
48481 | 227 |
theories Hoare_Parallel |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
228 |
document_files "root.bib" "root.tex" |
48481 | 229 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
230 |
session "HOL-Codegenerator_Test" in Codegenerator_Test = "HOL-Library" + |
59446 | 231 |
options [document = false, browser_info = false] |
51422
821a70e29e0b
proper formatting, to facilitate line-based diff;
wenzelm
parents:
51421
diff
changeset
|
232 |
theories |
821a70e29e0b
proper formatting, to facilitate line-based diff;
wenzelm
parents:
51421
diff
changeset
|
233 |
Generate |
821a70e29e0b
proper formatting, to facilitate line-based diff;
wenzelm
parents:
51421
diff
changeset
|
234 |
Generate_Binary_Nat |
821a70e29e0b
proper formatting, to facilitate line-based diff;
wenzelm
parents:
51421
diff
changeset
|
235 |
Generate_Target_Nat |
821a70e29e0b
proper formatting, to facilitate line-based diff;
wenzelm
parents:
51421
diff
changeset
|
236 |
Generate_Efficient_Datastructures |
821a70e29e0b
proper formatting, to facilitate line-based diff;
wenzelm
parents:
51421
diff
changeset
|
237 |
Generate_Pretty_Char |
58415 | 238 |
theories [condition = ISABELLE_GHC] |
58039
469a375212c1
add testing framework for generated code
Andreas Lochbihler
parents:
58023
diff
changeset
|
239 |
Code_Test_GHC |
58415 | 240 |
theories [condition = ISABELLE_MLTON] |
58039
469a375212c1
add testing framework for generated code
Andreas Lochbihler
parents:
58023
diff
changeset
|
241 |
Code_Test_MLton |
58415 | 242 |
theories [condition = ISABELLE_OCAMLC] |
58039
469a375212c1
add testing framework for generated code
Andreas Lochbihler
parents:
58023
diff
changeset
|
243 |
Code_Test_OCaml |
58415 | 244 |
theories [condition = ISABELLE_POLYML] |
58039
469a375212c1
add testing framework for generated code
Andreas Lochbihler
parents:
58023
diff
changeset
|
245 |
Code_Test_PolyML |
58415 | 246 |
theories [condition = ISABELLE_SCALA] |
58039
469a375212c1
add testing framework for generated code
Andreas Lochbihler
parents:
58023
diff
changeset
|
247 |
Code_Test_Scala |
58415 | 248 |
theories [condition = ISABELLE_SMLNJ] |
58039
469a375212c1
add testing framework for generated code
Andreas Lochbihler
parents:
58023
diff
changeset
|
249 |
Code_Test_SMLNJ |
48481 | 250 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
251 |
session "HOL-Metis_Examples" in Metis_Examples = HOL + |
48481 | 252 |
description {* |
253 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
254 |
Author: Jasmin Blanchette, TU Muenchen |
|
255 |
||
256 |
Testing Metis and Sledgehammer. |
|
257 |
*} |
|
58423 | 258 |
options [document = false] |
48481 | 259 |
theories |
260 |
Abstraction |
|
261 |
Big_O |
|
262 |
Binary_Tree |
|
263 |
Clausification |
|
264 |
Message |
|
265 |
Proxies |
|
266 |
Tarski |
|
267 |
Trans_Closure |
|
268 |
Sets |
|
269 |
||
55072 | 270 |
session "HOL-Nitpick_Examples" in Nitpick_Examples = HOL + |
48481 | 271 |
description {* |
272 |
Author: Jasmin Blanchette, TU Muenchen |
|
273 |
Copyright 2009 |
|
274 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
275 |
options [document = false] |
48481 | 276 |
theories [quick_and_dirty] Nitpick_Examples |
277 |
||
50844
b95ff3744815
populate "main" session group, e.g. relevant for Isabelle/jEdit logic selection;
wenzelm
parents:
50833
diff
changeset
|
278 |
session "HOL-Algebra" (main) in Algebra = HOL + |
48481 | 279 |
description {* |
280 |
Author: Clemens Ballarin, started 24 September 1999 |
|
281 |
||
282 |
The Isabelle Algebraic Library. |
|
283 |
*} |
|
284 |
theories [document = false] |
|
285 |
(* Preliminaries from set and number theory *) |
|
286 |
"~~/src/HOL/Library/FuncSet" |
|
55159
608c157d743d
Replacing the theory Library/Binomial by Number_Theory/Binomial
paulson <lp15@cam.ac.uk>
parents:
55123
diff
changeset
|
287 |
"~~/src/HOL/Number_Theory/Primes" |
48481 | 288 |
"~~/src/HOL/Library/Permutation" |
289 |
theories |
|
290 |
(*** New development, based on explicit structures ***) |
|
291 |
(* Groups *) |
|
292 |
FiniteProduct (* Product operator for commutative groups *) |
|
293 |
Sylow (* Sylow's theorem *) |
|
294 |
Bij (* Automorphism Groups *) |
|
295 |
||
296 |
(* Rings *) |
|
297 |
Divisibility (* Rings *) |
|
298 |
IntRing (* Ideals and residue classes *) |
|
299 |
UnivPoly (* Polynomials *) |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
300 |
document_files "root.bib" "root.tex" |
48481 | 301 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
302 |
session "HOL-Auth" in Auth = HOL + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
303 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
304 |
A new approach to verifying authentication protocols. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
305 |
*} |
48481 | 306 |
theories |
307 |
Auth_Shared |
|
308 |
Auth_Public |
|
309 |
"Smartcard/Auth_Smartcard" |
|
310 |
"Guard/Auth_Guard_Shared" |
|
311 |
"Guard/Auth_Guard_Public" |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
312 |
document_files "root.tex" |
48481 | 313 |
|
51236
f301ad90c48b
more explicit session dependency, for improved parallel performance of HOL-UNITY test session -- NB: separate 'theories' sections are sequential;
wenzelm
parents:
51161
diff
changeset
|
314 |
session "HOL-UNITY" in UNITY = "HOL-Auth" + |
48481 | 315 |
description {* |
316 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
317 |
Copyright 1998 University of Cambridge |
|
318 |
||
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
319 |
Verifying security protocols using Chandy and Misra's UNITY formalism. |
48481 | 320 |
*} |
321 |
theories |
|
322 |
(*Basic meta-theory*) |
|
323 |
"UNITY_Main" |
|
324 |
||
325 |
(*Simple examples: no composition*) |
|
326 |
"Simple/Deadlock" |
|
327 |
"Simple/Common" |
|
328 |
"Simple/Network" |
|
329 |
"Simple/Token" |
|
330 |
"Simple/Channel" |
|
331 |
"Simple/Lift" |
|
332 |
"Simple/Mutex" |
|
333 |
"Simple/Reach" |
|
334 |
"Simple/Reachability" |
|
335 |
||
336 |
(*Verifying security protocols using UNITY*) |
|
337 |
"Simple/NSP_Bad" |
|
338 |
||
339 |
(*Example of composition*) |
|
340 |
"Comp/Handshake" |
|
341 |
||
342 |
(*Universal properties examples*) |
|
343 |
"Comp/Counter" |
|
344 |
"Comp/Counterc" |
|
345 |
"Comp/Priority" |
|
346 |
||
347 |
"Comp/TimerArray" |
|
348 |
"Comp/Progress" |
|
349 |
||
350 |
"Comp/Alloc" |
|
351 |
"Comp/AllocImpl" |
|
352 |
"Comp/Client" |
|
353 |
||
354 |
(*obsolete*) |
|
355 |
"ELT" |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
356 |
document_files "root.tex" |
48481 | 357 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
358 |
session "HOL-Unix" in Unix = HOL + |
48481 | 359 |
options [print_mode = "no_brackets,no_type_brackets"] |
360 |
theories Unix |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
361 |
document_files "root.bib" "root.tex" |
48481 | 362 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
363 |
session "HOL-ZF" in ZF = HOL + |
48481 | 364 |
theories MainZF Games |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
365 |
document_files "root.tex" |
48481 | 366 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
367 |
session "HOL-Imperative_HOL" in Imperative_HOL = HOL + |
59446 | 368 |
options [print_mode = "iff,no_brackets"] |
48481 | 369 |
theories [document = false] |
370 |
"~~/src/HOL/Library/Countable" |
|
371 |
"~~/src/HOL/Library/Monad_Syntax" |
|
372 |
"~~/src/HOL/Library/LaTeXsugar" |
|
373 |
theories Imperative_HOL_ex |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
374 |
document_files "root.bib" "root.tex" |
48481 | 375 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
376 |
session "HOL-Decision_Procs" in Decision_Procs = HOL + |
51544 | 377 |
description {* |
378 |
Various decision procedures, typically involving reflection. |
|
379 |
*} |
|
58413
22dd971f6938
renamed ISABELLE_POLYML to ML_SYSTEM_POLYML, to avoid overlap with ISABELLE_POLYML_PATH;
wenzelm
parents:
58385
diff
changeset
|
380 |
options [condition = ML_SYSTEM_POLYML, document = false] |
48481 | 381 |
theories Decision_Procs |
382 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
383 |
session "HOL-Proofs-ex" in "Proofs/ex" = "HOL-Proofs" + |
52499 | 384 |
options [document = false, parallel_proofs = 0] |
52424
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
52400
diff
changeset
|
385 |
theories |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
52400
diff
changeset
|
386 |
Hilbert_Classical |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
52400
diff
changeset
|
387 |
XML_Data |
48481 | 388 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
389 |
session "HOL-Proofs-Extraction" in "Proofs/Extraction" = "HOL-Proofs" + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
390 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
391 |
Examples for program extraction in Higher-Order Logic. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
392 |
*} |
59006
272d7fb92396
no quick_and_dirty for proof extraction, to avoid obscure errors like "corr: bad proof";
wenzelm
parents:
58849
diff
changeset
|
393 |
options [condition = ML_SYSTEM_POLYML, parallel_proofs = 0, quick_and_dirty = false] |
48481 | 394 |
theories [document = false] |
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
51115
diff
changeset
|
395 |
"~~/src/HOL/Library/Code_Target_Numeral" |
48481 | 396 |
"~~/src/HOL/Library/Monad_Syntax" |
397 |
"~~/src/HOL/Number_Theory/Primes" |
|
398 |
"~~/src/HOL/Number_Theory/UniqueFactorization" |
|
399 |
"~~/src/HOL/Library/State_Monad" |
|
400 |
theories |
|
401 |
Greatest_Common_Divisor |
|
402 |
Warshall |
|
403 |
Higman_Extraction |
|
404 |
Pigeonhole |
|
405 |
Euclid |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
406 |
document_files "root.bib" "root.tex" |
48481 | 407 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
408 |
session "HOL-Proofs-Lambda" in "Proofs/Lambda" = "HOL-Proofs" + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
409 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
410 |
Lambda Calculus in de Bruijn's Notation. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
411 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
412 |
This session defines lambda-calculus terms with de Bruijn indixes and |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
413 |
proves confluence of beta, eta and beta+eta. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
414 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
415 |
The paper "More Church-Rosser Proofs (in Isabelle/HOL)" describes the whole |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
416 |
theory (see http://www.in.tum.de/~nipkow/pubs/jar2001.html). |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
417 |
*} |
59446 | 418 |
options [print_mode = "no_brackets", parallel_proofs = 0, quick_and_dirty = false] |
48481 | 419 |
theories [document = false] |
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
51115
diff
changeset
|
420 |
"~~/src/HOL/Library/Code_Target_Int" |
48481 | 421 |
theories |
422 |
Eta |
|
423 |
StrongNorm |
|
424 |
Standardization |
|
425 |
WeakNorm |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
426 |
document_files "root.bib" "root.tex" |
48481 | 427 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
428 |
session "HOL-Prolog" in Prolog = HOL + |
48481 | 429 |
description {* |
430 |
Author: David von Oheimb (based on a lecture on Lambda Prolog by Nadathur) |
|
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
431 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
432 |
A bare-bones implementation of Lambda-Prolog. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
433 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
434 |
This is a simple exploratory implementation of Lambda-Prolog in HOL, |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
435 |
including some minimal examples (in Test.thy) and a more typical example of |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
436 |
a little functional language and its type system. |
48481 | 437 |
*} |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
438 |
options [document = false] |
48481 | 439 |
theories Test Type |
440 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
441 |
session "HOL-MicroJava" in MicroJava = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
442 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
443 |
Formalization of a fragment of Java, together with a corresponding virtual |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
444 |
machine and a specification of its bytecode verifier and a lightweight |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
445 |
bytecode verifier, including proofs of type-safety. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
446 |
*} |
59446 | 447 |
theories [document = false] |
448 |
"~~/src/HOL/Library/While_Combinator" |
|
449 |
theories |
|
450 |
MicroJava |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
451 |
document_files |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
452 |
"introduction.tex" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
453 |
"root.bib" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
454 |
"root.tex" |
48481 | 455 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
456 |
session "HOL-NanoJava" in NanoJava = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
457 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
458 |
Hoare Logic for a tiny fragment of Java. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
459 |
*} |
48481 | 460 |
theories Example |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
461 |
document_files "root.bib" "root.tex" |
48481 | 462 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
463 |
session "HOL-Bali" in Bali = HOL + |
48481 | 464 |
theories |
465 |
AxExample |
|
466 |
AxSound |
|
467 |
AxCompl |
|
468 |
Trans |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
469 |
document_files "root.tex" |
48481 | 470 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
471 |
session "HOL-IOA" in IOA = HOL + |
48481 | 472 |
description {* |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
473 |
Author: Tobias Nipkow and Konrad Slind and Olaf Müller |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
474 |
Copyright 1994--1996 TU Muenchen |
48481 | 475 |
|
55417
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents:
55370
diff
changeset
|
476 |
The meta-theory of I/O-Automata in HOL. This formalization has been |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
477 |
significantly changed and extended, see HOLCF/IOA. There are also the |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
478 |
proofs of two communication protocols which formerly have been here. |
48481 | 479 |
|
480 |
@inproceedings{Nipkow-Slind-IOA, |
|
481 |
author={Tobias Nipkow and Konrad Slind}, |
|
482 |
title={{I/O} Automata in {Isabelle/HOL}}, |
|
483 |
booktitle={Proc.\ TYPES Workshop 1994}, |
|
484 |
publisher=Springer, |
|
485 |
series=LNCS, |
|
486 |
note={To appear}} |
|
487 |
ftp://ftp.informatik.tu-muenchen.de/local/lehrstuhl/nipkow/ioa.ps.gz |
|
488 |
||
489 |
and |
|
490 |
||
491 |
@inproceedings{Mueller-Nipkow, |
|
492 |
author={Olaf M\"uller and Tobias Nipkow}, |
|
493 |
title={Combining Model Checking and Deduction for {I/O}-Automata}, |
|
494 |
booktitle={Proc.\ TACAS Workshop}, |
|
495 |
organization={Aarhus University, BRICS report}, |
|
496 |
year=1995} |
|
497 |
ftp://ftp.informatik.tu-muenchen.de/local/lehrstuhl/nipkow/tacas.dvi.gz |
|
498 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
499 |
options [document = false] |
48481 | 500 |
theories Solve |
501 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
502 |
session "HOL-Lattice" in Lattice = HOL + |
48481 | 503 |
description {* |
504 |
Author: Markus Wenzel, TU Muenchen |
|
505 |
||
506 |
Basic theory of lattices and orders. |
|
507 |
*} |
|
508 |
theories CompleteLattice |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
509 |
document_files "root.tex" |
48481 | 510 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
511 |
session "HOL-ex" in ex = HOL + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
512 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
513 |
Miscellaneous examples for Higher-Order Logic. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
514 |
*} |
58423 | 515 |
options [condition = ML_SYSTEM_POLYML] |
48481 | 516 |
theories [document = false] |
517 |
"~~/src/HOL/Library/State_Monad" |
|
50023
28f3263d4d1b
refined stack of library theories implementing int and/or nat by target language numerals
haftmann
parents:
49985
diff
changeset
|
518 |
Code_Binary_Nat_examples |
48481 | 519 |
"~~/src/HOL/Library/FuncSet" |
520 |
Eval_Examples |
|
521 |
Normalization_by_Evaluation |
|
522 |
Hebrew |
|
523 |
Chinese |
|
524 |
Serbian |
|
525 |
"~~/src/HOL/Library/FinFun_Syntax" |
|
49985
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents:
49932
diff
changeset
|
526 |
"~~/src/HOL/Library/Refute" |
56922 | 527 |
"~~/src/HOL/Library/Transitive_Closure_Table" |
55123
a389b50e6a42
no document for Cartouche_Examples: avoid problems typesetting "\001";
wenzelm
parents:
55075
diff
changeset
|
528 |
Cartouche_Examples |
48481 | 529 |
theories |
59090 | 530 |
Commands |
57507 | 531 |
Adhoc_Overloading_Examples |
48481 | 532 |
Iff_Oracle |
533 |
Coercion_Examples |
|
534 |
Higher_Order_Logic |
|
535 |
Abstract_NAT |
|
536 |
Guess |
|
537 |
Fundefs |
|
538 |
Induction_Schema |
|
539 |
LocaleTest2 |
|
540 |
Records |
|
541 |
While_Combinator_Example |
|
542 |
MonoidGroup |
|
543 |
BinEx |
|
544 |
Hex_Bin_Examples |
|
545 |
Antiquote |
|
546 |
Multiquote |
|
547 |
PER |
|
548 |
NatSum |
|
549 |
ThreeDivides |
|
59190
3a594fd13ca4
3 old example lemmas by Amine listed in the top 100 theorems
kleing
parents:
59162
diff
changeset
|
550 |
Cubic_Quartic |
59739 | 551 |
Pythagoras |
48481 | 552 |
Intuitionistic |
553 |
CTL |
|
554 |
Arith_Examples |
|
555 |
BT |
|
556 |
Tree23 |
|
58644 | 557 |
Bubblesort |
48481 | 558 |
MergeSort |
559 |
Lagrange |
|
560 |
Groebner_Examples |
|
561 |
MT |
|
562 |
Unification |
|
563 |
Primrec |
|
564 |
Tarski |
|
565 |
Classical |
|
566 |
Set_Theory |
|
567 |
Termination |
|
568 |
Coherent |
|
569 |
PresburgerEx |
|
51093 | 570 |
Reflection_Examples |
48481 | 571 |
Sqrt |
572 |
Sqrt_Script |
|
573 |
Transfer_Ex |
|
574 |
Transfer_Int_Nat |
|
56922 | 575 |
Transitive_Closure_Table_Ex |
48481 | 576 |
HarmonicSeries |
577 |
Refute_Examples |
|
578 |
Execute_Choice |
|
579 |
Gauge_Integration |
|
580 |
Dedekind_Real |
|
581 |
Quicksort |
|
582 |
Birthday_Paradox |
|
583 |
List_to_Set_Comprehension_Examples |
|
584 |
Seq |
|
585 |
Simproc_Tests |
|
586 |
Executable_Relation |
|
587 |
FinFunPred |
|
55663 | 588 |
Set_Comprehension_Pointfree_Examples |
48481 | 589 |
Parallel_Example |
50138 | 590 |
IArray_Examples |
51559 | 591 |
SVC_Oracle |
53430 | 592 |
Simps_Case_Conv_Examples |
53935 | 593 |
ML |
59739 | 594 |
Rewrite_Examples |
56815 | 595 |
SAT_Examples |
58630 | 596 |
SOS |
58418 | 597 |
SOS_Cert |
51558
91f8bed6d0a4
allow build with skip_proofs enabled -- disable it for sessions that would fail due to embedded diagnostic commands, for example;
wenzelm
parents:
51553
diff
changeset
|
598 |
theories [skip_proofs = false] |
91f8bed6d0a4
allow build with skip_proofs enabled -- disable it for sessions that would fail due to embedded diagnostic commands, for example;
wenzelm
parents:
51553
diff
changeset
|
599 |
Meson_Test |
48690 | 600 |
theories [condition = SVC_HOME] |
601 |
svc_test |
|
58331
054e9a9fccad
enabled 'Sudoku' only with 'ISABELLE_FULL_TEST' -- Sudoku is fast enough on modern hardware (within seconds on my MacBook), but it seems to fail on older test machines
blanchet
parents:
58329
diff
changeset
|
602 |
theories [condition = ISABELLE_FULL_TEST] |
054e9a9fccad
enabled 'Sudoku' only with 'ISABELLE_FULL_TEST' -- Sudoku is fast enough on modern hardware (within seconds on my MacBook), but it seems to fail on older test machines
blanchet
parents:
58329
diff
changeset
|
603 |
Sudoku |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
604 |
document_files "root.bib" "root.tex" |
48481 | 605 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
606 |
session "HOL-Isar_Examples" in Isar_Examples = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
607 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
608 |
Miscellaneous Isabelle/Isar examples for Higher-Order Logic. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
609 |
*} |
48481 | 610 |
theories [document = false] |
611 |
"~~/src/HOL/Library/Lattice_Syntax" |
|
612 |
"../Number_Theory/Primes" |
|
613 |
theories |
|
614 |
Basic_Logic |
|
615 |
Cantor |
|
616 |
Drinker |
|
617 |
Expr_Compiler |
|
618 |
Fibonacci |
|
619 |
Group |
|
620 |
Group_Context |
|
621 |
Group_Notepad |
|
622 |
Hoare_Ex |
|
623 |
Knaster_Tarski |
|
624 |
Mutilated_Checkerboard |
|
625 |
Nested_Datatype |
|
626 |
Peirce |
|
627 |
Puzzle |
|
628 |
Summation |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
629 |
document_files |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
630 |
"root.bib" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
631 |
"root.tex" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
632 |
"style.tex" |
48481 | 633 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
634 |
session "HOL-SET_Protocol" in SET_Protocol = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
635 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
636 |
Verification of the SET Protocol. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
637 |
*} |
48481 | 638 |
theories [document = false] "~~/src/HOL/Library/Nat_Bijection" |
639 |
theories SET_Protocol |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
640 |
document_files "root.tex" |
48481 | 641 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
642 |
session "HOL-Matrix_LP" in Matrix_LP = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
643 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
644 |
Two-dimensional matrices and linear programming. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
645 |
*} |
48481 | 646 |
theories Cplex |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
647 |
document_files "root.tex" |
48481 | 648 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
649 |
session "HOL-TLA" in TLA = HOL + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
650 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
651 |
Lamport's Temporal Logic of Actions. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
652 |
*} |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
653 |
options [document = false] |
48481 | 654 |
theories TLA |
655 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
656 |
session "HOL-TLA-Inc" in "TLA/Inc" = "HOL-TLA" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
657 |
options [document = false] |
48481 | 658 |
theories Inc |
659 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
660 |
session "HOL-TLA-Buffer" in "TLA/Buffer" = "HOL-TLA" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
661 |
options [document = false] |
48481 | 662 |
theories DBuffer |
663 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
664 |
session "HOL-TLA-Memory" in "TLA/Memory" = "HOL-TLA" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
665 |
options [document = false] |
48481 | 666 |
theories MemoryImplementation |
667 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
668 |
session "HOL-TPTP" in TPTP = HOL + |
48481 | 669 |
description {* |
670 |
Author: Jasmin Blanchette, TU Muenchen |
|
671 |
Author: Nik Sultana, University of Cambridge |
|
672 |
Copyright 2011 |
|
673 |
||
674 |
TPTP-related extensions. |
|
675 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
676 |
options [document = false] |
48481 | 677 |
theories |
678 |
ATP_Theory_Export |
|
679 |
MaSh_Eval |
|
680 |
TPTP_Interpret |
|
681 |
THF_Arith |
|
55596
928b9f677165
reconstruction framework for LEO-II's TPTP proofs;
sultana
parents:
55450
diff
changeset
|
682 |
TPTP_Proof_Reconstruction |
52488
cd65ee49a8ba
discontinued system option "proofs" -- global state of Proofterm.proofs is persistently compiled into HOL-Proofs image;
wenzelm
parents:
52424
diff
changeset
|
683 |
theories |
48481 | 684 |
ATP_Problem_Import |
685 |
||
50844
b95ff3744815
populate "main" session group, e.g. relevant for Isabelle/jEdit logic selection;
wenzelm
parents:
50833
diff
changeset
|
686 |
session "HOL-Multivariate_Analysis" (main) in Multivariate_Analysis = HOL + |
48481 | 687 |
theories |
688 |
Multivariate_Analysis |
|
689 |
Determinants |
|
56215 | 690 |
PolyRoots |
691 |
Complex_Analysis_Basics |
|
59741
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents:
59667
diff
changeset
|
692 |
Complex_Transcendental |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
693 |
document_files |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
694 |
"root.tex" |
48481 | 695 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
696 |
session "HOL-Probability" in "Probability" = "HOL-Multivariate_Analysis" + |
48481 | 697 |
theories [document = false] |
698 |
"~~/src/HOL/Library/Countable" |
|
699 |
"~~/src/HOL/Library/Permutation" |
|
56994 | 700 |
"~~/src/HOL/Library/Order_Continuity" |
701 |
"~~/src/HOL/Library/Diagonal_Subsequence" |
|
48481 | 702 |
theories |
703 |
Probability |
|
704 |
"ex/Dining_Cryptographers" |
|
705 |
"ex/Koepf_Duermuth_Countermeasure" |
|
59144
c9b75c03de3c
unfortunately, there is no general function space in the measurable spaces
hoelzl
parents:
59090
diff
changeset
|
706 |
"ex/Measure_Not_CCC" |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
707 |
document_files "root.tex" |
48481 | 708 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
709 |
session "HOL-Nominal" (main) in Nominal = HOL + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
710 |
options [document = false] |
48481 | 711 |
theories Nominal |
712 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
713 |
session "HOL-Nominal-Examples" in "Nominal/Examples" = "HOL-Nominal" + |
58423 | 714 |
options [condition = ML_SYSTEM_POLYML, document = false] |
58329
a31404ec7414
run larger nominal examples only 'ISABELLE_FULL_TEST'
blanchet
parents:
58313
diff
changeset
|
715 |
theories |
59162
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
716 |
Class3 |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
717 |
CK_Machine |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
718 |
Compile |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
719 |
Contexts |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
720 |
Crary |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
721 |
CR_Takahashi |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
722 |
CR |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
723 |
Fsub |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
724 |
Height |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
725 |
Lambda_mu |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
726 |
Lam_Funs |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
727 |
LocalWeakening |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
728 |
Pattern |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
729 |
SN |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
730 |
SOS |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
731 |
Standardization |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
732 |
Support |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
733 |
Type_Preservation |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
734 |
Weakening |
dca5594761f2
afford full test, with slightly improved scheduling order;
wenzelm
parents:
59144
diff
changeset
|
735 |
W |
58329
a31404ec7414
run larger nominal examples only 'ISABELLE_FULL_TEST'
blanchet
parents:
58313
diff
changeset
|
736 |
theories [quick_and_dirty] |
a31404ec7414
run larger nominal examples only 'ISABELLE_FULL_TEST'
blanchet
parents:
58313
diff
changeset
|
737 |
VC_Condition |
48481 | 738 |
|
55054
e1f3714bc508
moved subset of 'HOL-Cardinals' needed for BNF into 'HOL'
blanchet
parents:
55033
diff
changeset
|
739 |
session "HOL-Cardinals" in Cardinals = HOL + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
740 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
741 |
Ordinals and Cardinals, Full Theories. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
742 |
*} |
49511
9f5bfef8bd82
created separate session "HOL-BNF-LFP" as a step towards eventual integration in "HOL" in the middle term
blanchet
parents:
49510
diff
changeset
|
743 |
options [document = false] |
49439 | 744 |
theories Cardinals |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
745 |
document_files |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
746 |
"intro.tex" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
747 |
"root.tex" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
748 |
"root.bib" |
48975
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
48932
diff
changeset
|
749 |
|
58309
a09ec6daaa19
renamed 'BNF_Examples' to 'Datatype_Examples' (cf. 'datatypes.pdf')
blanchet
parents:
58308
diff
changeset
|
750 |
session "HOL-Datatype_Examples" in Datatype_Examples = HOL + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
751 |
description {* |
58312 | 752 |
(Co)datatype Examples, including large ones from John Harrison. |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
753 |
*} |
49932
9d3bc26485eb
back to parallel HOL-BNF-Examples, which seems to have suffered from Future.map on canceled persistent futures;
wenzelm
parents:
49903
diff
changeset
|
754 |
options [document = false] |
48975
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
48932
diff
changeset
|
755 |
theories |
58372
bfd497f2f4c2
moved 'old_datatype' out of 'Main' (but put it in 'HOL-Proofs' because of the inductive realizer)
blanchet
parents:
58371
diff
changeset
|
756 |
"~~/src/HOL/Library/Old_Datatype" |
56454 | 757 |
Compat |
48975
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
48932
diff
changeset
|
758 |
Lambda_Term |
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
48932
diff
changeset
|
759 |
Process |
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
48932
diff
changeset
|
760 |
TreeFsetI |
49872 | 761 |
"Derivation_Trees/Gram_Lang" |
762 |
"Derivation_Trees/Parallel" |
|
50517 | 763 |
Koenig |
54961 | 764 |
Stream_Processor |
53122
bc87b7af4767
renamed theory files to be closer to (new) command names
blanchet
parents:
52726
diff
changeset
|
765 |
Misc_Codatatype |
bc87b7af4767
renamed theory files to be closer to (new) command names
blanchet
parents:
52726
diff
changeset
|
766 |
Misc_Datatype |
54193 | 767 |
Misc_Primcorec |
53306 | 768 |
Misc_Primrec |
58849
ef7700ecce83
discontinued pointless option: timing is always on (overall theory only);
wenzelm
parents:
58842
diff
changeset
|
769 |
theories [condition = ISABELLE_FULL_TEST] |
58308 | 770 |
Brackin |
58313 | 771 |
IsaFoR |
58433
d518f892cec6
made N2M tests conditional, since they appear to cause Isatest timeouts and are kind of slow
blanchet
parents:
58423
diff
changeset
|
772 |
Misc_N2M |
48975
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
48932
diff
changeset
|
773 |
|
50844
b95ff3744815
populate "main" session group, e.g. relevant for Isabelle/jEdit logic selection;
wenzelm
parents:
50833
diff
changeset
|
774 |
session "HOL-Word" (main) in Word = HOL + |
48481 | 775 |
theories Word |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
776 |
document_files "root.bib" "root.tex" |
48481 | 777 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
778 |
session "HOL-Word-Examples" in "Word/Examples" = "HOL-Word" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
779 |
options [document = false] |
48481 | 780 |
theories WordExamples |
781 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
782 |
session "HOL-Statespace" in Statespace = HOL + |
51558
91f8bed6d0a4
allow build with skip_proofs enabled -- disable it for sessions that would fail due to embedded diagnostic commands, for example;
wenzelm
parents:
51553
diff
changeset
|
783 |
theories [skip_proofs = false] |
91f8bed6d0a4
allow build with skip_proofs enabled -- disable it for sessions that would fail due to embedded diagnostic commands, for example;
wenzelm
parents:
51553
diff
changeset
|
784 |
StateSpaceEx |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
785 |
document_files "root.tex" |
48481 | 786 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
787 |
session "HOL-NSA" in NSA = HOL + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
788 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
789 |
Nonstandard analysis. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
790 |
*} |
48481 | 791 |
theories Hypercomplex |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
792 |
document_files "root.tex" |
48481 | 793 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
794 |
session "HOL-NSA-Examples" in "NSA/Examples" = "HOL-NSA" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
795 |
options [document = false] |
48481 | 796 |
theories NSPrimes |
797 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
798 |
session "HOL-Mirabelle" in Mirabelle = HOL + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
799 |
options [document = false] |
48481 | 800 |
theories Mirabelle_Test |
48589
fb446a780d50
separate session HOL-Mirabelle-ex -- cannot run isolated shell scripts within build tool;
wenzelm
parents:
48588
diff
changeset
|
801 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
802 |
session "HOL-Mirabelle-ex" in "Mirabelle/ex" = "HOL-Mirabelle" + |
49448
8a232a4e3fd8
reactivate HOL-Mirabelle-ex with increased chances that it works most of the time (cf. bec1add86e79, a93d920707bb, be27a453aacc);
wenzelm
parents:
49439
diff
changeset
|
803 |
options [document = false, timeout = 60] |
8a232a4e3fd8
reactivate HOL-Mirabelle-ex with increased chances that it works most of the time (cf. bec1add86e79, a93d920707bb, be27a453aacc);
wenzelm
parents:
49439
diff
changeset
|
804 |
theories Ex |
48481 | 805 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
806 |
session "HOL-Word-SMT_Examples" in SMT_Examples = "HOL-Word" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
807 |
options [document = false, quick_and_dirty] |
48481 | 808 |
theories |
52722 | 809 |
Boogie |
48481 | 810 |
SMT_Examples |
811 |
SMT_Word_Examples |
|
50666
6f48853f08d5
actually run Z3 for "SMT_Tests" when "ISABELLE_FULL_TEST" is enabled
blanchet
parents:
50665
diff
changeset
|
812 |
theories [condition = ISABELLE_FULL_TEST] |
6f48853f08d5
actually run Z3 for "SMT_Tests" when "ISABELLE_FULL_TEST" is enabled
blanchet
parents:
50665
diff
changeset
|
813 |
SMT_Tests |
48481 | 814 |
files |
58367
8af1e68d7e1a
renamed SMT certificate files, following 'SMT2' -> 'SMT' renaming
blanchet
parents:
58351
diff
changeset
|
815 |
"Boogie_Dijkstra.certs" |
8af1e68d7e1a
renamed SMT certificate files, following 'SMT2' -> 'SMT' renaming
blanchet
parents:
58351
diff
changeset
|
816 |
"Boogie_Max.certs" |
8af1e68d7e1a
renamed SMT certificate files, following 'SMT2' -> 'SMT' renaming
blanchet
parents:
58351
diff
changeset
|
817 |
"SMT_Examples.certs" |
8af1e68d7e1a
renamed SMT certificate files, following 'SMT2' -> 'SMT' renaming
blanchet
parents:
58351
diff
changeset
|
818 |
"SMT_Word_Examples.certs" |
8af1e68d7e1a
renamed SMT certificate files, following 'SMT2' -> 'SMT' renaming
blanchet
parents:
58351
diff
changeset
|
819 |
"VCC_Max.certs" |
48481 | 820 |
|
50844
b95ff3744815
populate "main" session group, e.g. relevant for Isabelle/jEdit logic selection;
wenzelm
parents:
50833
diff
changeset
|
821 |
session "HOL-SPARK" (main) in "SPARK" = "HOL-Word" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
822 |
options [document = false] |
48481 | 823 |
theories SPARK |
824 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
825 |
session "HOL-SPARK-Examples" in "SPARK/Examples" = "HOL-SPARK" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
826 |
options [document = false] |
48481 | 827 |
theories |
828 |
"Gcd/Greatest_Common_Divisor" |
|
829 |
||
830 |
"Liseq/Longest_Increasing_Subsequence" |
|
831 |
||
832 |
"RIPEMD-160/F" |
|
833 |
"RIPEMD-160/Hash" |
|
834 |
"RIPEMD-160/K_L" |
|
835 |
"RIPEMD-160/K_R" |
|
836 |
"RIPEMD-160/R_L" |
|
837 |
"RIPEMD-160/Round" |
|
838 |
"RIPEMD-160/R_R" |
|
839 |
"RIPEMD-160/S_L" |
|
840 |
"RIPEMD-160/S_R" |
|
841 |
||
842 |
"Sqrt/Sqrt" |
|
843 |
files |
|
844 |
"Gcd/greatest_common_divisor/g_c_d.fdl" |
|
845 |
"Gcd/greatest_common_divisor/g_c_d.rls" |
|
846 |
"Gcd/greatest_common_divisor/g_c_d.siv" |
|
847 |
"Liseq/liseq/liseq_length.fdl" |
|
848 |
"Liseq/liseq/liseq_length.rls" |
|
849 |
"Liseq/liseq/liseq_length.siv" |
|
850 |
"RIPEMD-160/rmd/f.fdl" |
|
851 |
"RIPEMD-160/rmd/f.rls" |
|
852 |
"RIPEMD-160/rmd/f.siv" |
|
853 |
"RIPEMD-160/rmd/hash.fdl" |
|
854 |
"RIPEMD-160/rmd/hash.rls" |
|
855 |
"RIPEMD-160/rmd/hash.siv" |
|
856 |
"RIPEMD-160/rmd/k_l.fdl" |
|
857 |
"RIPEMD-160/rmd/k_l.rls" |
|
858 |
"RIPEMD-160/rmd/k_l.siv" |
|
859 |
"RIPEMD-160/rmd/k_r.fdl" |
|
860 |
"RIPEMD-160/rmd/k_r.rls" |
|
861 |
"RIPEMD-160/rmd/k_r.siv" |
|
862 |
"RIPEMD-160/rmd/r_l.fdl" |
|
863 |
"RIPEMD-160/rmd/r_l.rls" |
|
864 |
"RIPEMD-160/rmd/r_l.siv" |
|
865 |
"RIPEMD-160/rmd/round.fdl" |
|
866 |
"RIPEMD-160/rmd/round.rls" |
|
867 |
"RIPEMD-160/rmd/round.siv" |
|
868 |
"RIPEMD-160/rmd/r_r.fdl" |
|
869 |
"RIPEMD-160/rmd/r_r.rls" |
|
870 |
"RIPEMD-160/rmd/r_r.siv" |
|
871 |
"RIPEMD-160/rmd/s_l.fdl" |
|
872 |
"RIPEMD-160/rmd/s_l.rls" |
|
873 |
"RIPEMD-160/rmd/s_l.siv" |
|
874 |
"RIPEMD-160/rmd/s_r.fdl" |
|
875 |
"RIPEMD-160/rmd/s_r.rls" |
|
876 |
"RIPEMD-160/rmd/s_r.siv" |
|
877 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
878 |
session "HOL-SPARK-Manual" in "SPARK/Manual" = "HOL-SPARK" + |
48486 | 879 |
options [show_question_marks = false] |
48481 | 880 |
theories |
881 |
Example_Verification |
|
882 |
VC_Principles |
|
883 |
Reference |
|
884 |
Complex_Types |
|
885 |
files |
|
886 |
"complex_types_app/initialize.fdl" |
|
887 |
"complex_types_app/initialize.rls" |
|
888 |
"complex_types_app/initialize.siv" |
|
889 |
"loop_invariant/proc1.fdl" |
|
890 |
"loop_invariant/proc1.rls" |
|
891 |
"loop_invariant/proc1.siv" |
|
892 |
"loop_invariant/proc2.fdl" |
|
893 |
"loop_invariant/proc2.rls" |
|
894 |
"loop_invariant/proc2.siv" |
|
895 |
"simple_greatest_common_divisor/g_c_d.fdl" |
|
896 |
"simple_greatest_common_divisor/g_c_d.rls" |
|
897 |
"simple_greatest_common_divisor/g_c_d.siv" |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
898 |
document_files |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
899 |
"complex_types.ads" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
900 |
"complex_types_app.adb" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
901 |
"complex_types_app.ads" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
902 |
"Gcd.adb" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
903 |
"Gcd.ads" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
904 |
"intro.tex" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
905 |
"loop_invariant.adb" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
906 |
"loop_invariant.ads" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
907 |
"root.bib" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
908 |
"root.tex" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
909 |
"Simple_Gcd.adb" |
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
910 |
"Simple_Gcd.ads" |
48481 | 911 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
912 |
session "HOL-Mutabelle" in Mutabelle = HOL + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
913 |
options [document = false] |
48481 | 914 |
theories MutabelleExtra |
915 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
916 |
session "HOL-Quickcheck_Examples" in Quickcheck_Examples = HOL + |
50179
978200ae8473
timeout in proper place (HOL-Quickcheck_Examples approx. 1min, HOL-Quickcheck_Benchmark approx. 1h);
wenzelm
parents:
50161
diff
changeset
|
917 |
options [document = false] |
48588 | 918 |
theories |
48690 | 919 |
Quickcheck_Examples |
920 |
Quickcheck_Lattice_Examples |
|
921 |
Completeness |
|
922 |
Quickcheck_Interfaces |
|
57584
155b7e3b729e
proper condition wrt. ISABELLE_GHC (cf. 8840fa17e17c);
wenzelm
parents:
57544
diff
changeset
|
923 |
theories [condition = ISABELLE_GHC] |
57544
8840fa17e17c
reactivate session Quickcheck_Examples
Andreas Lochbihler
parents:
57543
diff
changeset
|
924 |
Hotel_Example |
48598 | 925 |
Quickcheck_Narrowing_Examples |
48588 | 926 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
927 |
session "HOL-Quickcheck_Benchmark" in Quickcheck_Benchmark = HOL + |
50571
b649e33e4821
HOL-Quickcheck_Benchmark works without timeout (NB: isatest imposes global timeout already);
wenzelm
parents:
50568
diff
changeset
|
928 |
theories [condition = ISABELLE_FULL_TEST, quick_and_dirty] |
50568
ee090b5712f3
reverting d466ebc27810 as the previous changeset should allow to run Find_Unused_Assms_Examples again
bulwahn
parents:
50517
diff
changeset
|
929 |
Find_Unused_Assms_Examples |
48618
1f7e068b4613
moved another larger quickcheck example to Quickcheck_Benchmark
bulwahn
parents:
48614
diff
changeset
|
930 |
Needham_Schroeder_No_Attacker_Example |
1f7e068b4613
moved another larger quickcheck example to Quickcheck_Benchmark
bulwahn
parents:
48614
diff
changeset
|
931 |
Needham_Schroeder_Guided_Attacker_Example |
48690 | 932 |
Needham_Schroeder_Unguided_Attacker_Example |
48481 | 933 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
934 |
session "HOL-Quotient_Examples" in Quotient_Examples = HOL + |
48481 | 935 |
description {* |
936 |
Author: Cezary Kaliszyk and Christian Urban |
|
937 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
938 |
options [document = false] |
48481 | 939 |
theories |
940 |
DList |
|
941 |
FSet |
|
942 |
Quotient_Int |
|
943 |
Quotient_Message |
|
944 |
Lift_FSet |
|
945 |
Lift_Set |
|
946 |
Lift_Fun |
|
947 |
Quotient_Rat |
|
948 |
Lift_DList |
|
53682
1b55aeda0e46
include Int_Pow into Quotient_Examples; add end of the theory
kuncar
parents:
53430
diff
changeset
|
949 |
Int_Pow |
48481 | 950 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
951 |
session "HOL-Predicate_Compile_Examples" in Predicate_Compile_Examples = HOL + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
952 |
options [document = false] |
48690 | 953 |
theories |
48481 | 954 |
Examples |
955 |
Predicate_Compile_Tests |
|
48690 | 956 |
(* FIXME |
957 |
Predicate_Compile_Quickcheck_Examples -- should be added again soon (since 21-Oct-2010) *) |
|
48481 | 958 |
Specialisation_Examples |
48690 | 959 |
IMP_1 |
960 |
IMP_2 |
|
55450
9eddc17749f7
reactivate some examples that still appear to work;
wenzelm
parents:
55447
diff
changeset
|
961 |
(* FIXME since 21-Jul-2011 |
9eddc17749f7
reactivate some examples that still appear to work;
wenzelm
parents:
55447
diff
changeset
|
962 |
Hotel_Example_Small_Generator |
48690 | 963 |
IMP_3 |
964 |
IMP_4 *) |
|
55450
9eddc17749f7
reactivate some examples that still appear to work;
wenzelm
parents:
55447
diff
changeset
|
965 |
theories [condition = "ISABELLE_SWIPL"] |
48690 | 966 |
Code_Prolog_Examples |
967 |
Context_Free_Grammar_Example |
|
968 |
Hotel_Example_Prolog |
|
969 |
Lambda_Example |
|
970 |
List_Examples |
|
55450
9eddc17749f7
reactivate some examples that still appear to work;
wenzelm
parents:
55447
diff
changeset
|
971 |
theories [condition = "ISABELLE_SWIPL", quick_and_dirty] |
48690 | 972 |
Reg_Exp_Example |
48481 | 973 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
974 |
session HOLCF (main) in HOLCF = HOL + |
48338 | 975 |
description {* |
976 |
Author: Franz Regensburger |
|
977 |
Author: Brian Huffman |
|
978 |
||
979 |
HOLCF -- a semantic extension of HOL by the LCF logic. |
|
980 |
*} |
|
48470
7483aa690b4f
clarified "document" again, eliminated redundant "no_document";
wenzelm
parents:
48458
diff
changeset
|
981 |
theories [document = false] |
48338 | 982 |
"~~/src/HOL/Library/Nat_Bijection" |
983 |
"~~/src/HOL/Library/Countable" |
|
48481 | 984 |
theories |
985 |
Plain_HOLCF |
|
986 |
Fixrec |
|
987 |
HOLCF |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
988 |
document_files "root.tex" |
48481 | 989 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
990 |
session "HOLCF-Tutorial" in "HOLCF/Tutorial" = HOLCF + |
48481 | 991 |
theories |
992 |
Domain_ex |
|
993 |
Fixrec_ex |
|
994 |
New_Domain |
|
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
995 |
document_files "root.tex" |
48481 | 996 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
997 |
session "HOLCF-Library" in "HOLCF/Library" = HOLCF + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
998 |
options [document = false] |
48481 | 999 |
theories HOLCF_Library |
1000 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
1001 |
session "HOLCF-IMP" in "HOLCF/IMP" = HOLCF + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1002 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1003 |
IMP -- A WHILE-language and its Semantics. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1004 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1005 |
This is the HOLCF-based denotational semantics of a simple WHILE-language. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1006 |
*} |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
1007 |
options [document = false] |
48481 | 1008 |
theories HoareEx |
56781
f2eb0f22589f
systematic replacement of 'files' by 'document_files';
wenzelm
parents:
56680
diff
changeset
|
1009 |
document_files "root.tex" |
48338 | 1010 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
1011 |
session "HOLCF-ex" in "HOLCF/ex" = HOLCF + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
1012 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
1013 |
Miscellaneous examples for HOLCF. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
1014 |
*} |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
1015 |
options [document = false] |
48481 | 1016 |
theories |
1017 |
Dnat |
|
1018 |
Dagstuhl |
|
1019 |
Focus_ex |
|
1020 |
Fix2 |
|
1021 |
Hoare |
|
1022 |
Concurrency_Monad |
|
1023 |
Loop |
|
1024 |
Powerdomain_ex |
|
1025 |
Domain_Proofs |
|
1026 |
Letrec |
|
1027 |
Pattern_Match |
|
1028 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
1029 |
session "HOLCF-FOCUS" in "HOLCF/FOCUS" = HOLCF + |
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1030 |
description {* |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1031 |
FOCUS: a theory of stream-processing functions Isabelle/HOLCF. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1032 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1033 |
For introductions to FOCUS, see |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1034 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1035 |
"The Design of Distributed Systems - An Introduction to FOCUS" |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1036 |
http://www4.in.tum.de/publ/html.php?e=2 |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1037 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1038 |
"Specification and Refinement of a Buffer of Length One" |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1039 |
http://www4.in.tum.de/publ/html.php?e=15 |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1040 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1041 |
"Specification and Development of Interactive Systems: Focus on Streams, |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1042 |
Interfaces, and Refinement" http://www4.in.tum.de/publ/html.php?e=321 |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1043 |
*} |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
1044 |
options [document = false] |
48481 | 1045 |
theories |
1046 |
Fstreams |
|
1047 |
FOCUS |
|
1048 |
Buffer_adm |
|
1049 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
1050 |
session IOA in "HOLCF/IOA" = HOLCF + |
48481 | 1051 |
description {* |
1052 |
Author: Olaf Mueller |
|
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1053 |
Copyright 1997 TU München |
48481 | 1054 |
|
51403
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1055 |
A formalization of I/O automata in HOLCF. |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1056 |
|
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1057 |
The distribution contains simulation relations, temporal logic, and an |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1058 |
abstraction theory. Everything is based upon a domain-theoretic model of |
2ff3a5589b05
refurbished some old README.html files as session descriptions, which show up in chapter index;
wenzelm
parents:
51397
diff
changeset
|
1059 |
finite and infinite sequences. |
48481 | 1060 |
*} |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
1061 |
options [document = false] |
48481 | 1062 |
theories "meta_theory/Abstraction" |
1063 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
1064 |
session "IOA-ABP" in "HOLCF/IOA/ABP" = IOA + |
48481 | 1065 |
description {* |
1066 |
Author: Olaf Mueller |
|
1067 |
||
1068 |
The Alternating Bit Protocol performed in I/O-Automata. |
|
1069 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
1070 |
options [document = false] |
59503 | 1071 |
theories |
1072 |
Correctness |
|
1073 |
Spec |
|
48481 | 1074 |
|
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
1075 |
session "IOA-NTP" in "HOLCF/IOA/NTP" = IOA + |
48481 | 1076 |
description {* |
1077 |
Author: Tobias Nipkow & Konrad Slind |
|
1078 |
||
1079 |
A network transmission protocol, performed in the |
|
1080 |
I/O automata formalization by Olaf Mueller. |
|
1081 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
1082 |
options [document = false] |
48481 | 1083 |
theories Correctness |
1084 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
1085 |
session "IOA-Storage" in "HOLCF/IOA/Storage" = IOA + |
48481 | 1086 |
description {* |
1087 |
Author: Olaf Mueller |
|
1088 |
||
1089 |
Memory storage case study. |
|
1090 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
1091 |
options [document = false] |
48481 | 1092 |
theories Correctness |
1093 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
1094 |
session "IOA-ex" in "HOLCF/IOA/ex" = IOA + |
48481 | 1095 |
description {* |
1096 |
Author: Olaf Mueller |
|
1097 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
1098 |
options [document = false] |
48481 | 1099 |
theories |
1100 |
TrivEx |
|
1101 |
TrivEx2 |
|
1102 |
||
48738
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents:
48721
diff
changeset
|
1103 |
session "HOL-Record_Benchmark" in Record_Benchmark = HOL + |
51421
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
1104 |
description {* |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
1105 |
Some benchmark on large record. |
b5d559b101d9
more uniform session descriptions, which show up in chapter index;
wenzelm
parents:
51403
diff
changeset
|
1106 |
*} |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
1107 |
options [document = false] |
58849
ef7700ecce83
discontinued pointless option: timing is always on (overall theory only);
wenzelm
parents:
58842
diff
changeset
|
1108 |
theories [condition = ISABELLE_FULL_TEST] |
48481 | 1109 |
Record_Benchmark |
1110 |