src/HOL/SAT.thy
author wenzelm
Fri, 26 Aug 2022 12:38:00 +0200
changeset 75983 34dd96a06c45
parent 69605 a96320074298
child 83153 d5715946bc3f
permissions -rw-r--r--
removed unused "def_theory" markup (stemming from be49c660ebbf), superseded e.g. by Document_Info.theory_by_file();

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

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

section \<open>Reconstructing external resolution proofs for propositional logic\<close>

theory SAT
imports Argo
begin

ML_file \<open>Tools/prop_logic.ML\<close>
ML_file \<open>Tools/sat_solver.ML\<close>
ML_file \<open>Tools/sat.ML\<close>
ML_file \<open>Tools/Argo/argo_sat_solver.ML\<close>

method_setup sat = \<open>Scan.succeed (SIMPLE_METHOD' o SAT.sat_tac)\<close>
  "SAT solver"

method_setup satx = \<open>Scan.succeed (SIMPLE_METHOD' o SAT.satx_tac)\<close>
  "SAT solver (with definitional CNF)"

end