constraintpropagating
Constraintpropagating (often written as constraint propagation) refers to the activity of propagating constraints through a problem representation in order to prune variable domains and reduce the search space. In a constraint satisfaction problem, a solver maintains variables with finite domains and a set of constraints. When domains change, constraintpropagating examines the constraints related to the affected variables and removes values that cannot participate in any solution, iterating until no more reductions are possible or a domain becomes empty.
Propagating constraints relies on local consistency techniques. Arc consistency enforces that every value of a variable
Many solvers implement global constraints, which encapsulate common patterns (for example AllDifferent or cumulative) with specialized
Constraintpropagating does not by itself solve a problem; it is combined with search. Strong propagation reduces