src/HOL/Main.thy
author webertj
Fri, 23 Sep 2005 22:58:50 +0200
changeset 17618 1330157e156a
parent 17602 63367feba417
child 17721 b943c01e1c6d
permissions -rw-r--r--
new sat tactic imports resolution proofs from zChaff

(*  Title:      HOL/Main.thy
    ID:         $Id$
*)

header {* Main HOL *}

theory Main
imports Refute Reconstruction SAT
begin

text {*
  Theory @{text Main} includes everything.  Note that theory @{text
  PreList} already includes most HOL theories.
*}


subsection {* Special hacks, late package setup etc. *}

text {* \medskip Default values for refute, see also theory @{text
  Refute}.
*}

refute_params
 ["itself"=1,
  minsize=1,
  maxsize=8,
  maxvars=10000,
  maxtime=60,
  satsolver="auto"]


text {* \medskip Clause setup: installs \emph{all} simprules and
  claset rules into the clause cache; cf.\ theory @{text
  Reconstruction}. *}

setup ResAxioms.clause_setup

end