Statement
k-SAT Problem
Given a boolean function
in CNF with variables and clauses of size at most . Is there a true/false assignment to the variables that satisfies . If yes then output it, otherwise say no.
Solutions
- 2-SAT algorithm using SCC
- This runs in
. - Only solves problems with clauses of size at most 2.
- This runs in
Related
- SAT problem
- The more general form of this problem