src/HOL/Main.thy
author wenzelm
Tue, 20 Sep 2005 14:03:38 +0200
changeset 17509 054cd8972095
parent 17461 83f1dd9d901d
child 17601 a6a322f96145
permissions -rw-r--r--
removed Commutative_Ring hacks;

(* $Id$ *)

header {* Main HOL *}

theory Main
imports Refute Reconstruction
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 rufute, 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