Is Max 3-SAT a W[1] hard problem, parmeterized by some parmeterize? I can't find the relevant literature.
I accept any parameterization.
Is Max 3-SAT a W[1] hard problem, parmeterized by some parmeterize? I can't find the relevant literature.
I accept any parameterization.
The W hierarchy consists of classes of decision problems. The decision versions of MAX-SAT problems are just slightly disguised SAT problems. For example, to transform the decision problem "is there a variable assignment that satisfies k clauses?", add a unique variable to each CNF clause, then add a constraint that demands that at least k of the unique variables be set false. (All this can be done in polynomial time.) If the resulting SAT instance is satisfiable, the answer to the MAX-SAT problem is yes, otherwise the answer is no.
Since SAT Karp-reduces to CLIQUE and CLIQUE is W[1]-hard, SAT must be as well, and therefore so is the decision version of MAX-SAT.