5 - Branch&Bound algorithm Flashcards

1
Q

Overview of different types of programs

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

Enumeration tree (or solution tree)

defintion

A

The enumeration tree (or solution tree) is the tree representing the branching into subproblems with branches (arcs) connecting one node to two subsequent nodes corresponding to the subproblems. This tree continues growing branches iteration by iteration. The variable used to do this branching at any iteration by assigning values to the variable is the branching variable.

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

Branch-and-Bound algorithm for binary programs

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

Branch-and-Bound algorithm for mixed integer programs

Changes compared to B&B for binary programs

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

Branch-and-Bound algorithm for MIPs

general

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

Branch-and-Bound algorithm for MIPs

general

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

Node selection rules

A

1 Depth-first search: select a child of the preceding node after branching, and backtracks (moves back in the enumeration tree to select the next node) as few nodes as possible after pruning a node

2 Breadth-first search: select nodes that are closest to the top of the tree

3 Best-bound search: select the node with the best (lowest if min, highest if max) lower bound

4 Combinations of the previous ones, such as:
- Breadth-first search for a certain number of nodes followed by depth-first search
- Depth-first search as long as branching is performed, and then best-bound after pruning a node

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

Heuristic choice of the node selection rule

A

1 Depth-first search: obtain solutions quickly (more branching constraints), risk that solution quality suffers

2 Breath-first search avoids this risk and works in parallel on all branches of the tree, but slow to obtain feasible solutions

3 Best-bound search: minimizes number of nodes treated to prove optimality

4 Combination of rules: good compromise

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

Branching rules

A

1 Lexicographical order

2 Most fractional (close to one-half): select the variable whose fractional part is
farthest from being integer (ex. 3.6 more fractional than 2.3)

3 Sophisticated rules detecting the impact of the branching variable on the lower bound values

Branching priority: branch first on variables with major impact on the solution quality

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

Convex hull

A

Convex hull is the tightest valid formulation or valid LP relaxation for X
(conv(X) ⊆ PX , for any formulation PX of X)

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

Valid inequalities

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

Facet-defining valid inequalities

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

A priori reformulation

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

Reformulation

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

Extended Reformulation

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