Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Boolean satisfiability problem

From Wikipedia, the free encyclopedia
Problem of determining if a Boolean formula could be made true
"3SAT" redirects here. For the Central European television network, see3sat.

Inlogic andcomputer science, theBoolean satisfiability problem (sometimes calledpropositional satisfiability problem and abbreviatedSATISFIABILITY,SAT orB-SAT) asks whether there exists aninterpretation thatsatisfies a givenBooleanformula. In other words, it asks whether the formula's variables can be consistently replaced by the values TRUE or FALSE to make the formula evaluate to TRUE. If this is the case, the formula is calledsatisfiable, elseunsatisfiable. For example, the formula "a AND NOTb" is satisfiable because one can find the valuesa = TRUE andb = FALSE, which make (a AND NOTb) = TRUE. In contrast, "a AND NOTa" is unsatisfiable.

SAT is the first problem that was proven to beNP-complete—this is theCook–Levin theorem. This means that all problems in the complexity classNP, which includes a wide range of natural decision and optimization problems, are at most as difficult to solve as SAT. There is no known algorithm that efficiently solves each SAT problem (where "efficiently" means "deterministically inpolynomial time"). Although such an algorithm is generally believed not to exist, this belief has not been proven or disproven mathematically. Resolving the question of whether SAT has apolynomial-time algorithm would settle theP versus NP problem - one of the most important open problems in the theory of computing.[1][2]

Nevertheless, as of 2007, heuristic SAT-algorithms are able to solve problem instances involving tens of thousands of variables and formulas consisting of millions of symbols,[3] which is sufficient for many practical SAT problems occurring inartificial intelligence,circuit design,[4] andautomatic theorem proving.

Definitions

[edit]

Apropositional logic formula, also calledBoolean expression, is built fromvariables, operators AND (conjunction, also denoted by ∧), OR (disjunction, ∨), NOT (negation, ¬), and parentheses. A formula is said to besatisfiable if it can be made TRUE by assigning appropriatelogical values (i.e. TRUE, FALSE) to its variables. TheBoolean satisfiability problem (SAT) is, given a formula, to check whether it is satisfiable. Thisdecision problem is of central importance in many areas ofcomputer science, includingtheoretical computer science,complexity theory,[5][6]algorithmics,cryptography[7][8] andartificial intelligence.[9][additional citation(s) needed]

Conjunctive normal form

[edit]

Aliteral is either a variable (in which case it is called apositive literal) or the negation of a variable (called anegative literal). Aclause is a disjunction of literals (or a single literal). A clause is called aHorn clause if it contains at most one positive literal. A formula is inconjunctive normal form (CNF) if it is a conjunction of clauses (or a single clause).

For example,x1 is a positive literal,¬x2 is a negative literal, andx1 ∨ ¬x2 is a clause. The formula(x1 ∨ ¬x2) ∧ (¬x1x2x3) ∧ ¬x1 is in conjunctive normal form; its first and third clauses are Horn clauses, but its second clause is not. The formula is satisfiable, by choosingx1 = FALSE,x2 = FALSE, andx3 arbitrarily, since (FALSE ∨ ¬FALSE) ∧ (¬FALSE ∨ FALSE ∨x3) ∧ ¬FALSE evaluates to (FALSE ∨ TRUE) ∧ (TRUE ∨ FALSE ∨x3) ∧ TRUE, and in turn to TRUE ∧ TRUE ∧ TRUE (i.e. to TRUE). In contrast, the CNF formulaa ∧ ¬a, consisting of two clauses of one literal, is unsatisfiable, since fora=TRUE ora=FALSE it evaluates to TRUE ∧ ¬TRUE (i.e., FALSE) or FALSE ∧ ¬FALSE (i.e., again FALSE), respectively.

For some versions of the SAT problem, it is useful to define the notion of ageneralized conjunctive normal form formula, viz. as a conjunction of arbitrarily manygeneralized clauses, the latter being of the formR(l1,...,ln) for someBoolean functionR and (ordinary) literalsli. Different sets of allowed Boolean functions lead to different problem versions. As an example,Rx,a,b) is a generalized clause, andRx,a,b) ∧R(b,y,c) ∧R(c,dz) is a generalized conjunctive normal form. This formula is usedbelow, withR being the ternary operator that is TRUE just when exactly one of its arguments is.

