src/HOL/Main.thy
author paulson
Thu, 01 Dec 2005 15:45:54 +0100
changeset 18315 e52f867ab851
parent 17905 1574533861b1
child 18510 0a6c24f549c3
permissions -rw-r--r--
restoring the old status of subset_refl

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

header {* Main HOL *}

theory Main
imports SAT Reconstruction ResAtpMethods
begin

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


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

declare subset_refl [intro] 
  text {*Ensures that this important theorem is not superseded by the
         simplifier's "== True" version.*}
setup ResAxioms.clause_setup
declare subset_refl [rule del]
  text {*Removed again because it harms blast's performance.*}

end