src/HOL/Main.thy
author webertj
Fri, 23 Sep 2005 16:01:45 +0200
changeset 17602 63367feba417
parent 17601 a6a322f96145
child 17618 1330157e156a
permissions -rw-r--r--
header (title/ID) added
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17602
63367feba417 header (title/ID) added
webertj
parents: 17601
diff changeset
     1
(*  Title:      HOL/Main.thy
63367feba417 header (title/ID) added
webertj
parents: 17601
diff changeset
     2
    ID:         $Id$
63367feba417 header (title/ID) added
webertj
parents: 17601
diff changeset
     3
*)
9619
6125cc9efc18 fixed deps;
wenzelm
parents: 9447
diff changeset
     4
12024
b3661262541e moved String into Main;
wenzelm
parents: 11533
diff changeset
     5
header {* Main HOL *}
b3661262541e moved String into Main;
wenzelm
parents: 11533
diff changeset
     6
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15063
diff changeset
     7
theory Main
17461
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
     8
imports Refute Reconstruction
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15063
diff changeset
     9
begin
9650
6f0b89f2a1f9 Main now new-style theory; added Main.ML for compatibility;
wenzelm
parents: 9619
diff changeset
    10
12024
b3661262541e moved String into Main;
wenzelm
parents: 11533
diff changeset
    11
text {*
b3661262541e moved String into Main;
wenzelm
parents: 11533
diff changeset
    12
  Theory @{text Main} includes everything.  Note that theory @{text
b3661262541e moved String into Main;
wenzelm
parents: 11533
diff changeset
    13
  PreList} already includes most HOL theories.
b3661262541e moved String into Main;
wenzelm
parents: 11533
diff changeset
    14
*}
b3661262541e moved String into Main;
wenzelm
parents: 11533
diff changeset
    15
17395
a05e20f6a31a hide the rather generic names used in theory Commutative_Ring;
wenzelm
parents: 17386
diff changeset
    16
17461
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    17
subsection {* Special hacks, late package setup etc. *}
17395
a05e20f6a31a hide the rather generic names used in theory Commutative_Ring;
wenzelm
parents: 17386
diff changeset
    18
17601
a6a322f96145 typo fixed: rufute -> refute
webertj
parents: 17509
diff changeset
    19
text {* \medskip Default values for refute, see also theory @{text
17461
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    20
  Refute}.
16770
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16635
diff changeset
    21
*}
13093
ab0335307905 code generator: wfrec combinator is now implemented by ML function wf_rec.
berghofe
parents: 12554
diff changeset
    22
17461
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    23
refute_params
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    24
 ["itself"=1,
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    25
  minsize=1,
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    26
  maxsize=8,
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    27
  maxvars=10000,
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    28
  maxtime=60,
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    29
  satsolver="auto"]
12554
671b4d632c34 Declared characteristic equations for < on nat for code generation.
berghofe
parents: 12439
diff changeset
    30
17395
a05e20f6a31a hide the rather generic names used in theory Commutative_Ring;
wenzelm
parents: 17386
diff changeset
    31
17461
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    32
text {* \medskip Clause setup: installs \emph{all} simprules and
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    33
  claset rules into the clause cache; cf.\ theory @{text
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    34
  Reconstruction}. *}
14350
41b32020d0b3 Adding 'refute' to HOL.
webertj
parents: 14192
diff changeset
    35
17461
83f1dd9d901d minor cleanup, moved stuff in its proper place;
wenzelm
parents: 17421
diff changeset
    36
setup ResAxioms.clause_setup
14350
41b32020d0b3 Adding 'refute' to HOL.
webertj
parents: 14192
diff changeset
    37
9650
6f0b89f2a1f9 Main now new-style theory; added Main.ML for compatibility;
wenzelm
parents: 9619
diff changeset
    38
end