Using the laws ofBoolean algebra, every propositional logic formula can be transformed into an equivalent conjunctive normal form, which may, however, be exponentially longer. For example, transforming the formula (x1y1) ∨ (x2y2) ∨ ... ∨ (xnyn) into conjunctive normal form yields

(x1 ∨ x2 ∨ … ∨ xn) ∧
(y1 ∨ x2 ∨ … ∨ xn) ∧
(x1 ∨ y2 ∨ … ∨ xn) ∧
(y1 ∨ y2 ∨ … ∨ xn) ∧ ... ∧
(x1 ∨ x2 ∨ … ∨ yn) ∧
(y1 ∨ x2 ∨ … ∨ yn) ∧
(x1 ∨ y2 ∨ … ∨ yn) ∧
(y1 ∨ y2 ∨ … ∨ yn);

while the former is a disjunction ofn conjunctions of 2 variables, the latter consists of 2n clauses ofn variables.

However, with use of theTseytin transformation, we may find an equisatisfiable conjunctive normal form formula with length linear in the size of the original propositional logic formula.

Complexity

[edit]
Main article:Cook–Levin theorem

SAT was the first problem known to beNP-complete, as proved byStephen Cook at theUniversity of Toronto in 1971[10] and independently byLeonid Levin at theRussian Academy of Sciences in 1973.[11] Until that time, the concept of an NP-complete problem did not even exist. The proof shows how every decision problem in thecomplexity classNP can bereduced to the SAT problem for CNF[a] formulas, sometimes calledCNFSAT. A useful property of Cook's reduction is that it preserves the number of accepting answers. For example, deciding whether a givengraph has a3-coloring is another problem in NP; if a graph has 17 valid 3-colorings, then the SAT formula produced by the Cook–Levin reduction will have 17 satisfying assignments.

NP-completeness only refers to the run-time of the worst case instances. Many of the instances that occur in practical applications can be solved much more quickly. See§Algorithms for solving SAT below.

3-satisfiability

[edit]
The 3-SAT instance(xxy) ∧ (¬x ∨ ¬y ∨ ¬y) ∧ (¬xyy) reduced to aclique problem. The green vertices form a 3-clique and correspond to the satisfying assignmentx=FALSE,y=TRUE.

Like the satisfiability problem for arbitrary formulas, determining the satisfiability of a formula in conjunctive normal form where each clause is limited to at most three literals is NP-complete also; this problem is called3-SAT,3CNFSAT, or3-satisfiability. To reduce the unrestricted SAT problem to 3-SAT, transform each clausel1 ∨ ⋯ ∨ln to a conjunction ofn - 2 clauses

(l1l2x2) ∧
x2l3x3) ∧
x3l4x4) ∧ ⋯ ∧
xn−3ln−2xn−2) ∧
xn−2ln−1ln)

wherex2, ⋯ , xn−2 arefresh variables not occurring elsewhere. Although the two formulas are notlogically equivalent, they areequisatisfiable. The formula resulting from transforming all clauses is at most 3 times as long as its original; that is, the length growth is polynomial.[12]

3-SAT is one ofKarp's 21 NP-complete problems, and it is used as a starting point for proving that other problems are alsoNP-hard.[b] This is done bypolynomial-time reduction from 3-SAT to the other problem. An example of a problem where this method has been used is theclique problem: given a CNF formula consisting ofc clauses, the correspondinggraph consists of a vertex for each literal, and an edge between each two non-contradicting[c] literals from different clauses; see the picture. The graph has ac-clique if and only if the formula is satisfiable.[13]

There is a simple randomized algorithm due to Schöning (1999) that runs in time (4/3)n wheren is the number of variables in the 3-SAT proposition, and succeeds with high probability to correctly decide 3-SAT.[14]

Theexponential time hypothesis asserts that no algorithm can solve 3-SAT (or indeedk-SAT for anyk > 2) inexp(o(n)) time (that is, fundamentally faster than exponential inn).

