author | wenzelm |
Wed, 01 Aug 2012 15:50:50 +0200 | |
changeset 48635 | bfce940c6f38 |
parent 48627 | 3ef76d545aaf |
child 48636 | 38793f924c9a |
permissions | -rw-r--r-- |
48509 | 1 |
session HOL! (main) in "." = Pure + |
48338 | 2 |
description {* Classical Higher-order Logic *} |
3 |
options [document_graph] |
|
4 |
theories Complex_Main |
|
48481 | 5 |
files "document/root.bib" "document/root.tex" |
48338 | 6 |
|
7 |
session "HOL-Base"! in "." = Pure + |
|
8 |
description {* Raw HOL base, with minimal tools *} |
|
48470
7483aa690b4f
clarified "document" again, eliminated redundant "no_document";
wenzelm
parents:
48458
diff
changeset
|
9 |
options [document = false] |
48338 | 10 |
theories HOL |
11 |
||
12 |
session "HOL-Plain"! in "." = Pure + |
|
13 |
description {* HOL side-entry after bootstrap of many tools and packages *} |
|
48470
7483aa690b4f
clarified "document" again, eliminated redundant "no_document";
wenzelm
parents:
48458
diff
changeset
|
14 |
options [document = false] |
48338 | 15 |
theories Plain |
16 |
||
17 |
session "HOL-Main"! in "." = Pure + |
|
18 |
description {* HOL side-entry for Main only, without Complex_Main *} |
|
48470
7483aa690b4f
clarified "document" again, eliminated redundant "no_document";
wenzelm
parents:
48458
diff
changeset
|
19 |
options [document = false] |
48338 | 20 |
theories Main |
21 |
||
48512 | 22 |
session "HOL-Proofs"! in "." = Pure + |
48509 | 23 |
description {* HOL-Main with explicit proof terms *} |
48470
7483aa690b4f
clarified "document" again, eliminated redundant "no_document";
wenzelm
parents:
48458
diff
changeset
|
24 |
options [document = false, proofs = 2, parallel_proofs = 0] |
48338 | 25 |
theories Main |
26 |
||
48481 | 27 |
session Library = HOL + |
28 |
description {* Classical Higher-order Logic -- batteries included *} |
|
29 |
theories |
|
30 |
Library |
|
31 |
List_Prefix |
|
32 |
List_lexord |
|
33 |
Sublist_Order |
|
34 |
Product_Lattice |
|
35 |
Code_Char_chr |
|
36 |
Code_Char_ord |
|
37 |
Code_Integer |
|
38 |
Efficient_Nat |
|
39 |
(*"Code_Prolog" FIXME*) |
|
40 |
Code_Real_Approx_By_Float |
|
41 |
Target_Numeral |
|
42 |
files "document/root.bib" "document/root.tex" |
|
43 |
||
44 |
session Hahn_Banach = HOL + |
|
45 |
description {* |
|
46 |
Author: Gertrud Bauer, TU Munich |
|
47 |
||
48 |
The Hahn-Banach theorem for real vector spaces. |
|
49 |
*} |
|
50 |
options [document_graph] |
|
51 |
theories Hahn_Banach |
|
52 |
files "document/root.bib" "document/root.tex" |
|
53 |
||
54 |
session Induct = HOL + |
|
55 |
theories [quick_and_dirty] |
|
56 |
Common_Patterns |
|
57 |
theories |
|
58 |
QuoDataType |
|
59 |
QuoNestedDataType |
|
60 |
Term |
|
61 |
SList |
|
62 |
ABexp |
|
63 |
Tree |
|
64 |
Ordinals |
|
65 |
Sigma_Algebra |
|
66 |
Comb |
|
67 |
PropLog |
|
68 |
Com |
|
69 |
files "document/root.tex" |
|
70 |
||
71 |
session IMP = HOL + |
|
72 |
options [document_graph] |
|
73 |
theories [document = false] |
|
74 |
"~~/src/HOL/ex/Interpretation_with_Defs" |
|
75 |
"~~/src/HOL/Library/While_Combinator" |
|
76 |
"~~/src/HOL/Library/Char_ord" |
|
77 |
"~~/src/HOL/Library/List_lexord" |
|
78 |
theories |
|
79 |
BExp |
|
80 |
ASM |
|
81 |
Small_Step |
|
82 |
Denotation |
|
83 |
Comp_Rev |
|
84 |
Poly_Types |
|
85 |
Sec_Typing |
|
86 |
Sec_TypingT |
|
87 |
Def_Ass_Sound_Big |
|
88 |
Def_Ass_Sound_Small |
|
89 |
Live |
|
90 |
Live_True |
|
91 |
Hoare_Examples |
|
92 |
VC |
|
93 |
HoareT |
|
94 |
Collecting1 |
|
95 |
Collecting_list |
|
96 |
Abs_Int_Tests |
|
97 |
Abs_Int1_parity |
|
98 |
Abs_Int1_const |
|
99 |
Abs_Int3 |
|
100 |
"Abs_Int_ITP/Abs_Int1_parity_ITP" |
|
101 |
"Abs_Int_ITP/Abs_Int1_const_ITP" |
|
102 |
"Abs_Int_ITP/Abs_Int3_ITP" |
|
103 |
"Abs_Int_Den/Abs_Int_den2" |
|
104 |
Procs_Dyn_Vars_Dyn |
|
105 |
Procs_Stat_Vars_Dyn |
|
106 |
Procs_Stat_Vars_Stat |
|
107 |
C_like |
|
108 |
OO |
|
109 |
Fold |
|
110 |
files "document/root.bib" "document/root.tex" |
|
111 |
||
112 |
session IMPP = HOL + |
|
113 |
description {* |
|
114 |
Author: David von Oheimb |
|
115 |
Copyright 1999 TUM |
|
116 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
117 |
options [document = false] |
48481 | 118 |
theories EvenOdd |
119 |
||
120 |
session Import = HOL + |
|
121 |
options [document_graph] |
|
122 |
theories HOL_Light_Maps |
|
123 |
theories [condition = HOL_LIGHT_BUNDLE] HOL_Light_Import |
|
124 |
||
125 |
session Number_Theory = HOL + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
126 |
options [document = false] |
48481 | 127 |
theories Number_Theory |
128 |
||
129 |
session Old_Number_Theory = HOL + |
|
130 |
options [document_graph] |
|
131 |
theories [document = false] |
|
132 |
"~~/src/HOL/Library/Infinite_Set" |
|
133 |
"~~/src/HOL/Library/Permutation" |
|
134 |
theories |
|
135 |
Fib |
|
136 |
Factorization |
|
137 |
Chinese |
|
138 |
WilsonRuss |
|
139 |
WilsonBij |
|
140 |
Quadratic_Reciprocity |
|
141 |
Primes |
|
142 |
Pocklington |
|
143 |
files "document/root.tex" |
|
144 |
||
145 |
session Hoare = HOL + |
|
146 |
theories Hoare |
|
147 |
files "document/root.bib" "document/root.tex" |
|
148 |
||
149 |
session Hoare_Parallel = HOL + |
|
150 |
options [document_graph] |
|
151 |
theories Hoare_Parallel |
|
152 |
files "document/root.bib" "document/root.tex" |
|
153 |
||
154 |
session Codegenerator_Test = "HOL-Library" + |
|
155 |
options [document = false, document_graph = false, browser_info = false] |
|
48624 | 156 |
theories Generate Generate_Pretty RBT_Set_Test |
48481 | 157 |
|
158 |
session Metis_Examples = HOL + |
|
159 |
description {* |
|
160 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
161 |
Author: Jasmin Blanchette, TU Muenchen |
|
162 |
||
163 |
Testing Metis and Sledgehammer. |
|
164 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
165 |
options [document = false] |
48481 | 166 |
theories |
167 |
Abstraction |
|
168 |
Big_O |
|
169 |
Binary_Tree |
|
170 |
Clausification |
|
171 |
Message |
|
172 |
Proxies |
|
173 |
Tarski |
|
174 |
Trans_Closure |
|
175 |
Sets |
|
176 |
||
177 |
session Nitpick_Examples = HOL + |
|
178 |
description {* |
|
179 |
Author: Jasmin Blanchette, TU Muenchen |
|
180 |
Copyright 2009 |
|
181 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
182 |
options [document = false] |
48481 | 183 |
theories [quick_and_dirty] Nitpick_Examples |
184 |
||
185 |
session Algebra = HOL + |
|
186 |
description {* |
|
187 |
Author: Clemens Ballarin, started 24 September 1999 |
|
188 |
||
189 |
The Isabelle Algebraic Library. |
|
190 |
*} |
|
191 |
options [document_graph] |
|
192 |
theories [document = false] |
|
193 |
(* Preliminaries from set and number theory *) |
|
194 |
"~~/src/HOL/Library/FuncSet" |
|
195 |
"~~/src/HOL/Old_Number_Theory/Primes" |
|
196 |
"~~/src/HOL/Library/Binomial" |
|
197 |
"~~/src/HOL/Library/Permutation" |
|
198 |
theories |
|
199 |
(*** New development, based on explicit structures ***) |
|
200 |
(* Groups *) |
|
201 |
FiniteProduct (* Product operator for commutative groups *) |
|
202 |
Sylow (* Sylow's theorem *) |
|
203 |
Bij (* Automorphism Groups *) |
|
204 |
||
205 |
(* Rings *) |
|
206 |
Divisibility (* Rings *) |
|
207 |
IntRing (* Ideals and residue classes *) |
|
208 |
UnivPoly (* Polynomials *) |
|
209 |
theories [document = false] |
|
210 |
(*** Old development, based on axiomatic type classes ***) |
|
211 |
"abstract/Abstract" (*The ring theory*) |
|
212 |
"poly/Polynomial" (*The full theory*) |
|
213 |
files "document/root.bib" "document/root.tex" |
|
214 |
||
215 |
session Auth = HOL + |
|
216 |
options [document_graph] |
|
217 |
theories |
|
218 |
Auth_Shared |
|
219 |
Auth_Public |
|
220 |
"Smartcard/Auth_Smartcard" |
|
221 |
"Guard/Auth_Guard_Shared" |
|
222 |
"Guard/Auth_Guard_Public" |
|
223 |
files "document/root.tex" |
|
224 |
||
225 |
session UNITY = HOL + |
|
226 |
description {* |
|
227 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
228 |
Copyright 1998 University of Cambridge |
|
229 |
||
230 |
Verifying security protocols using UNITY. |
|
231 |
*} |
|
232 |
options [document_graph] |
|
233 |
theories [document = false] "../Auth/Public" |
|
234 |
theories |
|
235 |
(*Basic meta-theory*) |
|
236 |
"UNITY_Main" |
|
237 |
||
238 |
(*Simple examples: no composition*) |
|
239 |
"Simple/Deadlock" |
|
240 |
"Simple/Common" |
|
241 |
"Simple/Network" |
|
242 |
"Simple/Token" |
|
243 |
"Simple/Channel" |
|
244 |
"Simple/Lift" |
|
245 |
"Simple/Mutex" |
|
246 |
"Simple/Reach" |
|
247 |
"Simple/Reachability" |
|
248 |
||
249 |
(*Verifying security protocols using UNITY*) |
|
250 |
"Simple/NSP_Bad" |
|
251 |
||
252 |
(*Example of composition*) |
|
253 |
"Comp/Handshake" |
|
254 |
||
255 |
(*Universal properties examples*) |
|
256 |
"Comp/Counter" |
|
257 |
"Comp/Counterc" |
|
258 |
"Comp/Priority" |
|
259 |
||
260 |
"Comp/TimerArray" |
|
261 |
"Comp/Progress" |
|
262 |
||
263 |
"Comp/Alloc" |
|
264 |
"Comp/AllocImpl" |
|
265 |
"Comp/Client" |
|
266 |
||
267 |
(*obsolete*) |
|
268 |
"ELT" |
|
269 |
files "document/root.tex" |
|
270 |
||
271 |
session Unix = HOL + |
|
272 |
options [print_mode = "no_brackets,no_type_brackets"] |
|
273 |
theories Unix |
|
274 |
files "document/root.bib" "document/root.tex" |
|
275 |
||
276 |
session ZF = HOL + |
|
277 |
description {* *} |
|
278 |
theories MainZF Games |
|
279 |
files "document/root.tex" |
|
280 |
||
281 |
session Imperative_HOL = HOL + |
|
282 |
description {* *} |
|
283 |
options [document_graph, print_mode = "iff,no_brackets"] |
|
284 |
theories [document = false] |
|
285 |
"~~/src/HOL/Library/Countable" |
|
286 |
"~~/src/HOL/Library/Monad_Syntax" |
|
287 |
"~~/src/HOL/Library/Code_Natural" |
|
288 |
"~~/src/HOL/Library/LaTeXsugar" |
|
289 |
theories Imperative_HOL_ex |
|
290 |
files "document/root.bib" "document/root.tex" |
|
291 |
||
292 |
session Decision_Procs = HOL + |
|
48496
a7eed34cf219
added condition = ISABELLE_POLYML according to no-smlnj targets in IsaMakefile;
wenzelm
parents:
48493
diff
changeset
|
293 |
options [condition = ISABELLE_POLYML, document = false] |
48481 | 294 |
theories Decision_Procs |
295 |
||
296 |
session ex in "Proofs/ex" = "HOL-Proofs" + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
297 |
options [document = false, proofs = 2, parallel_proofs = 0] |
48481 | 298 |
theories Hilbert_Classical |
299 |
||
300 |
session Extraction in "Proofs/Extraction" = "HOL-Proofs" + |
|
301 |
description {* Examples for program extraction in Higher-Order Logic *} |
|
48496
a7eed34cf219
added condition = ISABELLE_POLYML according to no-smlnj targets in IsaMakefile;
wenzelm
parents:
48493
diff
changeset
|
302 |
options [condition = ISABELLE_POLYML, proofs = 2, parallel_proofs = 0] |
48481 | 303 |
theories [document = false] |
304 |
"~~/src/HOL/Library/Efficient_Nat" |
|
305 |
"~~/src/HOL/Library/Monad_Syntax" |
|
306 |
"~~/src/HOL/Number_Theory/Primes" |
|
307 |
"~~/src/HOL/Number_Theory/UniqueFactorization" |
|
308 |
"~~/src/HOL/Library/State_Monad" |
|
309 |
theories |
|
310 |
Greatest_Common_Divisor |
|
311 |
Warshall |
|
312 |
Higman_Extraction |
|
313 |
Pigeonhole |
|
314 |
Euclid |
|
315 |
files "document/root.bib" "document/root.tex" |
|
316 |
||
317 |
session Lambda in "Proofs/Lambda" = "HOL-Proofs" + |
|
318 |
options [document_graph, print_mode = "no_brackets", proofs = 2, parallel_proofs = 0] |
|
319 |
theories [document = false] |
|
320 |
"~~/src/HOL/Library/Code_Integer" |
|
321 |
theories |
|
322 |
Eta |
|
323 |
StrongNorm |
|
324 |
Standardization |
|
325 |
WeakNorm |
|
326 |
files "document/root.bib" "document/root.tex" |
|
327 |
||
328 |
session Prolog = HOL + |
|
329 |
description {* |
|
330 |
Author: David von Oheimb (based on a lecture on Lambda Prolog by Nadathur) |
|
331 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
332 |
options [document = false] |
48481 | 333 |
theories Test Type |
334 |
||
335 |
session MicroJava = HOL + |
|
336 |
options [document_graph] |
|
337 |
theories [document = false] "~~/src/HOL/Library/While_Combinator" |
|
338 |
theories MicroJava |
|
339 |
files |
|
340 |
"document/introduction.tex" |
|
341 |
"document/root.bib" |
|
342 |
"document/root.tex" |
|
343 |
||
344 |
session NanoJava = HOL + |
|
345 |
options [document_graph] |
|
346 |
theories Example |
|
347 |
files "document/root.bib" "document/root.tex" |
|
348 |
||
349 |
session Bali = HOL + |
|
350 |
options [document_graph] |
|
351 |
theories |
|
352 |
AxExample |
|
353 |
AxSound |
|
354 |
AxCompl |
|
355 |
Trans |
|
356 |
files "document/root.tex" |
|
357 |
||
358 |
session IOA = HOL + |
|
359 |
description {* |
|
360 |
Author: Tobias Nipkow & Konrad Slind |
|
361 |
Copyright 1994 TU Muenchen |
|
362 |
||
363 |
The meta theory of I/O-Automata. |
|
364 |
||
365 |
@inproceedings{Nipkow-Slind-IOA, |
|
366 |
author={Tobias Nipkow and Konrad Slind}, |
|
367 |
title={{I/O} Automata in {Isabelle/HOL}}, |
|
368 |
booktitle={Proc.\ TYPES Workshop 1994}, |
|
369 |
publisher=Springer, |
|
370 |
series=LNCS, |
|
371 |
note={To appear}} |
|
372 |
ftp://ftp.informatik.tu-muenchen.de/local/lehrstuhl/nipkow/ioa.ps.gz |
|
373 |
||
374 |
and |
|
375 |
||
376 |
@inproceedings{Mueller-Nipkow, |
|
377 |
author={Olaf M\"uller and Tobias Nipkow}, |
|
378 |
title={Combining Model Checking and Deduction for {I/O}-Automata}, |
|
379 |
booktitle={Proc.\ TACAS Workshop}, |
|
380 |
organization={Aarhus University, BRICS report}, |
|
381 |
year=1995} |
|
382 |
ftp://ftp.informatik.tu-muenchen.de/local/lehrstuhl/nipkow/tacas.dvi.gz |
|
383 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
384 |
options [document = false] |
48481 | 385 |
theories Solve |
386 |
||
387 |
session Lattice = HOL + |
|
388 |
description {* |
|
389 |
Author: Markus Wenzel, TU Muenchen |
|
390 |
||
391 |
Basic theory of lattices and orders. |
|
392 |
*} |
|
393 |
theories CompleteLattice |
|
394 |
files "document/root.tex" |
|
395 |
||
396 |
session ex = HOL + |
|
397 |
description {* Miscellaneous examples for Higher-Order Logic. *} |
|
48496
a7eed34cf219
added condition = ISABELLE_POLYML according to no-smlnj targets in IsaMakefile;
wenzelm
parents:
48493
diff
changeset
|
398 |
options [condition = ISABELLE_POLYML] |
48481 | 399 |
theories [document = false] |
400 |
"~~/src/HOL/Library/State_Monad" |
|
401 |
Code_Nat_examples |
|
402 |
"~~/src/HOL/Library/FuncSet" |
|
403 |
Eval_Examples |
|
404 |
Normalization_by_Evaluation |
|
405 |
Hebrew |
|
406 |
Chinese |
|
407 |
Serbian |
|
408 |
"~~/src/HOL/Library/FinFun_Syntax" |
|
409 |
theories |
|
410 |
Iff_Oracle |
|
411 |
Coercion_Examples |
|
412 |
Numeral_Representation |
|
413 |
Higher_Order_Logic |
|
414 |
Abstract_NAT |
|
415 |
Guess |
|
416 |
Binary |
|
417 |
Fundefs |
|
418 |
Induction_Schema |
|
419 |
LocaleTest2 |
|
420 |
Records |
|
421 |
While_Combinator_Example |
|
422 |
MonoidGroup |
|
423 |
BinEx |
|
424 |
Hex_Bin_Examples |
|
425 |
Antiquote |
|
426 |
Multiquote |
|
427 |
PER |
|
428 |
NatSum |
|
429 |
ThreeDivides |
|
430 |
Intuitionistic |
|
431 |
CTL |
|
432 |
Arith_Examples |
|
433 |
BT |
|
434 |
Tree23 |
|
435 |
MergeSort |
|
436 |
Lagrange |
|
437 |
Groebner_Examples |
|
438 |
MT |
|
439 |
Unification |
|
440 |
Primrec |
|
441 |
Tarski |
|
442 |
Classical |
|
443 |
Set_Theory |
|
444 |
Meson_Test |
|
445 |
Termination |
|
446 |
Coherent |
|
447 |
PresburgerEx |
|
448 |
ReflectionEx |
|
449 |
Sqrt |
|
450 |
Sqrt_Script |
|
451 |
Transfer_Ex |
|
452 |
Transfer_Int_Nat |
|
453 |
HarmonicSeries |
|
454 |
Refute_Examples |
|
455 |
Landau |
|
456 |
Execute_Choice |
|
457 |
Summation |
|
458 |
Gauge_Integration |
|
459 |
Dedekind_Real |
|
460 |
Quicksort |
|
461 |
Birthday_Paradox |
|
462 |
List_to_Set_Comprehension_Examples |
|
463 |
Seq |
|
464 |
Simproc_Tests |
|
465 |
Executable_Relation |
|
466 |
FinFunPred |
|
467 |
Set_Comprehension_Pointfree_Tests |
|
468 |
Parallel_Example |
|
469 |
theories SVC_Oracle |
|
470 |
theories [condition = SVC_HOME] svc_test |
|
471 |
theories [condition = ZCHAFF_HOME] |
|
472 |
(*requires zChaff (or some other reasonably fast SAT solver)*) |
|
473 |
Sudoku |
|
474 |
(* FIXME |
|
475 |
(*requires a proof-generating SAT solver (zChaff or MiniSAT)*) |
|
476 |
(*global side-effects ahead!*) |
|
477 |
try use_thy "SAT_Examples"; (* FIXME try!? (not really a proper test) *) |
|
478 |
*) |
|
479 |
files "document/root.bib" "document/root.tex" |
|
480 |
||
481 |
session Isar_Examples = HOL + |
|
482 |
description {* Miscellaneous Isabelle/Isar examples for Higher-Order Logic. *} |
|
483 |
theories [document = false] |
|
484 |
"~~/src/HOL/Library/Lattice_Syntax" |
|
485 |
"../Number_Theory/Primes" |
|
486 |
theories |
|
487 |
Basic_Logic |
|
488 |
Cantor |
|
489 |
Drinker |
|
490 |
Expr_Compiler |
|
491 |
Fibonacci |
|
492 |
Group |
|
493 |
Group_Context |
|
494 |
Group_Notepad |
|
495 |
Hoare_Ex |
|
496 |
Knaster_Tarski |
|
497 |
Mutilated_Checkerboard |
|
498 |
Nested_Datatype |
|
499 |
Peirce |
|
500 |
Puzzle |
|
501 |
Summation |
|
502 |
files |
|
503 |
"document/root.bib" |
|
504 |
"document/root.tex" |
|
505 |
"document/style.tex" |
|
506 |
||
507 |
session SET_Protocol = HOL + |
|
508 |
options [document_graph] |
|
509 |
theories [document = false] "~~/src/HOL/Library/Nat_Bijection" |
|
510 |
theories SET_Protocol |
|
511 |
files "document/root.tex" |
|
512 |
||
513 |
session Matrix_LP = HOL + |
|
514 |
options [document_graph] |
|
515 |
theories Cplex |
|
516 |
files "document/root.tex" |
|
517 |
||
48614
6004f4575645
renamed session TLA to HOL-TLA to avoid clash with AFP;
wenzelm
parents:
48598
diff
changeset
|
518 |
session TLA = HOL + |
48481 | 519 |
description {* The Temporal Logic of Actions *} |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
520 |
options [document = false] |
48481 | 521 |
theories TLA |
522 |
||
48614
6004f4575645
renamed session TLA to HOL-TLA to avoid clash with AFP;
wenzelm
parents:
48598
diff
changeset
|
523 |
session Inc in "TLA/Inc" = "HOL-TLA" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
524 |
options [document = false] |
48481 | 525 |
theories Inc |
526 |
||
48614
6004f4575645
renamed session TLA to HOL-TLA to avoid clash with AFP;
wenzelm
parents:
48598
diff
changeset
|
527 |
session Buffer in "TLA/Buffer" = "HOL-TLA" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
528 |
options [document = false] |
48481 | 529 |
theories DBuffer |
530 |
||
48614
6004f4575645
renamed session TLA to HOL-TLA to avoid clash with AFP;
wenzelm
parents:
48598
diff
changeset
|
531 |
session Memory in "TLA/Memory" = "HOL-TLA" + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
532 |
options [document = false] |
48481 | 533 |
theories MemoryImplementation |
534 |
||
535 |
session TPTP = HOL + |
|
536 |
description {* |
|
537 |
Author: Jasmin Blanchette, TU Muenchen |
|
538 |
Author: Nik Sultana, University of Cambridge |
|
539 |
Copyright 2011 |
|
540 |
||
541 |
TPTP-related extensions. |
|
542 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
543 |
options [document = false] |
48481 | 544 |
theories |
545 |
ATP_Theory_Export |
|
546 |
MaSh_Eval |
|
547 |
MaSh_Export |
|
548 |
TPTP_Interpret |
|
549 |
THF_Arith |
|
550 |
theories [proofs = 0] (* FIXME !? *) |
|
551 |
ATP_Problem_Import |
|
552 |
||
553 |
session Multivariate_Analysis = HOL + |
|
554 |
options [document_graph] |
|
555 |
theories |
|
556 |
Multivariate_Analysis |
|
557 |
Determinants |
|
558 |
files |
|
559 |
"Integration.certs" |
|
560 |
"document/root.tex" |
|
561 |
||
562 |
session "HOL-Probability"! in "Probability" = "HOL-Multivariate_Analysis" + |
|
48617 | 563 |
options [document_graph] |
48481 | 564 |
theories [document = false] |
565 |
"~~/src/HOL/Library/Countable" |
|
566 |
"~~/src/HOL/Multivariate_Analysis/Extended_Real_Limits" |
|
567 |
"~~/src/HOL/Library/Permutation" |
|
568 |
theories |
|
569 |
Probability |
|
570 |
"ex/Dining_Cryptographers" |
|
571 |
"ex/Koepf_Duermuth_Countermeasure" |
|
572 |
files "document/root.tex" |
|
573 |
||
48509 | 574 |
session Nominal (main) = HOL + |
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
575 |
options [document = false] |
48481 | 576 |
theories Nominal |
577 |
||
578 |
session Examples in "Nominal/Examples" = "HOL-Nominal" + |
|
48496
a7eed34cf219
added condition = ISABELLE_POLYML according to no-smlnj targets in IsaMakefile;
wenzelm
parents:
48493
diff
changeset
|
579 |
options [condition = ISABELLE_POLYML, document = false] |
48481 | 580 |
theories Nominal_Examples |
581 |
theories [quick_and_dirty] VC_Condition |
|
582 |
||
583 |
session Word = HOL + |
|
584 |
options [document_graph] |
|
585 |
theories Word |
|
586 |
files "document/root.bib" "document/root.tex" |
|
587 |
||
588 |
session Examples in "Word/Examples" = "HOL-Word" + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
589 |
options [document = false] |
48481 | 590 |
theories WordExamples |
591 |
||
592 |
session Statespace = HOL + |
|
593 |
theories StateSpaceEx |
|
594 |
files "document/root.tex" |
|
595 |
||
596 |
session NSA = HOL + |
|
597 |
options [document_graph] |
|
598 |
theories Hypercomplex |
|
599 |
files "document/root.tex" |
|
600 |
||
601 |
session Examples in "NSA/Examples" = "HOL-NSA" + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
602 |
options [document = false] |
48481 | 603 |
theories NSPrimes |
604 |
||
605 |
session Mirabelle = HOL + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
606 |
options [document = false] |
48481 | 607 |
theories Mirabelle_Test |
48589
fb446a780d50
separate session HOL-Mirabelle-ex -- cannot run isolated shell scripts within build tool;
wenzelm
parents:
48588
diff
changeset
|
608 |
|
fb446a780d50
separate session HOL-Mirabelle-ex -- cannot run isolated shell scripts within build tool;
wenzelm
parents:
48588
diff
changeset
|
609 |
session ex in "Mirabelle/ex" = "HOL-Mirabelle" + |
fb446a780d50
separate session HOL-Mirabelle-ex -- cannot run isolated shell scripts within build tool;
wenzelm
parents:
48588
diff
changeset
|
610 |
theories Ex |
48481 | 611 |
|
612 |
session SMT_Examples = "HOL-Word" + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
613 |
options [document = false, quick_and_dirty] |
48481 | 614 |
theories |
615 |
SMT_Tests |
|
616 |
SMT_Examples |
|
617 |
SMT_Word_Examples |
|
618 |
files |
|
619 |
"SMT_Examples.certs" |
|
620 |
"SMT_Tests.certs" |
|
621 |
||
622 |
session "HOL-Boogie"! in "Boogie" = "HOL-Word" + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
623 |
options [document = false] |
48481 | 624 |
theories Boogie |
625 |
||
626 |
session Examples in "Boogie/Examples" = "HOL-Boogie" + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
627 |
options [document = false] |
48481 | 628 |
theories |
629 |
Boogie_Max_Stepwise |
|
630 |
Boogie_Max |
|
631 |
Boogie_Dijkstra |
|
632 |
VCC_Max |
|
633 |
files |
|
48493 | 634 |
"Boogie_Dijkstra.b2i" |
48481 | 635 |
"Boogie_Dijkstra.certs" |
48493 | 636 |
"Boogie_Max.b2i" |
48481 | 637 |
"Boogie_Max.certs" |
48493 | 638 |
"VCC_Max.b2i" |
48481 | 639 |
"VCC_Max.certs" |
640 |
||
641 |
session "HOL-SPARK"! in "SPARK" = "HOL-Word" + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
642 |
options [document = false] |
48481 | 643 |
theories SPARK |
644 |
||
645 |
session Examples in "SPARK/Examples" = "HOL-SPARK" + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
646 |
options [document = false] |
48481 | 647 |
theories |
648 |
"Gcd/Greatest_Common_Divisor" |
|
649 |
||
650 |
"Liseq/Longest_Increasing_Subsequence" |
|
651 |
||
652 |
"RIPEMD-160/F" |
|
653 |
"RIPEMD-160/Hash" |
|
654 |
"RIPEMD-160/K_L" |
|
655 |
"RIPEMD-160/K_R" |
|
656 |
"RIPEMD-160/R_L" |
|
657 |
"RIPEMD-160/Round" |
|
658 |
"RIPEMD-160/R_R" |
|
659 |
"RIPEMD-160/S_L" |
|
660 |
"RIPEMD-160/S_R" |
|
661 |
||
662 |
"Sqrt/Sqrt" |
|
663 |
files |
|
664 |
"Gcd/greatest_common_divisor/g_c_d.fdl" |
|
665 |
"Gcd/greatest_common_divisor/g_c_d.rls" |
|
666 |
"Gcd/greatest_common_divisor/g_c_d.siv" |
|
667 |
"Liseq/liseq/liseq_length.fdl" |
|
668 |
"Liseq/liseq/liseq_length.rls" |
|
669 |
"Liseq/liseq/liseq_length.siv" |
|
670 |
"RIPEMD-160/rmd/f.fdl" |
|
671 |
"RIPEMD-160/rmd/f.rls" |
|
672 |
"RIPEMD-160/rmd/f.siv" |
|
673 |
"RIPEMD-160/rmd/hash.fdl" |
|
674 |
"RIPEMD-160/rmd/hash.rls" |
|
675 |
"RIPEMD-160/rmd/hash.siv" |
|
676 |
"RIPEMD-160/rmd/k_l.fdl" |
|
677 |
"RIPEMD-160/rmd/k_l.rls" |
|
678 |
"RIPEMD-160/rmd/k_l.siv" |
|
679 |
"RIPEMD-160/rmd/k_r.fdl" |
|
680 |
"RIPEMD-160/rmd/k_r.rls" |
|
681 |
"RIPEMD-160/rmd/k_r.siv" |
|
682 |
"RIPEMD-160/rmd/r_l.fdl" |
|
683 |
"RIPEMD-160/rmd/r_l.rls" |
|
684 |
"RIPEMD-160/rmd/r_l.siv" |
|
685 |
"RIPEMD-160/rmd/round.fdl" |
|
686 |
"RIPEMD-160/rmd/round.rls" |
|
687 |
"RIPEMD-160/rmd/round.siv" |
|
688 |
"RIPEMD-160/rmd/r_r.fdl" |
|
689 |
"RIPEMD-160/rmd/r_r.rls" |
|
690 |
"RIPEMD-160/rmd/r_r.siv" |
|
691 |
"RIPEMD-160/rmd/s_l.fdl" |
|
692 |
"RIPEMD-160/rmd/s_l.rls" |
|
693 |
"RIPEMD-160/rmd/s_l.siv" |
|
694 |
"RIPEMD-160/rmd/s_r.fdl" |
|
695 |
"RIPEMD-160/rmd/s_r.rls" |
|
696 |
"RIPEMD-160/rmd/s_r.siv" |
|
697 |
||
698 |
session Manual in "SPARK/Manual" = "HOL-SPARK" + |
|
48486 | 699 |
options [show_question_marks = false] |
48481 | 700 |
theories |
701 |
Example_Verification |
|
702 |
VC_Principles |
|
703 |
Reference |
|
704 |
Complex_Types |
|
705 |
files |
|
706 |
"complex_types_app/initialize.fdl" |
|
707 |
"complex_types_app/initialize.rls" |
|
708 |
"complex_types_app/initialize.siv" |
|
709 |
"document/complex_types.ads" |
|
710 |
"document/complex_types_app.adb" |
|
711 |
"document/complex_types_app.ads" |
|
712 |
"document/Gcd.adb" |
|
713 |
"document/Gcd.ads" |
|
714 |
"document/intro.tex" |
|
715 |
"document/loop_invariant.adb" |
|
716 |
"document/loop_invariant.ads" |
|
717 |
"document/root.bib" |
|
718 |
"document/root.tex" |
|
719 |
"document/Simple_Gcd.adb" |
|
720 |
"document/Simple_Gcd.ads" |
|
721 |
"loop_invariant/proc1.fdl" |
|
722 |
"loop_invariant/proc1.rls" |
|
723 |
"loop_invariant/proc1.siv" |
|
724 |
"loop_invariant/proc2.fdl" |
|
725 |
"loop_invariant/proc2.rls" |
|
726 |
"loop_invariant/proc2.siv" |
|
727 |
"simple_greatest_common_divisor/g_c_d.fdl" |
|
728 |
"simple_greatest_common_divisor/g_c_d.rls" |
|
729 |
"simple_greatest_common_divisor/g_c_d.siv" |
|
730 |
||
731 |
session Mutabelle = HOL + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
732 |
options [document = false] |
48481 | 733 |
theories MutabelleExtra |
734 |
||
735 |
session Quickcheck_Examples = HOL + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
736 |
options [document = false] |
48588 | 737 |
theories |
738 |
Quickcheck_Examples (* FIXME more *) |
|
48598 | 739 |
theories [condition = ISABELLE_GHC] |
740 |
Quickcheck_Narrowing_Examples |
|
48588 | 741 |
|
742 |
session Quickcheck_Benchmark = HOL + |
|
48635 | 743 |
theories [condition = ISABELLE_FULL_TEST, quick_and_dirty] |
48618
1f7e068b4613
moved another larger quickcheck example to Quickcheck_Benchmark
bulwahn
parents:
48614
diff
changeset
|
744 |
Find_Unused_Assms_Examples |
1f7e068b4613
moved another larger quickcheck example to Quickcheck_Benchmark
bulwahn
parents:
48614
diff
changeset
|
745 |
Needham_Schroeder_No_Attacker_Example |
1f7e068b4613
moved another larger quickcheck example to Quickcheck_Benchmark
bulwahn
parents:
48614
diff
changeset
|
746 |
Needham_Schroeder_Guided_Attacker_Example |
1f7e068b4613
moved another larger quickcheck example to Quickcheck_Benchmark
bulwahn
parents:
48614
diff
changeset
|
747 |
Needham_Schroeder_Unguided_Attacker_Example (* FIXME more *) |
48481 | 748 |
|
749 |
session Quotient_Examples = HOL + |
|
750 |
description {* |
|
751 |
Author: Cezary Kaliszyk and Christian Urban |
|
752 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
753 |
options [document = false] |
48481 | 754 |
theories |
755 |
DList |
|
756 |
FSet |
|
757 |
Quotient_Int |
|
758 |
Quotient_Message |
|
759 |
Lift_FSet |
|
760 |
Lift_Set |
|
761 |
Lift_Fun |
|
762 |
Quotient_Rat |
|
763 |
Lift_DList |
|
764 |
||
765 |
session Predicate_Compile_Examples = HOL + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
766 |
options [document = false] |
48481 | 767 |
theories (* FIXME *) |
768 |
Examples |
|
769 |
Predicate_Compile_Tests |
|
770 |
Specialisation_Examples |
|
771 |
||
48509 | 772 |
session HOLCF! (main) = HOL + |
48338 | 773 |
description {* |
774 |
Author: Franz Regensburger |
|
775 |
Author: Brian Huffman |
|
776 |
||
777 |
HOLCF -- a semantic extension of HOL by the LCF logic. |
|
778 |
*} |
|
779 |
options [document_graph] |
|
48470
7483aa690b4f
clarified "document" again, eliminated redundant "no_document";
wenzelm
parents:
48458
diff
changeset
|
780 |
theories [document = false] |
48338 | 781 |
"~~/src/HOL/Library/Nat_Bijection" |
782 |
"~~/src/HOL/Library/Countable" |
|
48481 | 783 |
theories |
784 |
Plain_HOLCF |
|
785 |
Fixrec |
|
786 |
HOLCF |
|
787 |
files "document/root.tex" |
|
788 |
||
789 |
session Tutorial in "HOLCF/Tutorial" = HOLCF + |
|
790 |
theories |
|
791 |
Domain_ex |
|
792 |
Fixrec_ex |
|
793 |
New_Domain |
|
794 |
files "document/root.tex" |
|
795 |
||
796 |
session Library in "HOLCF/Library" = HOLCF + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
797 |
options [document = false] |
48481 | 798 |
theories HOLCF_Library |
799 |
||
800 |
session IMP in "HOLCF/IMP" = HOLCF + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
801 |
options [document = false] |
48481 | 802 |
theories HoareEx |
48338 | 803 |
files "document/root.tex" |
804 |
||
48481 | 805 |
session ex in "HOLCF/ex" = HOLCF + |
806 |
description {* Misc HOLCF examples *} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
807 |
options [document = false] |
48481 | 808 |
theories |
809 |
Dnat |
|
810 |
Dagstuhl |
|
811 |
Focus_ex |
|
812 |
Fix2 |
|
813 |
Hoare |
|
814 |
Concurrency_Monad |
|
815 |
Loop |
|
816 |
Powerdomain_ex |
|
817 |
Domain_Proofs |
|
818 |
Letrec |
|
819 |
Pattern_Match |
|
820 |
||
821 |
session FOCUS in "HOLCF/FOCUS" = HOLCF + |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
822 |
options [document = false] |
48481 | 823 |
theories |
824 |
Fstreams |
|
825 |
FOCUS |
|
826 |
Buffer_adm |
|
827 |
||
828 |
session IOA! in "HOLCF/IOA" = HOLCF + |
|
829 |
description {* |
|
830 |
Author: Olaf Mueller |
|
831 |
||
832 |
Formalization of a semantic model of I/O-Automata. |
|
833 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
834 |
options [document = false] |
48481 | 835 |
theories "meta_theory/Abstraction" |
836 |
||
837 |
session ABP in "HOLCF/IOA/ABP" = IOA + |
|
838 |
description {* |
|
839 |
Author: Olaf Mueller |
|
840 |
||
841 |
The Alternating Bit Protocol performed in I/O-Automata. |
|
842 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
843 |
options [document = false] |
48481 | 844 |
theories Correctness |
845 |
||
846 |
session NTP in "HOLCF/IOA/NTP" = IOA + |
|
847 |
description {* |
|
848 |
Author: Tobias Nipkow & Konrad Slind |
|
849 |
||
850 |
A network transmission protocol, performed in the |
|
851 |
I/O automata formalization by Olaf Mueller. |
|
852 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
853 |
options [document = false] |
48481 | 854 |
theories Correctness |
855 |
||
856 |
session Storage in "HOLCF/IOA/Storage" = IOA + |
|
857 |
description {* |
|
858 |
Author: Olaf Mueller |
|
859 |
||
860 |
Memory storage case study. |
|
861 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
862 |
options [document = false] |
48481 | 863 |
theories Correctness |
864 |
||
865 |
session ex in "HOLCF/IOA/ex" = IOA + |
|
866 |
description {* |
|
867 |
Author: Olaf Mueller |
|
868 |
*} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
869 |
options [document = false] |
48481 | 870 |
theories |
871 |
TrivEx |
|
872 |
TrivEx2 |
|
873 |
||
874 |
session Datatype_Benchmark = HOL + |
|
875 |
description {* Some rather large datatype examples (from John Harrison). *} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
876 |
options [document = false] |
48635 | 877 |
theories [condition = ISABELLE_FULL_TEST, timing] |
48481 | 878 |
Brackin |
879 |
Instructions |
|
880 |
SML |
|
881 |
Verilog |
|
882 |
||
883 |
session Record_Benchmark = HOL + |
|
884 |
description {* Some benchmark on large record. *} |
|
48483
9bfb6978eb80
more explicit document = false to reduce warnings;
wenzelm
parents:
48481
diff
changeset
|
885 |
options [document = false] |
48635 | 886 |
theories [condition = ISABELLE_FULL_TEST, timing] |
48481 | 887 |
Record_Benchmark |
888 |