3-Constraint satisfaction problems Flashcards

1
Q
  1. backtracking search defini
A

Is a depth-first search for CSPs with single variable assignments
It chooses values for a not assigned variable at each level and backtracks when a variable has no legal values left ti assign.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. forward checking
A

Keep track of remaining legal values for unassigned variables and terminate search when a variable has no legal values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

3.AC-3 algorithm

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. what is c-semiring? and framework for soft CSPs
A

c-semiring is a set in which each assignment of values to its variables has an associated preference value.

soft csp framework: represented by a tuple <a>
A: set that specifies the preference values to be associated with each tuple, i.e. with each assignment of values of the variables.
+: model constraint projection
x: model constraint combination
𝟎: worst preference value (0 ∈ 𝐴)
𝟏: best preference values (1 ∈ 𝐴) </a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  1. Fuzzy constraint satisfaction problems (FCCPs)
A

〈𝐴 = [0,1], += max,×= min, 0,1〉

0: worst preference
1: best preference

optimization criterion = maximize the minimum preference

How well did you know this?
1
Not at all
2
3
4
5
Perfectly