src/HOL/SAT.thy
author wenzelm
Mon, 29 Sep 2014 11:18:25 +0200
changeset 58471 ab4b94892c4c
parent 55239 97921d23ebe3
child 58889 5b7a9633cfa8
permissions -rw-r--r--
faster machine for slow/bulky polyml-5.3.0 tests (notably HOL-Proofs);

(*  Title:      HOL/SAT.thy
    Author:     Alwen Tiu, Tjark Weber
    Copyright   2005

Basic setup for the 'sat' and 'satx' tactics.
*)

header {* Reconstructing external resolution proofs for propositional logic *}

theory SAT
imports HOL
begin

ML_file "Tools/prop_logic.ML"
ML_file "Tools/sat_solver.ML"
ML_file "Tools/sat.ML"

method_setup sat = {* Scan.succeed (SIMPLE_METHOD' o SAT.sat_tac) *}
  "SAT solver"

method_setup satx = {* Scan.succeed (SIMPLE_METHOD' o SAT.satx_tac) *}
  "SAT solver (with definitional CNF)"

end