In mathematics, a constraint is a condition of an optimization problem that the solution must satisfy. There are several types of constraints - primarily equality constraints, inequality constraints, and integer constraints. The set of candidate solutions that satisfy all constraints is called the feasible set.[1]
The following is a simple optimization problem:
minf(x)=
4 | |
x | |
2 |
subject to
x1\ge1
and
x2=1,
where
x
In this example, the first line defines the function to be minimized (called the objective function, loss function, or cost function). The second and third lines define two constraints, the first of which is an inequality constraint and the second of which is an equality constraint. These two constraints are hard constraints, meaning that it is required that they be satisfied; they define the feasible set of candidate solutions.
Without the constraints, the solution would be (0,0), where
f(x)
x=(1,1)
f(x)
If the problem mandates that the constraints be satisfied, as in the above discussion, the constraints are sometimes referred to as hard constraints. However, in some problems, called flexible constraint satisfaction problems, it is preferred but not required that certain constraints be satisfied; such non-mandatory constraints are known as soft constraints. Soft constraints arise in, for example, preference-based planning. In a MAX-CSP problem, a number of constraints are allowed to be violated, and the quality of a solution is measured by the number of satisfied constraints.
Global constraints[2] are constraints representing a specific relation on a number of variables, taken altogether. Some of them, such as the alldifferent
constraint, can be rewritten as a conjunction of atomic constraints in a simpler language: the alldifferent
constraint holds on n variables
x1...xn
x1 ≠ x2,x1 ≠ x3...,x2 ≠ x3,x2 ≠ x4...xn-1 ≠ xn
[[Regular constraint|regular]]
constraint expresses that a sequence of variables is accepted by a deterministic finite automaton. Global constraints are used[3] to simplify the modeling of constraint satisfaction problems, to extend the expressivity of constraint languages, and also to improve the constraint resolution: indeed, by considering the variables altogether, infeasible situations can be seen earlier in the solving process. Many of the global constraints are referenced into an online catalog.