Selman, Mitchell, and Levesque (1996) give empirical data on the difficulty of randomly generated 3-SAT formulas, depending on their size parameters. Difficulty is measured in number recursive calls made by aDPLL algorithm. They identified a phase transition region from almost-certainly-satisfiable to almost-certainly-unsatisfiable formulas at the clauses-to-variables ratio at about 4.26.[15]

3-satisfiability can be generalized tok-satisfiability (k-SAT, alsok-CNF-SAT), when formulas in CNF are considered with each clause containing up tok literals.[citation needed] However, since for anyk ≥ 3, this problem can neither be easier than 3-SAT nor harder than SAT, and the latter two are NP-complete, so must be k-SAT.

Some authors restrict k-SAT to CNF formulas withexactly k literals.[citation needed] This does not lead to a different complexity class either, as each clausel1 ∨ ⋯ ∨lj withj <k literals can be padded with fixed dummy variables tol1 ∨ ⋯ ∨ljdj+1 ∨ ⋯ ∨dk. After padding all clauses, 2k–1 extra clauses[d] must be appended to ensure that onlyd1 = ⋯ =dk = FALSE can lead to a satisfying assignment. Sincek does not depend on the formula length, the extra clauses lead to a constant increase in length. For the same reason, it does not matter whetherduplicate literals are allowed in clauses, as in¬x ∨ ¬y ∨ ¬y.

Special instances of 3SAT

[edit]

Conjunctive normal form

[edit]

Conjunctive normal form (in particular with 3 literals per clause) is often considered the canonical representation for SAT formulas. As shown above, the general SAT problem reduces to 3-SAT, the problem of determining satisfiability for formulas in this form.

Linear SAT

[edit]

A 3-SAT formula isLinear SAT (LSAT) if each clause (viewed as a set of literals) intersects at most one other clause, and, moreover, if two clauses intersect, then they have exactly one literal in common. An LSAT formula can be depicted as a set of disjoint semi-closed intervals on a line. Deciding whether an LSAT formula is satisfiable is NP-complete.[16]

2-satisfiability

[edit]
Main article:2-satisfiability

SAT is easier if the number of literals in a clause is limited to at most 2, in which case the problem is called2-SAT. This problem can be solved in polynomial time, and in fact iscomplete for the complexity classNL. If additionally all OR operations in literals are changed toXOR operations, then the result is calledexclusive-or 2-satisfiability, which is a problem complete for the complexity classSL =L.

Horn-satisfiability

[edit]
Main article:Horn-satisfiability

The problem of deciding the satisfiability of a given conjunction ofHorn clauses is calledHorn-satisfiability, orHORN-SAT. It can be solved in polynomial time by a single step of theunit propagation algorithm, which produces the single minimal model of the set of Horn clauses (w.r.t. the set of literals assigned to TRUE). Horn-satisfiability isP-complete. It can be seen asP's version of the Boolean satisfiability problem. Also, deciding the truth of quantified Horn formulas can be done in polynomial time.[17]

Horn clauses are of interest because they are able to expressimplication of one variable from a set of other variables. Indeed, one such clause ¬x1 ∨ ... ∨ ¬xny can be rewritten asx1 ∧ ... ∧xny; that is, ifx1,...,xn are all TRUE, theny must be TRUE as well.

A generalization of the class of Horn formulas is that of renameable-Horn formulae, which is the set of formulas that can be placed in Horn form by replacing some variables with their respective negation. For example, (x1 ∨ ¬x2) ∧ (¬x1x2x3) ∧ ¬x1 is not a Horn formula, but can be renamed to the Horn formula (x1 ∨ ¬x2) ∧ (¬x1x2 ∨ ¬y3) ∧ ¬x1 by introducingy3 as negation ofx3. In contrast, no renaming of (x1 ∨ ¬x2 ∨ ¬x3) ∧ (¬x1x2x3) ∧ ¬x1 leads to a Horn formula. Checking the existence of such a replacement can be done in linear time; therefore, the satisfiability of such formulae is in P as it can be solved by first performing this replacement and then checking the satisfiability of the resulting Horn formula.

Not 3SAT problems

