Constraints

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/23

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards

Adversarial Search

Search Strategy that incorporates opponentā€™s objectives into their own - used in competitive multi-agent environments

2
New cards

Minimax

A decision rule that minimises loss by maximising an adversaryā€™s gains

1) Evaluate all the moves you can make
2) For each move, assume the opponents plays optimally to counter it
3) Among these worse case scenarios, pick the move that results in the maximum possible gain in the worse case

3
New cards

Constraint

A proposition that defines some restriction on one or more variables.
Constraint is satisfied if the proposition is true.

4
New cards

Linear programming

Minimising constraint problems where the objective is a linear function and the constraints can be represented as linear inequalities.
i.e. Minimising 30A + 55B
Subject to -10A -12B <= -80
and 5A + 2B <= 20

5
New cards

Constraint Satisfaction Problem (CSP)

A problem where values for a set of variables must be found while satisfying a given set of constraints.

6
New cards

Assignment

All nodes have been assigned a value

7
New cards

State

Some (partial) assignment of the CSP.

8
New cards

State space

The set of all possible assignments of nodes

9
New cards

Domain

The set of all possible values a variable can be assigned

10
New cards

Partial assignment

Where only some variables have an assigned value

11
New cards

Consistent

A (partial) assignment is consistent if all assigned values satisfy the constraints.

12
New cards

Complete

An assignment is complete if all values satisfy the constraints.

*NOTE* a complete assignment is always consistent, but a consistent assignment is not always complete

13
New cards

Backtracking for CPSā€™s

An algorithm that incrementally assigns values to variables while ensuring constraints are satisfied.
If conflict arises, it backtracks by undoing the last assignment and trying a different value.

14
New cards

Heuristics for selecting unassigned variables in CSPā€™s

Minimum remaining value (MRV):
Select the variable with the smallest domain

ā€¦. if two variables have equally small domains

Degree
Select the variable with the highest number of constraints (may be the node with the most connections)

15
New cards

Heuristics for Domain Ordering

Choose the value that eliminates the fewest options for neighbouring variables

16
New cards

Unary Constraint

A constraint involving only one variable

i.e. A >= 0

17
New cards

Binary constraint

A constraint involving only two variables

i.e. Aā‰ B

18
New cards

Global constraint

A constraint involving more than two variables

19
New cards

Node consistency

When all values in a variables domain satisfy that variables unary constraints

i.e. Domain = {1, 2, 3, 4}
Variable = X
Constraint X > 2
enforcing node consistencyā€¦
new domain for X = {3, 4}

reason for enforcing node consistency - Shrinks the domain before the search starts making the CSP easier to solve.

20
New cards

Arc consistency

When all values in a variables domain satisfy that variables binary constraints

21
New cards

Constraint propagation

An approach that reduces the number of values a variable can take by propagating constraints through the factor graph

*Node and Arc consistency are both examples of constraint propagation*

22
New cards

Hard constraints

A constraint that must be satisfied in order for a CSP to be solved

23
New cards

Soft constraints

A constraint that may be partially satisfied in order for a CSP to be solved

24
New cards

AC-3 (Arc Consistency - 3)

AC-3 is an algorithm used in CSPā€™s to enforce Arc consistency. It is built around 2 main functions:

.revise(f, A, B) - Ensures A is arc consistent with B by removing values from Aā€™s domain if they do not satisfy f(A, B)
.AC3(csp) - The main loop which iterates over all constraints and applies ā€˜reviseā€˜ until no more changes occur.