author | webertj |
Fri, 23 Sep 2005 15:45:12 +0200 | |
changeset 17601 | a6a322f96145 |
parent 17509 | 054cd8972095 |
child 17602 | 63367feba417 |
permissions | -rw-r--r-- |
17461 | 1 |
(* $Id$ *) |
9619 | 2 |
|
12024 | 3 |
header {* Main HOL *} |
4 |
||
15131 | 5 |
theory Main |
17461 | 6 |
imports Refute Reconstruction |
15131 | 7 |
begin |
9650
6f0b89f2a1f9
Main now new-style theory; added Main.ML for compatibility;
wenzelm
parents:
9619
diff
changeset
|
8 |
|
12024 | 9 |
text {* |
10 |
Theory @{text Main} includes everything. Note that theory @{text |
|
11 |
PreList} already includes most HOL theories. |
|
12 |
*} |
|
13 |
||
17395
a05e20f6a31a
hide the rather generic names used in theory Commutative_Ring;
wenzelm
parents:
17386
diff
changeset
|
14 |
|
17461 | 15 |
subsection {* Special hacks, late package setup etc. *} |
17395
a05e20f6a31a
hide the rather generic names used in theory Commutative_Ring;
wenzelm
parents:
17386
diff
changeset
|
16 |
|
17601 | 17 |
text {* \medskip Default values for refute, see also theory @{text |
17461 | 18 |
Refute}. |
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16635
diff
changeset
|
19 |
*} |
13093
ab0335307905
code generator: wfrec combinator is now implemented by ML function wf_rec.
berghofe
parents:
12554
diff
changeset
|
20 |
|
17461 | 21 |
refute_params |
22 |
["itself"=1, |
|
23 |
minsize=1, |
|
24 |
maxsize=8, |
|
25 |
maxvars=10000, |
|
26 |
maxtime=60, |
|
27 |
satsolver="auto"] |
|
12554
671b4d632c34
Declared characteristic equations for < on nat for code generation.
berghofe
parents:
12439
diff
changeset
|
28 |
|
17395
a05e20f6a31a
hide the rather generic names used in theory Commutative_Ring;
wenzelm
parents:
17386
diff
changeset
|
29 |
|
17461 | 30 |
text {* \medskip Clause setup: installs \emph{all} simprules and |
31 |
claset rules into the clause cache; cf.\ theory @{text |
|
32 |
Reconstruction}. *} |
|
14350 | 33 |
|
17461 | 34 |
setup ResAxioms.clause_setup |
14350 | 35 |
|
9650
6f0b89f2a1f9
Main now new-style theory; added Main.ML for compatibility;
wenzelm
parents:
9619
diff
changeset
|
36 |
end |