author | wenzelm |
Sat, 20 Jan 2007 14:27:45 +0100 | |
changeset 22140 | 0d49078c28bd |
parent 22067 | 39d5d42116c4 |
child 22167 | c3afded569ea |
permissions | -rw-r--r-- |
12115 | 1 |
(* Title: HOL/ex/ROOT.ML |
2 |
ID: $Id$ |
|
11586 | 3 |
|
12115 | 4 |
Miscellaneous examples for Higher-Order Logic. |
5 |
*) |
|
6 |
||
21256 | 7 |
no_document use_thy "Parity"; |
8 |
no_document use_thy "GCD"; |
|
9 |
||
19438 | 10 |
no_document time_use_thy "Classpackage"; |
20436 | 11 |
no_document time_use_thy "CodeCollections"; |
20427 | 12 |
no_document time_use_thy "CodeEval"; |
20400 | 13 |
no_document time_use_thy "CodeRandom"; |
22067 | 14 |
no_document time_use_thy "Codegenerator_Rat"; |
21911
e29bcab0c81c
added OCaml code generation (without dictionaries)
haftmann
parents:
21256
diff
changeset
|
15 |
no_document time_use_thy "Codegenerator"; |
19438 | 16 |
|
12360 | 17 |
time_use_thy "Higher_Order_Logic"; |
19085 | 18 |
time_use_thy "Abstract_NAT"; |
19997 | 19 |
time_use_thy "Guess"; |
22140 | 20 |
time_use_thy "Binary"; |
12360 | 21 |
|
12115 | 22 |
time_use_thy "Recdefs"; |
14244
f58598341d30
InductiveInvariant_examples illustrates advanced recursive function definitions
paulson
parents:
14220
diff
changeset
|
23 |
time_use_thy "InductiveInvariant_examples"; |
12115 | 24 |
time_use_thy "Primrec"; |
12276 | 25 |
time_use_thy "Locales"; |
12115 | 26 |
time_use_thy "Records"; |
27 |
time_use_thy "MonoidGroup"; |
|
28 |
time_use_thy "BinEx"; |
|
20866 | 29 |
time_use_thy "Hex_Bin_Examples"; |
12115 | 30 |
setmp proofs 2 time_use_thy "Hilbert_Classical"; |
31 |
time_use_thy "Antiquote"; |
|
32 |
time_use_thy "Multiquote"; |
|
33 |
||
20812 | 34 |
time_use_thy "PER"; |
12115 | 35 |
time_use_thy "NatSum"; |
19022
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
18678
diff
changeset
|
36 |
time_use_thy "ThreeDivides"; |
12450
1162b280700a
Added example file for intuitionistic logic (taken from FOL).
berghofe
parents:
12360
diff
changeset
|
37 |
time_use_thy "Intuitionistic"; |
14220
4dc132902672
Merging of ex/cla.ML and ex/mesontest.ML to ex/Classical.thy
paulson
parents:
13880
diff
changeset
|
38 |
time_use_thy "Classical"; |
15871 | 39 |
time_use_thy "CTL"; |
12115 | 40 |
time_use_thy "mesontest2"; |
13880 | 41 |
time_use_thy "PresburgerEx"; |
17378
105519771c67
The oracle for Presburger has been changer: It is automatically generated form a verified formaliztion of Cooper's Algorithm ex/Reflected_Presburger.thy
chaieb
parents:
15871
diff
changeset
|
42 |
time_use_thy "Reflected_Presburger"; |
12115 | 43 |
time_use_thy "BT"; |
44 |
time_use_thy "InSort"; |
|
45 |
time_use_thy "Qsort"; |
|
13200 | 46 |
time_use_thy "MergeSort"; |
12115 | 47 |
time_use_thy "Puzzle"; |
48 |
||
14603 | 49 |
time_use_thy "Lagrange"; |
17378
105519771c67
The oracle for Presburger has been changer: It is automatically generated form a verified formaliztion of Cooper's Algorithm ex/Reflected_Presburger.thy
chaieb
parents:
15871
diff
changeset
|
50 |
time_use_thy "Commutative_RingEx"; |
105519771c67
The oracle for Presburger has been changer: It is automatically generated form a verified formaliztion of Cooper's Algorithm ex/Reflected_Presburger.thy
chaieb
parents:
15871
diff
changeset
|
51 |
time_use_thy "Commutative_Ring_Complete"; |
20325 | 52 |
time_use_thy "Reflection"; |
12115 | 53 |
|
54 |
time_use_thy "set"; |
|
55 |
time_use_thy "MT"; |
|
14569 | 56 |
|
57 |
no_document use_thy "FuncSet"; |
|
12115 | 58 |
time_use_thy "Tarski"; |
59 |
||
12869 | 60 |
time_use_thy "SVC_Oracle"; |
12115 | 61 |
if_svc_enabled time_use_thy "svc_test"; |
14459 | 62 |
|
17618
1330157e156a
new sat tactic imports resolution proofs from zChaff
webertj
parents:
17505
diff
changeset
|
63 |
(* requires zChaff with proof generation to be installed: *) |
18678 | 64 |
try time_use_thy "SAT_Examples"; |
17618
1330157e156a
new sat tactic imports resolution proofs from zChaff
webertj
parents:
17505
diff
changeset
|
65 |
|
18408 | 66 |
(* requires zChaff (or some other reasonably fast SAT solver) to be installed: *) |
67 |
if getenv "ZCHAFF_HOME" <> "" then |
|
68 |
time_use_thy "Sudoku" |
|
69 |
else |
|
70 |
(); |
|
71 |
||
14462 | 72 |
time_use_thy "Refute_Examples"; |
14592
dd1a2905ea73
Added theory with examples for quickcheck command.
berghofe
parents:
14569
diff
changeset
|
73 |
time_use_thy "Quickcheck_Examples"; |
19832 | 74 |
no_document time_use_thy "NormalForm"; |
14494
48ae8d678d88
Added bitvector library (Word) to HOL/Library and a theory using it (Adder)
skalberg
parents:
14482
diff
changeset
|
75 |
|
14569 | 76 |
no_document use_thy "Word"; |
14494
48ae8d678d88
Added bitvector library (Word) to HOL/Library and a theory using it (Adder)
skalberg
parents:
14482
diff
changeset
|
77 |
time_use_thy "Adder"; |
14569 | 78 |
|
17466 | 79 |
HTML.with_charset "utf-8" (no_document time_use_thy) "Hebrew"; |
17505 | 80 |
HTML.with_charset "utf-8" (no_document time_use_thy) "Chinese"; |