L17: Loopback Schemes, Backjumping Flashcards

1
Q

What is a look-ahead scheme?

A

Invoked when an algorithm is preparing to extend the current partial assignment.
Include:
- Variable/value ordering heuristics.
- Propagation schemes, such as MAC, FC.

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

What is a look-back scheme?

A

Invoked when dead-end encountered, algorithm prepares for backtracking step.

There are 2 types of look-back schemes:
- Conflict-recording
- Backjumping

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

How do we classify backtrack?

A

Backtrack is both the simplest lookahead scheme:
- Just check against past assignments.

And the simplest look-back scheme:
- Backtrack chronologically to the previous variable.

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

Reminder: What is thrashing?

A

Repeated failure for the same reason.
We can reduce thrashing with variable ordering- but generally the ‘right’ ordering is unknown.

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

What is backjumping?

A

Replace chronological backtracking with a
jump back to the variable that is causing the dead-end.
How this variable is determined depends on the look-forward scheme (e.g. BT vs FC).

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

What is the limitation of backjumping?

A

After one jump, backjumping resorts to chronological backtracking.
This is because it jups back to the maximum level checked against. When an assignment to Xdepth is consistent, checks must have been made up to Xdepth - 1.

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

Why do we not jump back to the maximum level failed against?

A

This leads to incompleteness, meaning we may miss the solution.

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

What is conflict-directed backjumping?

A

When trying assignments to xk, maintain the set of assignments failed against.
When jumping back from xk to xi, combine their conflict sets.
- Avoids forgetting other assignments that were conflicting with xk.
- Allows multiple backward jumps.

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