[edit]

Disjunctive normal form

[edit]

SAT is trivial if the formulas are restricted to those indisjunctive normal form, that is, they are a disjunction of conjunctions of literals. Such a formula is indeed satisfiable if and only if at least one of its conjunctions is satisfiable, and a conjunction is satisfiable if and only if it does not contain bothx and NOTx for some variablex. This can be checked in linear time. Furthermore, if they are restricted to being infull disjunctive normal form, in which every variable appears exactly once in every conjunction, they can be checked in constant time (each conjunction represents one satisfying assignment). But it can take exponential time and space to convert a general SAT problem to disjunctive normal form; to obtain an example, exchange "∧" and "∨" in theabove exponential blow-up example for conjunctive normal forms.

Exactly-1 3-satisfiability

[edit]
Main article:1-in-3-SAT

Another NP-complete variant of the 3-satisfiability problem is theone-in-three 3-SAT (also known variously as1-in-3-SAT andexactly-1 3-SAT). Given a conjunctive normal form with three literals per clause, the problem is to determine whether there exists a truth assignment to the variables so that each clause hasexactly one TRUE literal (and thus exactly two FALSE literals).

Not-all-equal 3-satisfiability

[edit]
Main article:Not-all-equal 3-satisfiability

Another variant is thenot-all-equal 3-satisfiability problem (also calledNAE3SAT). Given a conjunctive normal form with three literals per clause, the problem is to determine if an assignment to the variables exists such that in no clause all three literals have the same truth value. This problem is NP-complete, too, even if no negation symbols are admitted, by Schaefer's dichotomy theorem.[18]

XOR-satisfiability

[edit]
Main article:XOR-SAT

Another special case is the class of problems where each clause contains XOR (i.e.exclusive or) rather than (plain) OR operators. This is inP, since an XOR-SAT formula can also be viewed as a system of linear equations mod 2, and can be solved in cubic time byGaussian elimination.[19]

Schaefer's dichotomy theorem

[edit]
Main article:Schaefer's dichotomy theorem

The restrictions above (CNF, 2CNF, 3CNF, Horn, XOR-SAT) bound the considered formulae to be conjunctions of subformulas; each restriction states a specific form for all subformulas: for example, only binary clauses can be subformulas in 2CNF.

Schaefer's dichotomy theorem states that, for any restriction to Boolean functions that can be used to form these subformulas, the corresponding satisfiability problem is in P or NP-complete. The membership in P of the satisfiability of 2CNF, Horn, and XOR-SAT formulae are special cases of this theorem.[18]

The following table summarizes some common variants of SAT.

NameCode3SAT problem?RestrictionsRequirementsClass
3-satisfiability3SATYesEach clause contains 3 literals.At least one literal must be true.NP-c
2-satisfiability2SATYesEach clause contains 2 literals.At least one literal must be true.NL-c
Exactly-1 3-SAT1-in-3-SATNoEach clause contains 3 literals.Exactly one literal must be true.NP-c
Exactly-1 Positive 3-SAT1-in-3-SAT+NoEach clause contains 3 positive literals.Exactly one literal must be true.NP-c
Not-all-equal 3-satisfiabilityNAE3SATNoEach clause contains 3 literals.Either one or two literals must be true.NP-c
Not-all-equal positive 3-SATNAE3SAT+NoEach clause contains 3 positive literals.Either one or two literals must be true.NP-c
Planar SATPL-SATYesThe incidence graph (clause-variable graph) isplanar.At least one literal must be true.NP-c
Linear SATLSATYesEach clause contains 3 literals, intersects at most one other clause, and the intersection is exactly one literal.At least one literal must be true.NP-c
Horn satisfiabilityHORN-SATYesHorn clauses (at most one positive literal).At least one literal must be true.P-c
Xor satisfiabilityXOR-SATNoEach clause contains XOR operations rather than OR.The XOR of all literals must be true.P

Extensions of SAT

[edit]

An extension that has gained significant popularity since 2003 issatisfiability modulo theories (SMT) that can enrich CNF formulas with linear constraints, arrays, all-different constraints,uninterpreted functions,[20] etc. Such extensions typically remain NP-complete, but very efficient solvers are now available that can handle many such kinds of constraints.

