Week 10 Flow Flashcards

1
Q

Directed graph

A

A directed graph (or quiver) is a quadruple (V, E, h, t)
consisting of a pair of sets V (vertices) and E (edges or arrows) and two maps h, t : E →V declaring the vertex at
the head and tail of each arrow respectively.

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

Flow network

A

A flow network is a directed graph G = (V, E, h, t) together
with a function c : E →R+ indicating the capacity of each
edge.

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

Feasible flow

A

A feasible flow (or simply a flow) is a function f : E →R≥0
assigning a non-negative value to each edge satisfying:
1) 0 ≤f (e) ≤c(e) for every edge e ∈E (flow cannot exceed capacity);
2) for all vertices except the source s and sink t, the
outflow at each vertex is equal to the inflow (no leakages).

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

Maximum flow

A

A maximum flow (or maximal flow) is a feasible flow whose
value is maximal, that is, f is a maximal flow if v(f ) ≥v(f ′)
for all feasible flows f′.

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