Hidden transformation

From Wikipedia, the free encyclopedia

The hidden transformation reformulates a constraint satisfaction problem in such a way all constraints have at most two variables. The new problem is satisfiable if and only if the original problem was, and solutions can be converted easily from one problem to the other.

There are a number of algorithms for constraint satisfaction that work only on constraints that have at most two variables. If a problem has constraints with a larger arity (number of variables), conversion into a problem made of binary constraints allows for execution of these solving algorithms. Constraints with one, two, or more variables are called unary, binary, or higher-order constraints. The number of variables in a constraint is called its arity.

The hidden transformation replaces each constraint with a new, hidden variable.

The hidden transformation converts an arbitrary constraint satisfaction problem into a binary one. The transformation is similar to that generating the dual problem. The problem is added new variables, one for each constraint of the original problem. The domain of each such variable is the set of satisfying tuples of the corresponding constraint. The constraints of the new problem enforce the value of the original variables to be consistent with the values of the new variables. For example, if the new variables , corresponding to the old constraint can assume values and , two new constraints are added: the first one enforces to take value if value if , and vice versa. The second condition enforces a similar condition for variable .

The graph representing the result of this transformation is bipartite, as all constraints are between a new and an old variable. Moreover, the constraints are functional: for any given value of a new variable, only one value of the old variable may satisfy the constraint.

References[edit]

  • Fahiem Bacchus; Xinguang Chen; Peter van Beek; Toby Walsh (2002). "Binary vs. Non-Binary Constraints" (PDF). Artificial Intelligence. 140 (1/2): 1–37. doi:10.1016/S0004-3702(02)00210-2.