The satisfiability problem becomes more difficult if both "for all" () and "there exists" ()quantifiers are allowed to bind the Boolean variables. An example of such an expression would bexyz (xyz) ∧ (¬x ∨ ¬y ∨ ¬z); it is valid, since for all values ofx andy, an appropriate value ofz can be found, viz.z=TRUE if bothx andy are FALSE, andz=FALSE else. SAT itself (tacitly) uses only ∃ quantifiers. If only ∀ quantifiers are allowed instead, the so-calledtautology problem is obtained, which isco-NP-complete. If any number of both quantifiers are allowed, the problem is called thequantified Boolean formula problem (QBF), which can be shown to bePSPACE-complete. It is widely believed that PSPACE-complete problems are strictly harder than any problem in NP, although this has not yet been proved.

Ordinary SAT asks if there is at least one variable assignment that makes the formula true. A variety of variants deal with the number of such assignments:

  • MAJ-SAT asks if at least half of all assignments make the formula TRUE. It is known to be complete forPP, a probabilistic class. Surprisingly,MAJ-kSAT is demonstrated to be in P for every finite integer k.[21]
  • #SAT, the problem of counting how many variable assignments satisfy a formula, is a counting problem, not a decision problem, and is#P-complete.
  • UNIQUE SAT[22] is the problem of determining whether a formula has exactly one assignment. It is complete forUS,[23] thecomplexity class describing problems solvable by a non-deterministic polynomial timeTuring machine that accepts when there is exactly one nondeterministic accepting path and rejects otherwise.
  • UNAMBIGUOUS-SAT is the name given to the satisfiability problem when the input formula ispromised to have at most one satisfying assignment. The problem is also calledUSAT.[24] A solving algorithm for UNAMBIGUOUS-SAT is allowed to exhibit any behavior, including endless looping, on a formula having several satisfying assignments. Although this problem seems easier, Valiant and Vazirani haveshown[25] that if there is a practical (i.e.randomized polynomial-time) algorithm to solve it, then all problems inNP can be solved just as easily.
  • MAX-SAT, themaximum satisfiability problem, is anFNP generalization of SAT. It asks for the maximum number of clauses which can be satisfied by any assignment. It has efficientapproximation algorithms, but is NP-hard to solve exactly. Worse still, it isAPX-complete, meaning there is nopolynomial-time approximation scheme (PTAS) for this problem unless P=NP.
  • WMSAT is the problem of finding an assignment of minimum weight that satisfy a monotone Boolean formula (i.e. a formula without any negation). Weights of propositional variables are given in the input of the problem. The weight of an assignment is the sum of weights of true variables. That problem is NP-complete (see Th. 1 of[26]).

Other generalizations include satisfiability forfirst- andsecond-order logic,constraint satisfaction problems,0-1 integer programming.

Finding a satisfying assignment

[edit]

While SAT is adecision problem, thesearch problem of finding a satisfying assignment reduces to SAT. That is, each algorithm which correctly answers whether an instance of SAT is solvable can be used to find a satisfying assignment. First, the question is asked on the given formula Φ. If the answer is "no", the formula is unsatisfiable. Otherwise, the question is asked on the partly instantiated formula Φ{x1=TRUE}, that is, Φ with the first variablex1 replaced by TRUE, and simplified accordingly. If the answer is "yes", thenx1=TRUE, otherwisex1=FALSE. Values of other variables can be found subsequently in the same way. In total,n+1 runs of the algorithm are required, wheren is the number of distinct variables in Φ.

This property is used in several theorems in complexity theory:

Algorithms for solving SAT

[edit]
Main article:SAT solver
Exponential complexity of SAT solving vs variable count, clause count, and formula length

Since the SAT problem is NP-complete, only algorithms with exponential worst-case complexity are known for it. In spite of this, efficient and scalable algorithms for SAT were developed during the 2000s and have contributed to dramatic advances in the ability to automatically solve problem instances involving tens of thousands of variables and millions of constraints (i.e. clauses).[3] Examples of such problems inelectronic design automation (EDA) includeformal equivalence checking,model checking,formal verification ofpipelined microprocessors,[20]automatic test pattern generation,routing ofFPGAs,[27]planning, andscheduling problems, and so on. A SAT-solving engine is also considered to be an essential component in theelectronic design automation toolbox.

Major techniques used by modern SAT solvers include theDavis–Putnam–Logemann–Loveland algorithm (or DPLL),conflict-driven clause learning (CDCL), andstochasticlocal search algorithms such asWalkSAT. Almost all SAT solvers include time-outs, so they will terminate in reasonable time even if they cannot find a solution. Different SAT solvers will find different instances easy or hard, and some excel at proving unsatisfiability, and others at finding solutions. Recent attempts have been made to learn an instance's satisfiability using deep learning techniques.[28]

SAT solvers are developed and compared in SAT-solving contests.[29] Modern SAT solvers are also having significant impact on the fields of software verification, constraint solving in artificial intelligence, andoperations research, among others.

Theoretical algorithms with increasingly better worst-case runtime guarantees have been given in the last decades, including anO(1.0638L){\displaystyle O^{*}(1.0638^{L})} algorithm for clause sets of length (total literal count)L{\displaystyle L},[30][31]anO(1.2226m){\displaystyle O^{*}(1.2226^{m})} algorithm for sets ofm{\displaystyle m} clauses,[32][33] and anO(1.32793n){\displaystyle O^{*}(1.32793^{n})} algorithm for 3-SAT withn{\displaystyle n} variables.[34] Here, the notation "O(.){\displaystyle O^{*}(.)}" means "up to a polynomial factor", i.e.O(f(n))=O(f(n)nO(1)){\displaystyle O^{*}(f(n))=O(f(n)n^{O(1)})}. Earlier runtime guarantees are shown in the diagram.

See also

[edit]

Notes

[edit]
  1. ^The SAT problem forarbitrary formulas is NP-complete, too, since it is easily shown to be in NP, and it cannot be easier than SAT for CNF formulas.
  2. ^i.e. at least as hard as every other problem in NP. A decision problem is NP-complete if and only if it is in NP and is NP-hard.
  3. ^i.e. such that one literal is not the negation of the other
  4. ^viz. allmaxterms that can be built withd1,⋯,dk, exceptd1∨⋯∨dk

External links

[edit]
Wikimedia Commons has media related toBoolean satisfiability problem.

References

[edit]
  1. ^Fortnow, L. (2009)."The status of the P versus NP problem"(PDF).Communications of the ACM.52 (9):78–86.doi:10.1145/1562164.1562186.S2CID 5969255.
  2. ^Fortnow, L. (2021)."Fifty Years of P Versus NP and the Possibility of the Impossible"(PDF).Proceedings of ACM Conference (Conference'17).
  3. ^abOhrimenko, Olga; Stuckey, Peter J.; Codish, Michael (2007), "Propagation = Lazy Clause Generation",Principles and Practice of Constraint Programming – CP 2007, Lecture Notes in Computer Science, vol. 4741, pp. 544–558,CiteSeerX 10.1.1.70.5471,doi:10.1007/978-3-540-74970-7_39,ISBN 978-3-540-74969-1,modern SAT solvers can often handle problems with millions of constraints and hundreds of thousands of variables.
  4. ^Hong, Ted; Li, Yanjing; Park, Sung-Boem; Mui, Diana; Lin, David; Kaleq, Ziyad Abdel; Hakim, Nagib; Naeimi, Helia; Gardner, Donald S.; Mitra, Subhasish (November 2010). "QED: Quick Error Detection tests for effective post-silicon validation".2010 IEEE International Test Conference. pp. 1–10.doi:10.1109/TEST.2010.5699215.ISBN 978-1-4244-7206-2.S2CID 7909084.
  5. ^Karp, Richard M. (1972)."Reducibility Among Combinatorial Problems"(PDF). In Raymond E. Miller; James W. Thatcher (eds.).Complexity of Computer Computations. New York: Plenum. pp. 85–103.ISBN 0-306-30707-3. Archived fromthe original(PDF) on 2011-06-29. Retrieved2020-05-07. Here: p.86
  6. ^Aho, Alfred V.; Hopcroft, John E.; Ullman, Jeffrey D. (1974).The Design and Analysis of Computer Algorithms. Addison-Wesley. p. 403.ISBN 0-201-00029-6.
  7. ^Massacci, Fabio; Marraro, Laura (2000-02-01). "Logical Cryptanalysis as a SAT Problem".Journal of Automated Reasoning.24 (1):165–203.doi:10.1023/A:1006326723002.S2CID 3114247.
  8. ^Mironov, Ilya; Zhang, Lintao (2006)."Applications of SAT Solvers to Cryptanalysis of Hash Functions". In Biere, Armin; Gomes, Carla P. (eds.).Theory and Applications of Satisfiability Testing - SAT 2006. Lecture Notes in Computer Science. Vol. 4121. Springer. pp. 102–115.doi:10.1007/11814948_13.ISBN 978-3-540-37207-3.
  9. ^Vizel, Y.; Weissenbacher, G.; Malik, S. (2015). "Boolean Satisfiability Solvers and Their Applications in Model Checking".Proceedings of the IEEE.103 (11):2021–2035.doi:10.1109/JPROC.2015.2455034.S2CID 10190144.
  10. ^Cook, Stephen A. (1971)."The complexity of theorem-proving procedures"(PDF).Proceedings of the third annual ACM symposium on Theory of computing - STOC '71. pp. 151–158.CiteSeerX 10.1.1.406.395.doi:10.1145/800157.805047.S2CID 7573663.Archived(PDF) from the original on 2022-10-09.
  11. ^Levin, Leonid (1973). "Universal search problems (Russian: Универсальные задачи перебора, Universal'nye perebornye zadachi)".Problems of Information Transmission (Russian: Проблемы Передачи Информа́ции, Problemy Peredachi Informatsii).9 (3):115–116.(pdf)(in Russian), translated into English byTrakhtenbrot, B. A. (1984). "A survey of Russian approaches toperebor (brute-force searches) algorithms".Annals of the History of Computing.6 (4):384–400.Bibcode:1984IAHC....6d.384T.doi:10.1109/MAHC.1984.10036.S2CID 950581.
  12. ^Aho, Hopcroft & Ullman (1974), Theorem 10.4.
  13. ^Aho, Hopcroft & Ullman (1974), Theorem 10.5.
  14. ^Schöning, Uwe (Oct 1999)."A probabilistic algorithm for k-SAT and constraint satisfaction problems"(PDF).40th Annual Symposium on Foundations of Computer Science (Cat. No.99CB37039). pp. 410–414.doi:10.1109/SFFCS.1999.814612.ISBN 0-7695-0409-4.S2CID 123177576.Archived(PDF) from the original on 2022-10-09.
  15. ^Selman, Bart; Mitchell, David; Levesque, Hector (1996). "Generating Hard Satisfiability Problems".Artificial Intelligence.81 (1–2):17–29.CiteSeerX 10.1.1.37.7362.doi:10.1016/0004-3702(95)00045-3.
  16. ^Arkin, Esther M.; Banik, Aritra; Carmi, Paz; Citovsky, Gui; Katz, Matthew J.; Mitchell, Joseph S. B.; Simakov, Marina (2018-12-11)."Selecting and covering colored points".Discrete Applied Mathematics.250:75–86.doi:10.1016/j.dam.2018.05.011.ISSN 0166-218X.
  17. ^Buning, H.K.; Karpinski, Marek; Flogel, A. (1995)."Resolution for Quantified Boolean Formulas".Information and Computation.117 (1). Elsevier:12–18.doi:10.1006/inco.1995.1025.
  18. ^abSchaefer, Thomas J. (1978)."The complexity of satisfiability problems"(PDF).Proceedings of the 10th Annual ACM Symposium on Theory of Computing. San Diego, California. pp. 216–226.CiteSeerX 10.1.1.393.8951.doi:10.1145/800133.804350.
  19. ^Moore, Cristopher; Mertens, Stephan (2011),The Nature of Computation, Oxford University Press, p. 366,ISBN 9780199233212.
  20. ^abR. E. Bryant, S. M. German, and M. N. Velev,Microprocessor Verification Using Efficient Decision Procedures for a Logic of Equality with Uninterpreted Functions, in Analytic Tableaux and Related Methods, pp. 1–13, 1999.
  21. ^Akmal, Shyan; Williams, Ryan (2022).MAJORITY-3SAT (and Related Problems) in Polynomial Time. pp. 1033–1043.arXiv:2107.02748.doi:10.1109/FOCS52979.2021.00103.ISBN 978-1-6654-2055-6.
  22. ^Blass, Andreas; Gurevich, Yuri (1982-10-01)."On the unique satisfiability problem".Information and Control.55 (1):80–88.doi:10.1016/S0019-9958(82)90439-9.hdl:2027.42/23842.ISSN 0019-9958.
  23. ^"Complexity Zoo:U - Complexity Zoo".complexityzoo.uwaterloo.ca. Archived fromthe original on 2019-07-09. Retrieved2019-12-05.
  24. ^Kozen, Dexter C. (2006)."Supplementary Lecture F: Unique Satisfiability".Theory of Computation. Texts in Computer Science. Springer. p. 180.ISBN 9781846282973.
  25. ^Valiant, L.; Vazirani, V. (1986)."NP is as easy as detecting unique solutions"(PDF).Theoretical Computer Science.47:85–93.doi:10.1016/0304-3975(86)90135-0.
  26. ^Buldas, Ahto; Lenin, Aleksandr; Willemson, Jan; Charnamord, Anton (2017). "Simple Infeasibility Certificates for Attack Trees". In Obana, Satoshi; Chida, Koji (eds.).Advances in Information and Computer Security. Lecture Notes in Computer Science. Vol. 10418. Springer International Publishing. pp. 39–55.doi:10.1007/978-3-319-64200-0_3.ISBN 9783319642000.
  27. ^Gi-Joon Nam; Sakallah, K. A.; Rutenbar, R. A. (2002)."A new FPGA detailed routing approach via search-based Boolean satisfiability"(PDF).IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems.21 (6): 674.Bibcode:2002ITCAD..21..674N.doi:10.1109/TCAD.2002.1004311. Archived fromthe original(PDF) on 2016-03-15. Retrieved2015-09-04.
  28. ^Selsam, Daniel; Lamm, Matthew; Bünz, Benedikt;Liang, Percy; de Moura, Leonardo; Dill, David L. (11 March 2019). "Learning a SAT Solver from Single-Bit Supervision".arXiv:1802.03685 [cs.AI].
  29. ^"The international SAT Competitions web page". Retrieved2007-11-15.
  30. ^Junqiang Peng and Mingyu Xiao (Aug 2022). Further improvements for SAT in terms of formula length (Technical Report).arXiv:2105.06131.
  31. ^Junqiang Peng and Mingyu Xiao (Oct 2023). "Further improvements for SAT in terms of formula length".Information and Computation.294 105085: Article number 105085.doi:10.1016/j.ic.2023.105085.
  32. ^Huairui Chu and Mingyu Xiao and Zhe Zhang (Jul 2020). An improved upper bound for SAT (Technical Report). arxiv.arXiv:2007.03829.
  33. ^Huairui Chu and Mingyu Xiao and Zhe Zhang (Oct 2021). "An improved upper bound for SAT".Theoretical Computer Science.887:51–62.doi:10.1016/j.tcs.2021.06.045.
  34. ^S. Liu (Jul 2018). I. Chatzigiannakis and C. Kaklamanis and D. Marx and D. Sannella (ed.).Chain, Generalization of Covering Code, and Deterministic Algorithm fork-SAT. Proc. ICALP. LIPIcs. Vol. 107. Schloss Dagstuhl. pp. 88:1–13.doi:10.4230/LIPIcs.ICALP.2018.88.

Sources

[edit]

Further reading

[edit]

(by date of publication)

Major fields
Logics
Theories
Foundations
Lists
Topics
Other
Retrieved from "https://en.wikipedia.org/w/index.php?title=Boolean_satisfiability_problem&oldid=1335700096"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp