2023-02-04 21:06:34 +01:00
|
|
|
"""
|
|
|
|
Algorithm for finding a maximum weight matching in general graphs.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import math
|
2023-02-06 15:39:27 +01:00
|
|
|
from typing import NamedTuple, Optional
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
def maximum_weight_matching(
|
|
|
|
edges: list[tuple[int, int, int|float]]
|
|
|
|
) -> list[tuple[int, int]]:
|
|
|
|
"""Compute a maximum-weighted matching in the general undirected weighted
|
|
|
|
graph given by "edges".
|
|
|
|
|
|
|
|
The graph is specified as a list of edges, each edge specified as a tuple
|
|
|
|
of its two vertices and the edge weight.
|
|
|
|
There may be at most one edge between any pair of vertices.
|
|
|
|
No vertex may have an edge to itself.
|
|
|
|
The graph may be non-connected (i.e. contain multiple components).
|
|
|
|
|
|
|
|
Vertices are indexed by consecutive, non-negative integers, such that
|
|
|
|
the first vertex has index 0 and the last vertex has index (n-1).
|
|
|
|
Edge weights may be integers or floating point numbers.
|
|
|
|
|
|
|
|
Isolated vertices (not incident to any edge) are allowed, but not
|
|
|
|
recommended since such vertices consume time and memory but have
|
|
|
|
no effect on the maximum-weight matching.
|
2023-02-06 12:35:35 +01:00
|
|
|
Edges with negative weight are ignored.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
This function takes time O(n**3), where "n" is the number of vertices.
|
|
|
|
This function uses O(n + m) memory, where "m" is the number of edges.
|
|
|
|
|
|
|
|
Parameters:
|
2023-02-07 11:23:42 +01:00
|
|
|
edges: List of edges, each edge specified as a tuple "(x, y, w)"
|
|
|
|
where "x" and "y" are vertex indices and "w" is the edge weight.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
List of pairs of matched vertex indices.
|
2023-02-07 11:23:42 +01:00
|
|
|
This is a subset of the edges in the graph.
|
|
|
|
It contains a tuple "(x, y)" if vertex "x" is matched to vertex "y".
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
ValueError: If the input does not satisfy the constraints.
|
|
|
|
TypeError: If the input contains invalid data types.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Check that the input meets all constraints.
|
|
|
|
_check_input_types(edges)
|
|
|
|
_check_input_graph(edges)
|
|
|
|
|
2023-02-06 19:58:27 +01:00
|
|
|
# Remove edges with negative weight.
|
|
|
|
edges = _remove_negative_weight_edges(edges)
|
2023-02-06 12:35:35 +01:00
|
|
|
|
2023-02-04 21:06:34 +01:00
|
|
|
# Special case for empty graphs.
|
|
|
|
if not edges:
|
|
|
|
return []
|
|
|
|
|
|
|
|
# Initialize graph representation.
|
|
|
|
graph = _GraphInfo(edges)
|
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Initialize the matching algorithm.
|
|
|
|
ctx = _MatchingContext(graph)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
# Improve the solution until no further improvement is possible.
|
|
|
|
#
|
|
|
|
# Each successful pass through this loop increases the number
|
|
|
|
# of matched edges by 1.
|
|
|
|
#
|
|
|
|
# This loop runs through at most (n/2 + 1) iterations.
|
|
|
|
# Each iteration takes time O(n**2).
|
2023-02-06 22:33:26 +01:00
|
|
|
while ctx.run_stage():
|
2023-02-04 21:06:34 +01:00
|
|
|
pass
|
|
|
|
|
|
|
|
# Extract the final solution.
|
|
|
|
pairs: list[tuple[int, int]] = [
|
2023-02-07 11:23:42 +01:00
|
|
|
(x, y) for (x, y, _w) in edges if ctx.vertex_mate[x] == y]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
# Verify that the matching is optimal.
|
2023-02-08 21:29:56 +01:00
|
|
|
# This is just a safeguard; the verification will always pass unless
|
|
|
|
# there is a bug in the matching algorithm.
|
|
|
|
# Verification only works reliably for integer weights.
|
2023-02-04 21:06:34 +01:00
|
|
|
if graph.integer_weights:
|
2023-02-06 22:33:26 +01:00
|
|
|
_verify_optimum(ctx)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
return pairs
|
|
|
|
|
|
|
|
|
|
|
|
def adjust_weights_for_maximum_cardinality_matching(
|
|
|
|
edges: list[tuple[int, int, int|float]]
|
|
|
|
) -> list[tuple[int, int, int|float]]:
|
|
|
|
"""Adjust edge weights such that the maximum-weight matching of
|
|
|
|
the adjusted graph is a maximum-cardinality matching, equal to
|
|
|
|
a matching in the original graph that has maximum weight out of all
|
|
|
|
matchings with maximum cardinality.
|
|
|
|
|
|
|
|
The graph is specified as a list of edges, each edge specified as a tuple
|
|
|
|
of its two vertices and the edge weight.
|
|
|
|
|
|
|
|
Vertices are indexed by consecutive, non-negative integers, such that
|
|
|
|
the first vertex has index 0 and the last vertex has index (n-1).
|
|
|
|
Edge weights may be integers or floating point numbers.
|
|
|
|
Negative edge weights are allowed.
|
|
|
|
|
|
|
|
This function increases all edge weights by an equal amount such that
|
|
|
|
the adjusted weights satisfy the following conditions:
|
|
|
|
- All edge weights are positive;
|
|
|
|
- The minimum edge weight is at least "n" times the difference between
|
|
|
|
maximum and minimum edge weight.
|
|
|
|
|
|
|
|
These conditions ensure that a maximum-cardinality matching will be found:
|
|
|
|
The weight of any non-maximum-cardinality matching can be increased by
|
|
|
|
matching an additional edge, even if the new edge has minimum edge weight
|
|
|
|
and causes all other matched edges to degrade from maximum to minimum
|
|
|
|
edge weight.
|
|
|
|
|
|
|
|
Since we are only considering maximum-cardinality matchings, increasing
|
|
|
|
all edge weights by an equal amount will not change the set of edges
|
|
|
|
that makes up the maximum-weight matching.
|
|
|
|
|
|
|
|
This function increases edge weights by an amount that is proportional
|
|
|
|
to the product of the unadjusted weight range and the number of vertices
|
|
|
|
in the graph. In case of a big graph with floating point weights, this
|
|
|
|
may introduce rounding errors in the weights.
|
|
|
|
|
|
|
|
This function takes time O(m), where "m" is the number of edges.
|
|
|
|
|
|
|
|
Parameters:
|
2023-02-07 11:23:42 +01:00
|
|
|
edges: List of edges, each edge specified as a tuple "(x, y, w)"
|
|
|
|
where "x" and "y" are vertex indices and "w" is the edge weight.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
List of edges with adjusted weights. If no adjustments are necessary,
|
|
|
|
the input list instance may be returned.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
ValueError: If the input does not satisfy the constraints.
|
|
|
|
TypeError: If the input contains invalid data types.
|
|
|
|
"""
|
|
|
|
|
|
|
|
_check_input_types(edges)
|
|
|
|
|
|
|
|
# Don't worry about empty graphs:
|
|
|
|
if not edges:
|
|
|
|
return edges
|
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
num_vertex = 1 + max(max(x, y) for (x, y, _w) in edges)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
min_weight = min(w for (_x, _y, w) in edges)
|
|
|
|
max_weight = max(w for (_x, _y, w) in edges)
|
2023-02-04 21:06:34 +01:00
|
|
|
weight_range = max_weight - min_weight
|
|
|
|
|
|
|
|
# Do nothing if the weights already ensure a maximum-cardinality matching.
|
|
|
|
if min_weight > 0 and min_weight >= num_vertex * weight_range:
|
|
|
|
return edges
|
|
|
|
|
|
|
|
delta: int|float
|
|
|
|
if weight_range > 0:
|
|
|
|
# Increase weights to make minimum edge weight large enough
|
|
|
|
# to improve any non-maximum-cardinality matching.
|
|
|
|
delta = num_vertex * weight_range - min_weight
|
|
|
|
else:
|
|
|
|
# All weights are the same. Increase weights to make them positive.
|
|
|
|
delta = 1 - min_weight
|
|
|
|
|
|
|
|
assert delta >= 0
|
|
|
|
|
|
|
|
# Increase all edge weights by "delta".
|
2023-02-07 11:23:42 +01:00
|
|
|
return [(x, y, w + delta) for (x, y, w) in edges]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
def _check_input_types(edges: list[tuple[int, int, int|float]]) -> None:
|
|
|
|
"""Check that the input consists of valid data types and valid
|
|
|
|
numerical ranges.
|
|
|
|
|
|
|
|
This function takes time O(m).
|
|
|
|
|
|
|
|
Parameters:
|
2023-02-07 11:23:42 +01:00
|
|
|
edges: List of edges, each edge specified as a tuple "(x, y, w)"
|
|
|
|
where "x" and "y" are edge indices and "w" is the edge weight.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
ValueError: If the input does not satisfy the constraints.
|
|
|
|
TypeError: If the input contains invalid data types.
|
|
|
|
"""
|
|
|
|
|
|
|
|
float_limit = sys.float_info.max / 4
|
|
|
|
|
|
|
|
if not isinstance(edges, list):
|
|
|
|
raise TypeError('"edges" must be a list')
|
|
|
|
|
|
|
|
for e in edges:
|
|
|
|
if (not isinstance(e, tuple)) or (len(e) != 3):
|
|
|
|
raise TypeError("Each edge must be specified as a 3-tuple")
|
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
(x, y, w) = e
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
if (not isinstance(x, int)) or (not isinstance(y, int)):
|
2023-02-04 21:06:34 +01:00
|
|
|
raise TypeError("Edge endpoints must be integers")
|
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
if (x < 0) or (y < 0):
|
2023-02-04 21:06:34 +01:00
|
|
|
raise ValueError("Edge endpoints must be non-negative integers")
|
|
|
|
|
2023-02-06 17:39:03 +01:00
|
|
|
if not isinstance(w, (int, float)):
|
2023-02-04 21:06:34 +01:00
|
|
|
raise TypeError(
|
|
|
|
"Edge weights must be integers or floating point numbers")
|
|
|
|
|
2023-02-06 17:39:03 +01:00
|
|
|
if isinstance(w, float):
|
|
|
|
if not math.isfinite(w):
|
2023-02-04 21:06:34 +01:00
|
|
|
raise ValueError("Edge weights must be finite numbers")
|
|
|
|
|
|
|
|
# Check that this edge weight will not cause our dual variable
|
|
|
|
# calculations to exceed the valid floating point range.
|
2023-02-06 17:39:03 +01:00
|
|
|
if w > float_limit:
|
2023-02-04 21:06:34 +01:00
|
|
|
raise ValueError("Floating point edge weights must be"
|
|
|
|
f" less than {float_limit:g}")
|
|
|
|
|
|
|
|
|
|
|
|
def _check_input_graph(edges: list[tuple[int, int, int|float]]) -> None:
|
|
|
|
"""Check that the input is a valid graph, without any multi-edges and
|
|
|
|
without any self-edges.
|
|
|
|
|
|
|
|
This function takes time O(m * log(m)).
|
|
|
|
|
|
|
|
Parameters:
|
2023-02-07 11:23:42 +01:00
|
|
|
edges: List of edges, each edge specified as a tuple "(x, y, w)"
|
|
|
|
where "x" and "y" are edge indices and "w" is the edge weight.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
ValueError: If the input does not satisfy the constraints.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Check that the graph has no self-edges.
|
2023-02-07 11:23:42 +01:00
|
|
|
for (x, y, _w) in edges:
|
|
|
|
if x == y:
|
2023-02-04 21:06:34 +01:00
|
|
|
raise ValueError("Self-edges are not supported")
|
|
|
|
|
|
|
|
# Check that the graph does not have multi-edges.
|
|
|
|
# Using a set() would be more straightforward, but the runtime bounds
|
|
|
|
# of the Python set type are not clearly specified.
|
|
|
|
# Sorting provides guaranteed O(m * log(m)) run time.
|
2023-02-07 11:23:42 +01:00
|
|
|
edge_endpoints = [((x, y) if (x < y) else (y, x)) for (x, y, _w) in edges]
|
2023-02-04 21:06:34 +01:00
|
|
|
edge_endpoints.sort()
|
|
|
|
|
|
|
|
for i in range(len(edge_endpoints) - 1):
|
|
|
|
if edge_endpoints[i] == edge_endpoints[i+1]:
|
|
|
|
raise ValueError(f"Duplicate edge {edge_endpoints[i]}")
|
|
|
|
|
|
|
|
|
2023-02-06 19:58:27 +01:00
|
|
|
def _remove_negative_weight_edges(
|
|
|
|
edges: list[tuple[int, int, int|float]]
|
|
|
|
) -> list[tuple[int, int, int|float]]:
|
|
|
|
"""Remove edges with negative weight.
|
|
|
|
|
|
|
|
This does not change the solution of the maximum-weight matching problem,
|
|
|
|
but prevents complications in the algorithm.
|
|
|
|
"""
|
|
|
|
if any(e[2] < 0 for e in edges):
|
|
|
|
return [e for e in edges if e[2] >= 0]
|
|
|
|
else:
|
|
|
|
return edges
|
|
|
|
|
|
|
|
|
2023-02-04 21:06:34 +01:00
|
|
|
class _GraphInfo:
|
|
|
|
"""Representation of the input graph.
|
|
|
|
|
|
|
|
These data remain unchanged while the algorithm runs.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, edges: list[tuple[int, int, int|float]]) -> None:
|
|
|
|
"""Initialize the graph representation and prepare an adjacency list.
|
|
|
|
|
|
|
|
This function takes time O(n + m).
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Vertices are indexed by integers in range 0 .. n-1.
|
|
|
|
# Edges are indexed by integers in range 0 .. m-1.
|
|
|
|
#
|
|
|
|
# Each edge is incident on two vertices.
|
|
|
|
# Each edge also has a weight.
|
|
|
|
#
|
2023-02-07 11:23:42 +01:00
|
|
|
# "edges[e] = (x, y, w)" where
|
2023-02-04 21:06:34 +01:00
|
|
|
# "e" is an edge index;
|
2023-02-07 11:23:42 +01:00
|
|
|
# "x" and "y" are vertex indices of the incident vertices;
|
2023-02-06 17:39:03 +01:00
|
|
|
# "w" is the edge weight.
|
2023-02-04 21:06:34 +01:00
|
|
|
#
|
|
|
|
# These data remain unchanged while the algorithm runs.
|
|
|
|
self.edges: list[tuple[int, int, int|float]] = edges
|
|
|
|
|
|
|
|
# num_vertex = the number of vertices.
|
|
|
|
if edges:
|
2023-02-07 11:23:42 +01:00
|
|
|
self.num_vertex = 1 + max(max(x, y) for (x, y, _w) in edges)
|
2023-02-04 21:06:34 +01:00
|
|
|
else:
|
|
|
|
self.num_vertex = 0
|
|
|
|
|
|
|
|
# Each vertex is incident to zero or more edges.
|
|
|
|
#
|
2023-02-08 16:17:54 +01:00
|
|
|
# "adjacent_edges[x]" is the list of edge indices of edges incident
|
|
|
|
# to the vertex with index "x".
|
2023-02-04 21:06:34 +01:00
|
|
|
#
|
|
|
|
# These data remain unchanged while the algorithm runs.
|
|
|
|
self.adjacent_edges: list[list[int]] = [
|
|
|
|
[] for v in range(self.num_vertex)]
|
2023-02-07 11:23:42 +01:00
|
|
|
for (e, (x, y, _w)) in enumerate(edges):
|
|
|
|
self.adjacent_edges[x].append(e)
|
|
|
|
self.adjacent_edges[y].append(e)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
# Determine whether _all_ weights are integers.
|
|
|
|
# In this case we can avoid floating point computations entirely.
|
2023-02-06 17:39:03 +01:00
|
|
|
self.integer_weights: bool = all(isinstance(w, int)
|
2023-02-07 11:23:42 +01:00
|
|
|
for (_x, _y, w) in edges)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Each vertex may be labeled "S" (outer) or "T" (inner) or be unlabeled.
|
|
|
|
_LABEL_NONE = 0
|
|
|
|
_LABEL_S = 1
|
|
|
|
_LABEL_T = 2
|
|
|
|
|
|
|
|
|
2023-02-04 21:06:34 +01:00
|
|
|
class _Blossom:
|
2023-02-08 16:17:54 +01:00
|
|
|
"""Represents a blossom in a partially matched graph.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
A blossom is an odd-length alternating cycle over sub-blossoms.
|
|
|
|
An alternating path consists of alternating matched and unmatched edges.
|
|
|
|
An alternating cycle is an alternating path that starts and ends in
|
|
|
|
the same sub-blossom.
|
|
|
|
|
|
|
|
A single vertex by itself is also a blossom: a "trivial blossom".
|
2023-02-08 16:17:54 +01:00
|
|
|
|
|
|
|
An instance of this class represents either a trivial blossom,
|
|
|
|
or a non-trivial blossom which consists of multiple sub-blossoms.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
Blossoms are recursive structures: A non-trivial blossoms contains
|
|
|
|
sub-blossoms, which may themselves contain sub-blossoms etc.
|
|
|
|
|
2023-02-05 19:33:13 +01:00
|
|
|
Each blossom contains exactly one vertex that is not matched to another
|
|
|
|
vertex in the same blossom. This is the "base vertex" of the blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, base_vertex: int) -> None:
|
|
|
|
"""Initialize a new blossom."""
|
|
|
|
|
|
|
|
# If this is not a top-level blossom,
|
|
|
|
# "parent" is the blossom in which this blossom is a sub-blossom.
|
|
|
|
#
|
|
|
|
# If this is a top-level blossom,
|
|
|
|
# "parent = None".
|
|
|
|
self.parent: Optional[_NonTrivialBlossom] = None
|
|
|
|
|
|
|
|
# "base_vertex" is the vertex index of the base of the blossom.
|
|
|
|
# This is the unique vertex which is contained in the blossom
|
|
|
|
# but not matched to another vertex in the same blossom.
|
|
|
|
#
|
|
|
|
# For trivial blossoms, the base vertex is simply the only
|
|
|
|
# vertex in the blossom.
|
|
|
|
self.base_vertex: int = base_vertex
|
|
|
|
|
|
|
|
# A top-level blossom that are part of an alternating tree,
|
|
|
|
# has labels S or T. Unlabeled top-level blossoms are not (yet)
|
|
|
|
# part of any alternating tree.
|
|
|
|
self.label: int = _LABEL_NONE
|
|
|
|
|
|
|
|
# Labeled top-level blossoms keep track of the edge through which
|
|
|
|
# they are attached to an alternating tree.
|
|
|
|
#
|
|
|
|
# "tree_edge = (x, y)" if the blossom is attached to an alternating
|
|
|
|
# tree via edge "(x, y)" and vertex "y" is contained in the blossom.
|
|
|
|
#
|
|
|
|
# "tree_edge = None" if the blossom is the root of an alternating tree.
|
|
|
|
self.tree_edge: Optional[tuple[int, int]] = None
|
|
|
|
|
|
|
|
# For a top-level S-blossom,
|
|
|
|
# "best_edge" is the edge index of the least-slack edge to
|
|
|
|
# a different S-blossom, or -1 if no such edge has been found.
|
|
|
|
self.best_edge: int = -1
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# "marker" is a temporary variable used to discover common
|
|
|
|
# ancestors in the blossom tree. It is normally False, except
|
|
|
|
# when used by "trace_alternating_paths()".
|
2023-02-10 13:24:36 +01:00
|
|
|
# It is also used by "expand_zero_dual_blossoms()".
|
2023-02-08 16:17:54 +01:00
|
|
|
self.marker: bool = False
|
|
|
|
|
|
|
|
def vertices(self) -> list[int]:
|
|
|
|
"""Return a list of vertex indices contained in the blossom."""
|
|
|
|
return [self.base_vertex]
|
|
|
|
|
|
|
|
|
|
|
|
class _NonTrivialBlossom(_Blossom):
|
|
|
|
"""Represents a non-trivial blossom in a partially matched graph.
|
|
|
|
|
|
|
|
A non-trivial blossom is a blossom that contains multiple sub-blossoms
|
|
|
|
(at least 3 sub-blossoms, since all blossoms have odd length).
|
|
|
|
|
|
|
|
Non-trivial blossoms maintain a list of their sub-blossoms and the edges
|
|
|
|
between their subblossoms.
|
|
|
|
|
|
|
|
Unlike trivial blossoms, each non-trivial blossom is associated with
|
|
|
|
a variable in the dual LPP problem.
|
|
|
|
|
|
|
|
Non-trivial blossoms are created and destroyed by the matching algorithm.
|
2023-02-04 21:06:34 +01:00
|
|
|
This implies that not every odd-length alternating cycle is a blossom;
|
|
|
|
it only becomes a blossom through an explicit action of the algorithm.
|
2023-02-08 16:17:54 +01:00
|
|
|
An existing blossom may change when the matching is augmented along
|
|
|
|
a path that runs through the blossom.
|
2023-02-04 21:06:34 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
2023-02-08 16:17:54 +01:00
|
|
|
subblossoms: list[_Blossom],
|
|
|
|
edges: list[tuple[int, int]]
|
2023-02-04 21:06:34 +01:00
|
|
|
) -> None:
|
|
|
|
"""Initialize a new blossom."""
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
super().__init__(subblossoms[0].base_vertex)
|
|
|
|
|
2023-02-04 21:06:34 +01:00
|
|
|
# Sanity check.
|
|
|
|
n = len(subblossoms)
|
|
|
|
assert len(edges) == n
|
|
|
|
assert n >= 3
|
|
|
|
assert n % 2 == 1
|
|
|
|
|
|
|
|
# "subblossoms" is a list of the sub-blossoms of the blossom,
|
|
|
|
# ordered by their appearance in the alternating cycle.
|
|
|
|
#
|
|
|
|
# "subblossoms[0]" is the start and end of the alternating cycle.
|
|
|
|
# "subblossoms[0]" contains the base vertex of the blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
self.subblossoms: list[_Blossom] = subblossoms
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
# "edges" is a list of edges linking the sub-blossoms.
|
2023-02-07 11:23:42 +01:00
|
|
|
# Each edge is represented as an ordered pair "(x, y)" where "x"
|
|
|
|
# and "y" are vertex indices.
|
2023-02-04 21:06:34 +01:00
|
|
|
#
|
2023-02-07 11:23:42 +01:00
|
|
|
# "edges[0] = (x, y)" where vertex "x" in "subblossoms[0]" is
|
|
|
|
# adjacent to vertex "y" in "subblossoms[1]", etc.
|
2023-02-04 21:06:34 +01:00
|
|
|
self.edges: list[tuple[int, int]] = edges
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Every non-trivial blossom has a variable in the dual LPP.
|
2023-02-04 21:06:34 +01:00
|
|
|
#
|
2023-02-06 15:39:27 +01:00
|
|
|
# "dual_var" is the current value of the dual variable.
|
2023-02-04 21:06:34 +01:00
|
|
|
# New blossoms start with dual variable 0.
|
2023-02-06 15:39:27 +01:00
|
|
|
self.dual_var: int|float = 0
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# For a non-trivial, top-level S-blossom,
|
|
|
|
# "best_edge_set" is a list of least-slack edges between this blossom
|
|
|
|
# and other S-blossoms.
|
|
|
|
self.best_edge_set: Optional[list[int]] = None
|
|
|
|
|
|
|
|
def vertices(self) -> list[int]:
|
|
|
|
"""Return a list of vertex indices contained in the blossom."""
|
|
|
|
|
|
|
|
# Use an explicit stack to avoid deep recursion.
|
|
|
|
stack: list[_NonTrivialBlossom] = [self]
|
|
|
|
nodes: list[int] = []
|
|
|
|
|
|
|
|
while stack:
|
|
|
|
b = stack.pop()
|
|
|
|
for sub in b.subblossoms:
|
|
|
|
if isinstance(sub, _NonTrivialBlossom):
|
|
|
|
stack.append(sub)
|
|
|
|
else:
|
|
|
|
nodes.append(sub.base_vertex)
|
|
|
|
|
|
|
|
return nodes
|
|
|
|
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
class _AlternatingPath(NamedTuple):
|
2023-02-08 16:17:54 +01:00
|
|
|
"""Represents a list of edges forming an alternating path or an
|
|
|
|
alternating cycle."""
|
2023-02-06 22:33:26 +01:00
|
|
|
edges: list[tuple[int, int]]
|
|
|
|
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
class _MatchingContext:
|
|
|
|
"""Holds all data used by the matching algorithm.
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
It contains a partial solution of the matching problem and several
|
|
|
|
auxiliary data structures.
|
|
|
|
"""
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
def __init__(self, graph: _GraphInfo) -> None:
|
|
|
|
"""Set up the initial state of the matching algorithm."""
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
num_vertex = graph.num_vertex
|
|
|
|
|
|
|
|
# Reference to the input graph.
|
|
|
|
# The graph does not change while the algorithm runs.
|
|
|
|
self.graph = graph
|
|
|
|
|
|
|
|
# Each vertex is either single (unmatched) or matched to
|
|
|
|
# another vertex.
|
|
|
|
#
|
|
|
|
# If vertex "x" is matched to vertex "y",
|
|
|
|
# "vertex_mate[x] == y" and "vertex_mate[y] == x".
|
|
|
|
#
|
|
|
|
# If vertex "x" is unmatched, "vertex_mate[x] == -1".
|
|
|
|
#
|
|
|
|
# Initially all vertices are unmatched.
|
|
|
|
self.vertex_mate: list[int] = num_vertex * [-1]
|
|
|
|
|
|
|
|
# Each vertex is associated with a trivial blossom.
|
|
|
|
# In addition, non-trivial blossoms may be created and destroyed
|
|
|
|
# during the course of the matching algorithm.
|
|
|
|
#
|
|
|
|
# "trivial_blossom[x]" is the trivial blossom that contains only
|
|
|
|
# vertex "x".
|
|
|
|
self.trivial_blossom: list[_Blossom] = [_Blossom(x)
|
|
|
|
for x in range(num_vertex)]
|
|
|
|
|
|
|
|
# Non-trivial blossoms may be created and destroyed during
|
|
|
|
# the course of the algorithm.
|
|
|
|
#
|
|
|
|
# Initially there are no non-trivial blossoms.
|
|
|
|
self.nontrivial_blossom: list[_NonTrivialBlossom] = []
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Every vertex is contained in exactly one top-level blossom
|
|
|
|
# (possibly the trivial blossom that contains just that vertex).
|
|
|
|
#
|
|
|
|
# "vertex_top_blossom[x]" is the top-level blossom that contains
|
|
|
|
# vertex "x".
|
|
|
|
#
|
|
|
|
# Initially all vertices are trivial top-level blossoms.
|
|
|
|
self.vertex_top_blossom: list[_Blossom] = self.trivial_blossom.copy()
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Every vertex has a variable in the dual LPP.
|
|
|
|
#
|
|
|
|
# "vertex_dual_2x[x]" is 2 times the dual variable of vertex "x".
|
|
|
|
# Multiplication by 2 ensures that the values are integers
|
|
|
|
# if all edge weights are integers.
|
|
|
|
#
|
|
|
|
# Vertex duals are initialized to half the maximum edge weight.
|
|
|
|
max_weight = max(w for (_x, _y, w) in graph.edges)
|
|
|
|
self.vertex_dual_2x: list[int|float] = num_vertex * [max_weight]
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# For each T-vertex or unlabeled vertex "x",
|
2023-02-07 12:56:36 +01:00
|
|
|
# "vertex_best_edge[x]" is the edge index of the least-slack edge
|
|
|
|
# between "x" and any S-vertex, or -1 if no such edge has been found.
|
|
|
|
self.vertex_best_edge: list[int] = num_vertex * [-1]
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# "queue" is a list of S-vertices that must be scanned.
|
|
|
|
# We call it a queue, but it is actually a stack.
|
|
|
|
self.queue: list[int] = []
|
|
|
|
|
|
|
|
def edge_slack_2x(self, e: int) -> int|float:
|
|
|
|
"""Return 2 times the slack of the edge with index "e".
|
|
|
|
|
|
|
|
The result is only valid for edges that are not between vertices
|
|
|
|
that belong to the same top-level blossom.
|
|
|
|
|
|
|
|
Multiplication by 2 ensures that the return value is an integer
|
|
|
|
if all edge weights are integers.
|
|
|
|
|
|
|
|
This function is called O(m) times per stage.
|
|
|
|
"""
|
|
|
|
(x, y, w) = self.graph.edges[e]
|
|
|
|
assert self.vertex_top_blossom[x] is not self.vertex_top_blossom[y]
|
|
|
|
return self.vertex_dual_2x[x] + self.vertex_dual_2x[y] - 2 * w
|
|
|
|
|
|
|
|
#
|
|
|
|
# Least-slack edge tracking:
|
|
|
|
#
|
|
|
|
# To calculate delta steps, the matching algorithm needs to find
|
|
|
|
# - the least-slack edge between any S-vertex and an unlabeled vertex;
|
|
|
|
# - the least-slack edge between any pair of top-level S-blossoms.
|
|
|
|
#
|
|
|
|
# For each unlabeled vertex and each T-vertex, we keep track of the
|
|
|
|
# least-slack edge to any S-vertex. Tracking for unlabeled vertices
|
|
|
|
# serves to provide the least-slack edge for the delta step.
|
|
|
|
# Tracking for T-vertices is done because such vertices can turn into
|
|
|
|
# unlabeled vertices if they are part of a T-blossom that gets expanded.
|
|
|
|
#
|
|
|
|
# For each top-level S-blossom, we keep track of the least-slack edge
|
|
|
|
# to any S-vertex not in the same blossom.
|
|
|
|
#
|
|
|
|
# Furthermore, for each top-level S-blossom, we keep a list of least-slack
|
|
|
|
# edges to other top-level S-blossoms. For any pair of top-level
|
|
|
|
# S-blossoms, the least-slack edge between them is contained in the edge
|
|
|
|
# list of at least one of the blossoms. An edge list may contain multiple
|
|
|
|
# edges to the same S-blossom. Such redundant edges are pruned during
|
|
|
|
# blossom merging to limit the number of tracked edges.
|
|
|
|
#
|
|
|
|
# Note: For a given vertex or blossom, the identity of the least-slack
|
|
|
|
# edge to any S-blossom remains unchanged during a delta step.
|
|
|
|
# Although the delta step changes edge slacks, it changes the slack
|
|
|
|
# of every edge to an S-vertex by the same amount. Therefore the edge
|
|
|
|
# that had least slack before the delta step, will still have least slack
|
|
|
|
# after the delta step.
|
|
|
|
#
|
|
|
|
|
|
|
|
def lset_reset(self) -> None:
|
|
|
|
"""Reset least-slack edge tracking.
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
This function takes time O(n).
|
|
|
|
"""
|
2023-02-08 16:17:54 +01:00
|
|
|
num_vertex = self.graph.num_vertex
|
|
|
|
|
|
|
|
for x in range(num_vertex):
|
2023-02-07 12:56:36 +01:00
|
|
|
self.vertex_best_edge[x] = -1
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
for blossom in self.trivial_blossom:
|
|
|
|
blossom.best_edge = -1
|
|
|
|
|
|
|
|
for blossom in self.nontrivial_blossom:
|
|
|
|
blossom.best_edge = -1
|
|
|
|
blossom.best_edge_set = None
|
|
|
|
|
|
|
|
def lset_add_vertex_edge(self, y: int, e: int, slack: int|float) -> None:
|
2023-02-07 15:46:39 +01:00
|
|
|
"""Add edge "e" from an S-vertex to unlabeled vertex or T-vertex "y".
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
This function takes time O(1) per call.
|
2023-02-07 15:46:39 +01:00
|
|
|
This function is called O(m) times per stage.
|
2023-02-07 12:56:36 +01:00
|
|
|
"""
|
|
|
|
best_edge = self.vertex_best_edge[y]
|
|
|
|
if best_edge == -1:
|
|
|
|
self.vertex_best_edge[y] = e
|
|
|
|
else:
|
2023-02-08 16:17:54 +01:00
|
|
|
best_slack = self.edge_slack_2x(best_edge)
|
2023-02-07 12:56:36 +01:00
|
|
|
if slack < best_slack:
|
|
|
|
self.vertex_best_edge[y] = e
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
def lset_get_best_vertex_edge(self) -> tuple[int, int|float]:
|
2023-02-07 12:56:36 +01:00
|
|
|
"""Return the index and slack of the least-slack edge between
|
|
|
|
any S-vertex and unlabeled vertex.
|
|
|
|
|
|
|
|
This function takes time O(n) per call.
|
|
|
|
This function takes total time O(n**2) per stage.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Tuple (edge_index, slack_2x) if there is a least-slack edge,
|
|
|
|
or (-1, 0) if there is no suitable edge.
|
|
|
|
"""
|
|
|
|
best_index = -1
|
|
|
|
best_slack: int|float = 0
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
for x in range(self.graph.num_vertex):
|
|
|
|
if self.vertex_top_blossom[x].label == _LABEL_NONE:
|
2023-02-07 12:56:36 +01:00
|
|
|
e = self.vertex_best_edge[x]
|
|
|
|
if e != -1:
|
2023-02-08 16:17:54 +01:00
|
|
|
slack = self.edge_slack_2x(e)
|
2023-02-07 12:56:36 +01:00
|
|
|
if (best_index == -1) or (slack < best_slack):
|
|
|
|
best_index = e
|
|
|
|
best_slack = slack
|
|
|
|
|
|
|
|
return (best_index, best_slack)
|
|
|
|
|
2023-02-08 19:24:14 +01:00
|
|
|
@staticmethod
|
|
|
|
def lset_new_blossom(blossom: _Blossom) -> None:
|
2023-02-08 16:17:54 +01:00
|
|
|
"""Start tracking edges for a new S-blossom."""
|
|
|
|
assert blossom.best_edge == -1
|
|
|
|
if isinstance(blossom, _NonTrivialBlossom):
|
|
|
|
assert blossom.best_edge_set is None
|
|
|
|
blossom.best_edge_set = []
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
def lset_add_blossom_edge(
|
2023-02-07 15:46:39 +01:00
|
|
|
self,
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom: _Blossom,
|
2023-02-07 15:46:39 +01:00
|
|
|
e: int,
|
|
|
|
slack: int|float
|
|
|
|
) -> None:
|
2023-02-08 16:17:54 +01:00
|
|
|
"""Add edge "e" between the specified S-blossom and another S-blossom.
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
This function takes time O(1) per call.
|
2023-02-07 15:46:39 +01:00
|
|
|
This function is called O(m) times per stage.
|
2023-02-07 12:56:36 +01:00
|
|
|
"""
|
2023-02-08 16:17:54 +01:00
|
|
|
# Track least-slack edge between this blossom and any other S-blossom.
|
|
|
|
if blossom.best_edge == -1:
|
|
|
|
blossom.best_edge = e
|
2023-02-07 12:56:36 +01:00
|
|
|
else:
|
2023-02-08 16:17:54 +01:00
|
|
|
best_slack = self.edge_slack_2x(blossom.best_edge)
|
2023-02-07 12:56:36 +01:00
|
|
|
if slack < best_slack:
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom.best_edge = e
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Regardless of whether this edge is currently the least-slack edge,
|
|
|
|
# this edge may later become the least-slack edge if other edges
|
|
|
|
# become unavailable when S-blossoms are merged.
|
2023-02-07 12:56:36 +01:00
|
|
|
#
|
|
|
|
# We therefore add the edge to a list of potential future least-slack
|
2023-02-08 16:17:54 +01:00
|
|
|
# edges for this blossom. We do this only for non-trivial blossoms.
|
|
|
|
if isinstance(blossom, _NonTrivialBlossom):
|
|
|
|
assert blossom.best_edge_set is not None
|
|
|
|
blossom.best_edge_set.append(e)
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
def lset_merge_blossoms(self, blossom: _NonTrivialBlossom) -> None:
|
|
|
|
"""Update least-slack edge tracking after merging sub-blossoms
|
|
|
|
into a new S-blossom.
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
This function takes time O(n) per call.
|
|
|
|
This function takes total time O(n**2) per stage.
|
|
|
|
"""
|
2023-02-08 16:17:54 +01:00
|
|
|
num_vertex = self.graph.num_vertex
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
# Calculate the set of least-slack edges to other S-blossoms.
|
|
|
|
# We basically merge the edge lists from all sub-blossoms, but reject
|
|
|
|
# edges that are internal to this blossom, and trim the set such that
|
|
|
|
# there is at most one edge to each external S-blossom.
|
|
|
|
#
|
|
|
|
# Sub-blossoms that were formerly labeled T can be ignored; their
|
|
|
|
# vertices are in the queue and will discover neighbouring S-blossoms
|
|
|
|
# via the edge scan process.
|
|
|
|
#
|
|
|
|
# Build a temporary array holding the least-slack edge index to
|
2023-02-08 16:17:54 +01:00
|
|
|
# each top-level S-blossom. This array is indexed by the base vertex
|
|
|
|
# of the blossoms.
|
|
|
|
best_edge_to_blossom: list[int] = num_vertex * [-1]
|
2023-02-07 12:56:36 +01:00
|
|
|
zero_slack: int|float = 0
|
2023-02-08 16:17:54 +01:00
|
|
|
best_slack_to_blossom: list[int|float] = num_vertex * [zero_slack]
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
# And find the overall least-slack edge to any other S-blossom.
|
|
|
|
best_edge = -1
|
|
|
|
best_slack: int|float = 0
|
|
|
|
|
|
|
|
# Add the least-slack edges of every S-sub-blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
for sub in blossom.subblossoms:
|
|
|
|
|
|
|
|
if sub.label != _LABEL_S:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if isinstance(sub, _NonTrivialBlossom):
|
|
|
|
# Pull the edge list from the sub-blossom.
|
|
|
|
assert sub.best_edge_set is not None
|
|
|
|
sub_edge_set = sub.best_edge_set
|
|
|
|
# Delete the edge list from the sub-blossom.
|
|
|
|
sub.best_edge_set = None
|
|
|
|
else:
|
2023-02-07 12:56:36 +01:00
|
|
|
# Trivial blossoms don't have a list of least-slack edges,
|
|
|
|
# so we just look at all adjacent edges. This happens at most
|
|
|
|
# once per vertex per stage.
|
|
|
|
# It adds up to O(m) time per stage.
|
2023-02-08 16:17:54 +01:00
|
|
|
sub_edge_set = self.graph.adjacent_edges[sub.base_vertex]
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
# Add edges to the temporary array.
|
|
|
|
for e in sub_edge_set:
|
2023-02-08 16:17:54 +01:00
|
|
|
(x, y, _w) = self.graph.edges[e]
|
|
|
|
bx = self.vertex_top_blossom[x]
|
|
|
|
by = self.vertex_top_blossom[y]
|
|
|
|
assert (bx is blossom) or (by is blossom)
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
# Reject internal edges in this blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
if bx is by:
|
2023-02-07 12:56:36 +01:00
|
|
|
continue
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Set bx = blossom at the other end of this edge.
|
|
|
|
bx = by if (bx is blossom) else bx
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
# Reject edges that don't link to an S-blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
if bx.label != _LABEL_S:
|
2023-02-07 12:56:36 +01:00
|
|
|
continue
|
|
|
|
|
|
|
|
# Keep only the least-slack edge to "bx".
|
2023-02-08 16:17:54 +01:00
|
|
|
slack = self.edge_slack_2x(e)
|
|
|
|
bx_base = bx.base_vertex
|
|
|
|
if ((best_edge_to_blossom[bx_base] == -1)
|
|
|
|
or (slack < best_slack_to_blossom[bx_base])):
|
|
|
|
best_edge_to_blossom[bx_base] = e
|
|
|
|
best_slack_to_blossom[bx_base] = slack
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
# Update the overall least-slack edge to any S-blossom.
|
|
|
|
if (best_edge == -1) or (slack < best_slack):
|
|
|
|
best_edge = e
|
|
|
|
best_slack = slack
|
|
|
|
|
|
|
|
# Extract a compact list of least-slack edge indices.
|
|
|
|
# We can not keep the temporary array because that would blow up
|
|
|
|
# memory use to O(n**2).
|
|
|
|
best_edge_set = [e for e in best_edge_to_blossom if e != -1]
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom.best_edge_set = best_edge_set
|
2023-02-07 12:56:36 +01:00
|
|
|
|
|
|
|
# Keep the overall least-slack edge.
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom.best_edge = best_edge
|
2023-02-07 12:56:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
def lset_get_best_blossom_edge(self) -> tuple[int, int|float]:
|
2023-02-07 12:56:36 +01:00
|
|
|
"""Return the index and slack of the least-slack edge between
|
|
|
|
any pair of top-level S-blossoms.
|
|
|
|
|
|
|
|
This function takes time O(n) per call.
|
|
|
|
This function takes total time O(n**2) per stage.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Tuple (edge_index, slack_2x) if there is a least-slack edge,
|
|
|
|
or (-1, 0) if there is no suitable edge.
|
|
|
|
"""
|
|
|
|
best_index = -1
|
|
|
|
best_slack: int|float = 0
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
for blossom in self.trivial_blossom + self.nontrivial_blossom:
|
|
|
|
if (blossom.label == _LABEL_S) and (blossom.parent is None):
|
|
|
|
e = blossom.best_edge
|
2023-02-07 12:56:36 +01:00
|
|
|
if e != -1:
|
2023-02-08 16:17:54 +01:00
|
|
|
slack = self.edge_slack_2x(e)
|
2023-02-07 12:56:36 +01:00
|
|
|
if (best_index == -1) or (slack < best_slack):
|
|
|
|
best_index = e
|
|
|
|
best_slack = slack
|
|
|
|
|
|
|
|
return (best_index, best_slack)
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
#
|
|
|
|
# General support routines:
|
|
|
|
#
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
def reset_stage(self) -> None:
|
|
|
|
"""Reset data which are only valid during a stage.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
Marks all blossoms as unlabeled, clears the queue,
|
|
|
|
and resets tracking of least-slack edges.
|
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Remove blossom labels.
|
2023-02-08 16:17:54 +01:00
|
|
|
for blossom in self.trivial_blossom + self.nontrivial_blossom:
|
|
|
|
blossom.label = _LABEL_NONE
|
|
|
|
blossom.tree_edge = None
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Clear the queue.
|
|
|
|
self.queue.clear()
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Reset least-slack edge tracking.
|
2023-02-08 16:17:54 +01:00
|
|
|
self.lset_reset()
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
def trace_alternating_paths(self, x: int, y: int) -> _AlternatingPath:
|
|
|
|
"""Trace back through the alternating trees from vertices "x" and "y".
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
If both vertices are part of the same alternating tree, this function
|
|
|
|
discovers a new blossom. In this case it returns an alternating path
|
|
|
|
through the blossom that starts and ends in the same sub-blossom.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
If the vertices are part of different alternating trees, this function
|
|
|
|
discovers an augmenting path. In this case it returns an alternating
|
|
|
|
path that starts and ends in an unmatched vertex.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
This function takes time O(k) to discover a blossom, where "k" is the
|
|
|
|
number of sub-blossoms, or time O(n) to discover an augmenting path.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
Returns:
|
|
|
|
Alternating path as an ordered list of edges between top-level
|
|
|
|
blossoms.
|
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
marked_blossoms: list[_Blossom] = []
|
2023-02-06 22:33:26 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# "xedges" is a list of edges used while tracing from "x".
|
|
|
|
# "yedges" is a list of edges used while tracing from "y".
|
2023-02-08 19:21:34 +01:00
|
|
|
# Pre-load the edge (x, y) on both lists.
|
|
|
|
xedges: list[tuple[int, int]] = [(x, y)]
|
|
|
|
yedges: list[tuple[int, int]] = [(y, x)]
|
2023-02-06 22:33:26 +01:00
|
|
|
|
2023-02-08 19:21:34 +01:00
|
|
|
# "first_common" is the first common ancestor of "x" and "y"
|
|
|
|
# in the alternating tree, or None if there is no common ancestor.
|
|
|
|
first_common: Optional[_Blossom] = None
|
2023-02-06 22:33:26 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# Alternate between tracing the path from "x" and the path from "y".
|
2023-02-06 22:33:26 +01:00
|
|
|
# This ensures that the search time is bounded by the size of the
|
|
|
|
# newly found blossom.
|
2023-02-07 11:23:42 +01:00
|
|
|
while x != -1 or y != -1:
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Check if we found a common ancestor.
|
2023-02-08 16:17:54 +01:00
|
|
|
bx = self.vertex_top_blossom[x]
|
|
|
|
if bx.marker:
|
2023-02-07 11:23:42 +01:00
|
|
|
first_common = bx
|
2023-02-06 22:33:26 +01:00
|
|
|
break
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Mark blossom as a potential common ancestor.
|
2023-02-08 16:17:54 +01:00
|
|
|
bx.marker = True
|
2023-02-07 11:23:42 +01:00
|
|
|
marked_blossoms.append(bx)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Track back through the link in the alternating tree.
|
2023-02-08 16:17:54 +01:00
|
|
|
if bx.tree_edge is None:
|
2023-02-06 22:33:26 +01:00
|
|
|
# Reached the root of this alternating tree.
|
2023-02-07 11:23:42 +01:00
|
|
|
x = -1
|
2023-02-06 09:04:43 +01:00
|
|
|
else:
|
2023-02-08 16:17:54 +01:00
|
|
|
xedges.append(bx.tree_edge)
|
|
|
|
x = bx.tree_edge[0]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# Swap "x" and "y" to alternate between paths.
|
|
|
|
if y != -1:
|
|
|
|
(x, y) = (y, x)
|
|
|
|
(xedges, yedges) = (yedges, xedges)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Remove all markers we placed.
|
|
|
|
for b in marked_blossoms:
|
2023-02-08 16:17:54 +01:00
|
|
|
b.marker = False
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# If we found a common ancestor, trim the paths so they end there.
|
2023-02-08 16:17:54 +01:00
|
|
|
if first_common is not None:
|
|
|
|
assert self.vertex_top_blossom[xedges[-1][0]] is first_common
|
2023-02-08 19:21:34 +01:00
|
|
|
while self.vertex_top_blossom[yedges[-1][0]] is not first_common:
|
2023-02-07 11:23:42 +01:00
|
|
|
yedges.pop()
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Fuse the two paths.
|
2023-02-08 19:21:34 +01:00
|
|
|
# Flip the order of one path, and flip the edge tuples in the other
|
|
|
|
# path to obtain a continuous path with correctly ordered edge tuples.
|
|
|
|
# Skip the duplicate edge in one of the paths.
|
|
|
|
path_edges = xedges[::-1] + [(y, x) for (x, y) in yedges[1:]]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Any S-to-S alternating path must have odd length.
|
|
|
|
assert len(path_edges) % 2 == 1
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
return _AlternatingPath(path_edges)
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
#
|
|
|
|
# Merge and expand blossoms:
|
|
|
|
#
|
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
def make_blossom(self, path: _AlternatingPath) -> None:
|
|
|
|
"""Create a new blossom from an alternating cycle.
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
Assign label S to the new blossom.
|
|
|
|
Relabel all T-sub-blossoms as S and add their vertices to the queue.
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-07 12:56:36 +01:00
|
|
|
This function takes time O(n) per call.
|
|
|
|
This function takes total time O(n**2) per stage.
|
2023-02-06 22:33:26 +01:00
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Check that the path is odd-length.
|
|
|
|
assert len(path.edges) % 2 == 1
|
|
|
|
assert len(path.edges) >= 3
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Construct the list of sub-blossoms (current top-level blossoms).
|
2023-02-08 16:17:54 +01:00
|
|
|
subblossoms = [self.vertex_top_blossom[x] for (x, y) in path.edges]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Check that the path is cyclic.
|
|
|
|
# Note the path may not start and end with the same _vertex_,
|
|
|
|
# but it must start and end in the same _blossom_.
|
2023-02-08 16:17:54 +01:00
|
|
|
subblossoms_next = [self.vertex_top_blossom[y]
|
|
|
|
for (x, y) in path.edges]
|
2023-02-06 22:33:26 +01:00
|
|
|
assert subblossoms[0] == subblossoms_next[-1]
|
|
|
|
assert subblossoms[1:] == subblossoms_next[:-1]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Create the new blossom object.
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom = _NonTrivialBlossom(subblossoms, path.edges)
|
2023-02-06 22:33:26 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Insert into the blossom array.
|
|
|
|
self.nontrivial_blossom.append(blossom)
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Link the subblossoms to the their new parent.
|
|
|
|
for sub in subblossoms:
|
2023-02-08 16:17:54 +01:00
|
|
|
sub.parent = blossom
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Update blossom-membership of all vertices in the new blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
for x in blossom.vertices():
|
|
|
|
self.vertex_top_blossom[x] = blossom
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Assign label S to the new blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
assert subblossoms[0].label == _LABEL_S
|
|
|
|
blossom.label = _LABEL_S
|
|
|
|
blossom.tree_edge = subblossoms[0].tree_edge
|
2023-02-06 22:33:26 +01:00
|
|
|
|
2023-02-07 12:56:36 +01:00
|
|
|
# Former T-vertices which are part of this blossom now become
|
2023-02-06 22:33:26 +01:00
|
|
|
# S-vertices. Add them to the queue.
|
|
|
|
for sub in subblossoms:
|
2023-02-08 16:17:54 +01:00
|
|
|
if sub.label == _LABEL_T:
|
|
|
|
self.queue.extend(sub.vertices())
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Merge least-slack edges for the S-sub-blossoms.
|
|
|
|
self.lset_merge_blossoms(blossom)
|
2023-02-06 22:33:26 +01:00
|
|
|
|
2023-02-08 19:24:14 +01:00
|
|
|
@staticmethod
|
2023-02-06 22:33:26 +01:00
|
|
|
def find_path_through_blossom(
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom: _NonTrivialBlossom,
|
|
|
|
sub: _Blossom
|
|
|
|
) -> tuple[list[_Blossom], list[tuple[int, int]]]:
|
|
|
|
"""Construct a path through the specified blossom,
|
|
|
|
from sub-blossom "sub" to the base of the blossom.
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
Return:
|
|
|
|
Tuple (nodes, edges).
|
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
nodes: list[_Blossom] = [sub]
|
2023-02-06 22:33:26 +01:00
|
|
|
edges: list[tuple[int, int]] = []
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Walk around the blossom from "sub" to its base.
|
|
|
|
p = blossom.subblossoms.index(sub)
|
|
|
|
nsub = len(blossom.subblossoms)
|
|
|
|
while p != 0:
|
|
|
|
if p % 2 == 0:
|
|
|
|
# Stepping towards the beginning of the subblossom list.
|
|
|
|
# Currently at subblossom (p), next position (p-2):
|
|
|
|
#
|
|
|
|
# 0 --- 1 === 2 --- 3 === (p-2) --- (p-1) ==(i,j)== (p)
|
|
|
|
# ^^^ ^^^
|
|
|
|
# <-------------------
|
|
|
|
#
|
|
|
|
# We flip edges from (i,j) to (j,i) to make them fit
|
|
|
|
# in the path from "s" to base.
|
|
|
|
edges.append(blossom.edges[p-1][::-1])
|
|
|
|
nodes.append(blossom.subblossoms[p-1])
|
|
|
|
edges.append(blossom.edges[p-2][::-1])
|
|
|
|
nodes.append(blossom.subblossoms[p-2])
|
|
|
|
p -= 2
|
|
|
|
else:
|
|
|
|
# Stepping towards the end of the subblossom list.
|
|
|
|
# Currently at subblossom (p), next position (p+2):
|
|
|
|
#
|
|
|
|
# (p) ==(i,j)== (p+1) --- (p+2) === (p+3) --- 0
|
|
|
|
# ^^^ ^^^
|
|
|
|
# ------------------->
|
|
|
|
edges.append(blossom.edges[p])
|
|
|
|
nodes.append(blossom.subblossoms[p+1])
|
|
|
|
edges.append(blossom.edges[p+1])
|
|
|
|
nodes.append(blossom.subblossoms[(p+2) % nsub])
|
|
|
|
p = (p + 2) % nsub
|
|
|
|
|
|
|
|
return (nodes, edges)
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
def expand_t_blossom(self, blossom: _NonTrivialBlossom) -> None:
|
2023-02-06 22:33:26 +01:00
|
|
|
"""Expand the specified T-blossom.
|
|
|
|
|
|
|
|
This function takes time O(n).
|
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
assert blossom.parent is None
|
|
|
|
assert blossom.label == _LABEL_T
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Convert sub-blossoms into top-level blossoms.
|
|
|
|
for sub in blossom.subblossoms:
|
2023-02-08 16:17:54 +01:00
|
|
|
assert sub.label == _LABEL_NONE
|
|
|
|
sub.parent = None
|
|
|
|
if isinstance(sub, _NonTrivialBlossom):
|
|
|
|
for x in sub.vertices():
|
|
|
|
self.vertex_top_blossom[x] = sub
|
2023-02-06 22:33:26 +01:00
|
|
|
else:
|
2023-02-08 16:17:54 +01:00
|
|
|
self.vertex_top_blossom[sub.base_vertex] = sub
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# The expanding blossom was part of an alternating tree, linked to
|
|
|
|
# a parent node in the tree via one of its subblossoms, and linked to
|
|
|
|
# a child node of the tree via the base vertex.
|
|
|
|
# We must reconstruct this part of the alternating tree, which will
|
|
|
|
# now run via sub-blossoms of the expanded blossom.
|
|
|
|
|
|
|
|
# Find the sub-blossom that is attached to the parent node in
|
|
|
|
# the alternating tree.
|
2023-02-10 12:58:47 +01:00
|
|
|
assert blossom.tree_edge is not None
|
|
|
|
(x, y) = blossom.tree_edge
|
2023-02-08 16:17:54 +01:00
|
|
|
sub = self.vertex_top_blossom[y]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Assign label T to that sub-blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
sub.label = _LABEL_T
|
|
|
|
sub.tree_edge = blossom.tree_edge
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Walk through the expanded blossom from "sub" to the base vertex.
|
|
|
|
# Assign alternating S and T labels to the sub-blossoms and attach
|
|
|
|
# them to the alternating tree.
|
2023-02-08 16:17:54 +01:00
|
|
|
(path_nodes, path_edges) = self.find_path_through_blossom(blossom,
|
|
|
|
sub)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
for p in range(0, len(path_edges), 2):
|
|
|
|
#
|
2023-02-07 11:23:42 +01:00
|
|
|
# (p) ==(y,x)== (p+1) ----- (p+2)
|
2023-02-06 22:33:26 +01:00
|
|
|
# T S T
|
|
|
|
#
|
|
|
|
# path_nodes[p] has already been labeled T.
|
|
|
|
# We now assign labels to path_nodes[p+1] and path_nodes[p+2].
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Assign label S to path_nodes[p+1].
|
2023-02-07 11:23:42 +01:00
|
|
|
(y, x) = path_edges[p]
|
|
|
|
self.assign_label_s(x)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Assign label T to path_nodes[i+2] and attach it
|
|
|
|
# to path_nodes[p+1].
|
2023-02-06 22:33:26 +01:00
|
|
|
sub = path_nodes[p+2]
|
2023-02-08 16:17:54 +01:00
|
|
|
sub.label = _LABEL_T
|
|
|
|
sub.tree_edge = path_edges[p+1]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Delete the expanded blossom.
|
|
|
|
self.nontrivial_blossom.remove(blossom)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
def expand_blossom_rec(
|
|
|
|
self,
|
|
|
|
blossom: _NonTrivialBlossom,
|
|
|
|
stack: list[_NonTrivialBlossom]
|
|
|
|
) -> None:
|
|
|
|
"""Expand the specified blossom and recursively expand any
|
|
|
|
sub-blossoms that have dual variable zero.
|
2023-02-07 16:15:59 +01:00
|
|
|
|
|
|
|
Use the stack object instead of making direct recursive calls.
|
|
|
|
"""
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
assert blossom.parent is None
|
2023-02-07 16:15:59 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Examine sub-blossoms.
|
2023-02-07 16:15:59 +01:00
|
|
|
for sub in blossom.subblossoms:
|
|
|
|
|
|
|
|
# Mark the sub-blossom as a top-level blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
sub.parent = None
|
2023-02-07 16:15:59 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
if isinstance(sub, _NonTrivialBlossom):
|
2023-02-07 16:15:59 +01:00
|
|
|
# Non-trivial sub-blossom.
|
|
|
|
# If its dual variable is zero, expand it recursively.
|
2023-02-08 16:17:54 +01:00
|
|
|
if sub.dual_var == 0:
|
2023-02-07 16:15:59 +01:00
|
|
|
stack.append(sub)
|
|
|
|
else:
|
|
|
|
# This sub-blossom will not be expanded;
|
|
|
|
# it now becomes top-level. Update its vertices
|
|
|
|
# to point to this sub-blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
for x in sub.vertices():
|
|
|
|
self.vertex_top_blossom[x] = sub
|
|
|
|
else:
|
|
|
|
# Trivial sub-blossom. Mark it as top-level vertex.
|
|
|
|
self.vertex_top_blossom[sub.base_vertex] = sub
|
2023-02-07 16:15:59 +01:00
|
|
|
|
2023-02-10 13:24:36 +01:00
|
|
|
# Deletion of the expanded blossom will be handled in
|
|
|
|
# the function "expand_zero_dual_blossoms()".
|
2023-02-07 16:15:59 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
def expand_zero_dual_blossoms(self) -> None:
|
|
|
|
"""Expand all blossoms with zero dual variable (recursively).
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
Note that this function runs at the end of a stage.
|
|
|
|
Blossoms are not labeled. Least-slack edges are not tracked.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
This function takes time O(n).
|
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 16:15:59 +01:00
|
|
|
# Use an explicit stack to avoid deep recursion.
|
|
|
|
# The stack contains a list of blossoms to be expanded.
|
2023-02-08 16:17:54 +01:00
|
|
|
stack: list[_NonTrivialBlossom] = []
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Find top-level blossoms with zero slack.
|
2023-02-08 16:17:54 +01:00
|
|
|
for blossom in self.nontrivial_blossom:
|
|
|
|
if blossom.parent is None:
|
2023-02-06 22:33:26 +01:00
|
|
|
# We typically expand only S-blossoms that were created after
|
|
|
|
# the most recent delta step. Those blossoms have _exactly_
|
|
|
|
# zero dual. So this comparison is reliable, even in case
|
|
|
|
# of floating point edge weights.
|
|
|
|
if blossom.dual_var == 0:
|
2023-02-08 16:17:54 +01:00
|
|
|
stack.append(blossom)
|
2023-02-06 17:39:03 +01:00
|
|
|
|
2023-02-10 13:24:36 +01:00
|
|
|
# Skip the rest of this function if there are no blossoms to delete.
|
|
|
|
if not stack:
|
|
|
|
return
|
|
|
|
|
2023-02-07 16:15:59 +01:00
|
|
|
# Expand blossoms.
|
2023-02-06 22:33:26 +01:00
|
|
|
while stack:
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom = stack.pop()
|
|
|
|
self.expand_blossom_rec(blossom, stack)
|
|
|
|
|
2023-02-10 13:24:36 +01:00
|
|
|
# Mark the blossom for deletion.
|
|
|
|
blossom.marker = True
|
|
|
|
|
|
|
|
# Delete the expanded blossoms.
|
|
|
|
# We do this in one pass over the array to ensure O(n) time.
|
2023-02-12 15:04:27 +01:00
|
|
|
self.nontrivial_blossom = [blossom
|
|
|
|
for blossom in self.nontrivial_blossom
|
|
|
|
if not blossom.marker]
|
2023-02-10 13:24:36 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
#
|
|
|
|
# Augmenting:
|
|
|
|
#
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 16:15:59 +01:00
|
|
|
def augment_blossom_rec(
|
|
|
|
self,
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom: _NonTrivialBlossom,
|
|
|
|
sub: _Blossom,
|
|
|
|
stack: list[tuple[_NonTrivialBlossom, _Blossom]]
|
2023-02-07 16:15:59 +01:00
|
|
|
) -> None:
|
2023-02-08 16:17:54 +01:00
|
|
|
"""Augment along an alternating path through the specified blossom,
|
2023-02-07 16:15:59 +01:00
|
|
|
from sub-blossom "sub" to the base vertex of the blossom.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 16:15:59 +01:00
|
|
|
Modify the blossom to reflect that sub-blossom "sub" contains
|
|
|
|
the base vertex after augmenting.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
Mark any sub-blossoms on the alternating path for recursive
|
|
|
|
augmentation, except for sub-blossom "sub" which has already been
|
|
|
|
augmented. Use the stack instead of making direct recursive calls.
|
2023-02-07 16:15:59 +01:00
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Walk through the blossom from "sub" to the base vertex.
|
|
|
|
(path_nodes, path_edges) = self.find_path_through_blossom(blossom,
|
|
|
|
sub)
|
2023-02-07 16:15:59 +01:00
|
|
|
|
|
|
|
for p in range(0, len(path_edges), 2):
|
|
|
|
# Before augmentation:
|
|
|
|
# path_nodes[p] is matched to path_nodes[p+1]
|
|
|
|
#
|
2023-02-08 16:17:54 +01:00
|
|
|
# (p) ===== (p+1) ---(x,y)--- (p+2)
|
2023-02-07 16:15:59 +01:00
|
|
|
#
|
|
|
|
# After augmentation:
|
|
|
|
# path_nodes[p+1] matched to path_nodes[p+2] via edge (i,j)
|
|
|
|
#
|
2023-02-08 16:17:54 +01:00
|
|
|
# (p) ----- (p+1) ===(x,y)=== (p+2)
|
2023-02-07 16:15:59 +01:00
|
|
|
#
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Pull the edge (x, y) into the matching.
|
2023-02-07 16:15:59 +01:00
|
|
|
(x, y) = path_edges[p+1]
|
|
|
|
self.vertex_mate[x] = y
|
|
|
|
self.vertex_mate[y] = x
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Augment through the subblossoms touching the edge (x, y).
|
2023-02-07 16:15:59 +01:00
|
|
|
# Nothing needs to be done for trivial subblossoms.
|
|
|
|
bx = path_nodes[p+1]
|
2023-02-08 16:17:54 +01:00
|
|
|
if isinstance(bx, _NonTrivialBlossom):
|
|
|
|
stack.append((bx, self.trivial_blossom[x]))
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 16:15:59 +01:00
|
|
|
by = path_nodes[p+2]
|
2023-02-08 16:17:54 +01:00
|
|
|
if isinstance(by, _NonTrivialBlossom):
|
|
|
|
stack.append((by, self.trivial_blossom[y]))
|
2023-02-07 16:15:59 +01:00
|
|
|
|
|
|
|
# Rotate the subblossom list so the new base ends up in position 0.
|
|
|
|
p = blossom.subblossoms.index(sub)
|
|
|
|
blossom.subblossoms = (
|
|
|
|
blossom.subblossoms[p:] + blossom.subblossoms[:p])
|
|
|
|
blossom.edges = blossom.edges[p:] + blossom.edges[:p]
|
|
|
|
|
|
|
|
# Update the base vertex.
|
|
|
|
# We can pull this from the sub-blossom where we started since
|
|
|
|
# its augmentation has already finished.
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom.base_vertex = sub.base_vertex
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
def augment_blossom(
|
|
|
|
self,
|
|
|
|
blossom: _NonTrivialBlossom,
|
|
|
|
sub: _Blossom
|
|
|
|
) -> None:
|
|
|
|
"""Augment along an alternating path through the specified blossom,
|
2023-02-07 11:23:42 +01:00
|
|
|
from sub-blossom "sub" to the base vertex of the blossom.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
Recursively augment any sub-blossoms on the alternating path.
|
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
This function takes time O(n).
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Use an explicit stack to avoid deep recursion.
|
2023-02-08 16:17:54 +01:00
|
|
|
stack = [(blossom, sub)]
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
while stack:
|
2023-02-07 16:15:59 +01:00
|
|
|
(outer_blossom, sub) = stack.pop()
|
2023-02-08 16:17:54 +01:00
|
|
|
assert sub.parent is not None
|
|
|
|
blossom = sub.parent
|
2023-02-06 22:33:26 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
if blossom != outer_blossom:
|
2023-02-07 16:15:59 +01:00
|
|
|
# Sub-blossom "sub" is an indirect (nested) child of
|
2023-02-08 16:17:54 +01:00
|
|
|
# the "outer_blossom" we are supposed to be augmenting.
|
2023-02-06 22:33:26 +01:00
|
|
|
#
|
2023-02-08 16:17:54 +01:00
|
|
|
# "blossom" is the direct parent of "sub".
|
|
|
|
# Let's first augment "blossom" from "sub" to its base vertex.
|
|
|
|
# Then continue by augmenting the parent of "blossom",
|
|
|
|
# from "blossom" to its base vertex, and so on until we
|
|
|
|
# get to the "outer_blossom".
|
2023-02-06 22:33:26 +01:00
|
|
|
#
|
2023-02-08 16:17:54 +01:00
|
|
|
# Set up to continue augmenting through the parent of
|
|
|
|
# "blossom".
|
|
|
|
stack.append((outer_blossom, blossom))
|
2023-02-06 22:33:26 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Augment "blossom" from "sub" to the base vertex.
|
|
|
|
self.augment_blossom_rec(blossom, sub, stack)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
def augment_matching(self, path: _AlternatingPath) -> None:
|
|
|
|
"""Augment the matching through the specified augmenting path.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
This function takes time O(n).
|
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Check that the augmenting path starts and ends in
|
|
|
|
# an unmatched vertex or a blossom with unmatched base.
|
|
|
|
assert len(path.edges) % 2 == 1
|
2023-02-07 11:23:42 +01:00
|
|
|
for x in (path.edges[0][0], path.edges[-1][1]):
|
2023-02-08 16:17:54 +01:00
|
|
|
b = self.vertex_top_blossom[x]
|
|
|
|
assert self.vertex_mate[b.base_vertex] == -1
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# The augmenting path looks like this:
|
|
|
|
#
|
|
|
|
# (unmatched) ---- (B) ==== (B) ---- (B) ==== (B) ---- (unmatched)
|
|
|
|
#
|
|
|
|
# The first and last vertex (or blossom) of the path are unmatched
|
|
|
|
# (or have unmatched base vertex). After augmenting, those vertices
|
|
|
|
# will be matched. All matched edges on the path become unmatched,
|
|
|
|
# and unmatched edges become matched.
|
|
|
|
#
|
|
|
|
# This loop walks along the edges of this path that were not matched
|
|
|
|
# before augmenting.
|
2023-02-07 11:23:42 +01:00
|
|
|
for (x, y) in path.edges[0::2]:
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Augment the non-trivial blossoms on either side of this edge.
|
|
|
|
# No action is necessary for trivial blossoms.
|
2023-02-08 16:17:54 +01:00
|
|
|
bx = self.vertex_top_blossom[x]
|
|
|
|
if isinstance(bx, _NonTrivialBlossom):
|
|
|
|
self.augment_blossom(bx, self.trivial_blossom[x])
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
by = self.vertex_top_blossom[y]
|
|
|
|
if isinstance(by, _NonTrivialBlossom):
|
|
|
|
self.augment_blossom(by, self.trivial_blossom[y])
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Pull the edge into the matching.
|
2023-02-07 11:23:42 +01:00
|
|
|
self.vertex_mate[x] = y
|
|
|
|
self.vertex_mate[y] = x
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
#
|
|
|
|
# Labeling and alternating tree expansion:
|
|
|
|
#
|
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
def assign_label_s(self, x: int) -> None:
|
|
|
|
"""Assign label S to the unlabeled blossom that contains vertex "x".
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
If vertex "x" is matched, it is attached to the alternating tree
|
|
|
|
via its matched edge. If vertex "x" is unmatched, it becomes the root
|
2023-02-06 22:33:26 +01:00
|
|
|
of an alternating tree.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
All vertices in the newly labeled blossom are added to the scan queue.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
Precondition:
|
2023-02-07 11:23:42 +01:00
|
|
|
"x" is an unlabeled vertex, either unmatched or matched to
|
2023-02-06 22:33:26 +01:00
|
|
|
a T-vertex via a tight edge.
|
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Assign label S to the blossom that contains vertex "x".
|
|
|
|
bx = self.vertex_top_blossom[x]
|
|
|
|
assert bx.label == _LABEL_NONE
|
|
|
|
bx.label = _LABEL_S
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
y = self.vertex_mate[x]
|
|
|
|
if y == -1:
|
|
|
|
# Vertex "x" is unmatched.
|
2023-02-06 22:33:26 +01:00
|
|
|
# It must be either a top-level vertex or the base vertex of
|
|
|
|
# a top-level blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
assert bx.base_vertex == x
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Mark the blossom as root of an alternating tree.
|
|
|
|
bx.tree_edge = None
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
else:
|
2023-02-07 11:23:42 +01:00
|
|
|
# Vertex "x" is matched to T-vertex "y".
|
2023-02-08 16:17:54 +01:00
|
|
|
by = self.vertex_top_blossom[y]
|
|
|
|
assert by.label == _LABEL_T
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# Attach the blossom that contains "x" to the alternating tree.
|
2023-02-08 16:17:54 +01:00
|
|
|
bx.tree_edge = (y, x)
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-07 12:56:36 +01:00
|
|
|
# Start least-slack edge tracking for the S-blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
self.lset_new_blossom(bx)
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Add all vertices inside the newly labeled S-blossom to the queue.
|
2023-02-08 16:17:54 +01:00
|
|
|
self.queue.extend(bx.vertices())
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
def assign_label_t(self, x: int, y: int) -> None:
|
|
|
|
"""Assign label T to the unlabeled blossom that contains vertex "y".
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
Attach it to the alternating tree via edge (x, y).
|
|
|
|
Then immediately assign label S to the mate of vertex "y".
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
Preconditions:
|
2023-02-07 11:23:42 +01:00
|
|
|
- "x" is an S-vertex.
|
|
|
|
- "y" is an unlabeled, matched vertex.
|
|
|
|
- There is a tight edge between vertices "x" and "y".
|
2023-02-06 22:33:26 +01:00
|
|
|
"""
|
2023-02-08 16:17:54 +01:00
|
|
|
assert self.vertex_top_blossom[x].label == _LABEL_S
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Assign label T to the unlabeled blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
by = self.vertex_top_blossom[y]
|
|
|
|
assert by.label == _LABEL_NONE
|
|
|
|
by.label = _LABEL_T
|
|
|
|
by.tree_edge = (x, y)
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# Assign label S to the blossom that contains the mate of vertex "y".
|
2023-02-08 16:17:54 +01:00
|
|
|
z = self.vertex_mate[by.base_vertex]
|
2023-02-07 11:23:42 +01:00
|
|
|
assert z != -1
|
|
|
|
self.assign_label_s(z)
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
def add_s_to_s_edge(self, x: int, y: int) -> Optional[_AlternatingPath]:
|
|
|
|
"""Add the edge between S-vertices "x" and "y".
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
If the edge connects blossoms that are part of the same alternating
|
|
|
|
tree, this function creates a new S-blossom and returns None.
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
If the edge connects two different alternating trees, an augmenting
|
|
|
|
path has been discovered. In this case the function changes nothing
|
|
|
|
and returns the augmenting path.
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
Returns:
|
|
|
|
Augmenting path if found; otherwise None.
|
|
|
|
"""
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# Trace back through the alternating trees from "x" and "y".
|
|
|
|
path = self.trace_alternating_paths(x, y)
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# If the path is a cycle, create a new blossom.
|
|
|
|
# Otherwise the path is an augmenting path.
|
|
|
|
# Note that an alternating starts and ends in the same blossom,
|
|
|
|
# but not necessarily in the same vertex within that blossom.
|
|
|
|
p = path.edges[0][0]
|
|
|
|
q = path.edges[-1][1]
|
2023-02-08 16:17:54 +01:00
|
|
|
if self.vertex_top_blossom[p] is self.vertex_top_blossom[q]:
|
2023-02-06 22:33:26 +01:00
|
|
|
self.make_blossom(path)
|
|
|
|
return None
|
2023-02-05 19:33:13 +01:00
|
|
|
else:
|
2023-02-06 22:33:26 +01:00
|
|
|
return path
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
def substage_scan(self) -> Optional[_AlternatingPath]:
|
|
|
|
"""Scan queued S-vertices to expand the alternating trees.
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
The scan proceeds until either an augmenting path is found,
|
|
|
|
or the queue of S-vertices becomes empty.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
New blossoms may be created during the scan.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
Returns:
|
|
|
|
Augmenting path if found; otherwise None.
|
|
|
|
"""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
edges = self.graph.edges
|
|
|
|
adjacent_edges = self.graph.adjacent_edges
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Process S-vertices waiting to be scanned.
|
2023-02-07 15:46:39 +01:00
|
|
|
# This loop runs through O(n) iterations per stage.
|
2023-02-06 22:33:26 +01:00
|
|
|
while self.queue:
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Take a vertex from the queue.
|
2023-02-07 11:23:42 +01:00
|
|
|
x = self.queue.pop()
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# Double-check that "x" is an S-vertex.
|
2023-02-08 16:17:54 +01:00
|
|
|
bx = self.vertex_top_blossom[x]
|
|
|
|
assert bx.label == _LABEL_S
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# Scan the edges that are incident on "x".
|
2023-02-07 15:46:39 +01:00
|
|
|
# This loop runs through O(m) iterations per stage.
|
2023-02-07 11:23:42 +01:00
|
|
|
for e in adjacent_edges[x]:
|
2023-02-06 22:33:26 +01:00
|
|
|
(p, q, _w) = edges[e]
|
2023-02-07 16:15:59 +01:00
|
|
|
y = p if p != x else q
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# Consider the edge between vertices "x" and "y".
|
2023-02-06 22:33:26 +01:00
|
|
|
# Try to pull this edge into an alternating tree.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
# Note: blossom index of vertex "x" may change during
|
2023-02-06 22:33:26 +01:00
|
|
|
# this loop, so we need to refresh it here.
|
2023-02-08 16:17:54 +01:00
|
|
|
bx = self.vertex_top_blossom[x]
|
|
|
|
by = self.vertex_top_blossom[y]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Ignore edges that are internal to a blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
if bx is by:
|
2023-02-06 22:33:26 +01:00
|
|
|
continue
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
ylabel = by.label
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Check whether this edge is tight (has zero slack).
|
|
|
|
# Only tight edges may be part of an alternating tree.
|
|
|
|
slack = self.edge_slack_2x(e)
|
|
|
|
if slack <= 0:
|
2023-02-07 11:23:42 +01:00
|
|
|
if ylabel == _LABEL_NONE:
|
|
|
|
# Assign label T to the blossom that contains "y".
|
|
|
|
self.assign_label_t(x, y)
|
|
|
|
elif ylabel == _LABEL_S:
|
2023-02-06 22:33:26 +01:00
|
|
|
# This edge connects two S-blossoms. Use it to find
|
|
|
|
# either a new blossom or an augmenting path.
|
2023-02-07 11:23:42 +01:00
|
|
|
alternating_path = self.add_s_to_s_edge(x, y)
|
2023-02-06 22:33:26 +01:00
|
|
|
if alternating_path is not None:
|
|
|
|
return alternating_path
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
elif ylabel == _LABEL_S:
|
2023-02-06 22:33:26 +01:00
|
|
|
# Update tracking of least-slack edges between S-blossoms.
|
2023-02-08 16:17:54 +01:00
|
|
|
self.lset_add_blossom_edge(bx, e, slack)
|
2023-02-06 22:33:26 +01:00
|
|
|
|
2023-02-07 11:23:42 +01:00
|
|
|
if ylabel != _LABEL_S:
|
|
|
|
# Update tracking of least-slack edges from vertex "y" to
|
2023-02-06 22:33:26 +01:00
|
|
|
# any S-vertex. We do this for T-vertices and unlabeled
|
|
|
|
# vertices. Edges which already have zero slack are still
|
|
|
|
# tracked.
|
2023-02-08 16:17:54 +01:00
|
|
|
self.lset_add_vertex_edge(y, e, slack)
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# No further S vertices to scan, and no augmenting path found.
|
|
|
|
return None
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
#
|
|
|
|
# Delta steps:
|
|
|
|
#
|
|
|
|
|
|
|
|
def substage_calc_dual_delta(
|
|
|
|
self
|
|
|
|
) -> tuple[int, float|int, int, Optional[_NonTrivialBlossom]]:
|
2023-02-06 22:33:26 +01:00
|
|
|
"""Calculate a delta step in the dual LPP problem.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
This function returns the minimum of the 4 types of delta values,
|
|
|
|
and the type of delta which obtain the minimum, and the edge or
|
|
|
|
blossom that produces the minimum delta, if applicable.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
The returned value is 2 times the actual delta value.
|
|
|
|
Multiplication by 2 ensures that the result is an integer if all edge
|
|
|
|
weights are integers.
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
This function assumes that there is at least one S-vertex.
|
|
|
|
This function takes time O(n).
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
Returns:
|
|
|
|
Tuple (delta_type, delta_2x, delta_edge, delta_blossom).
|
|
|
|
"""
|
|
|
|
num_vertex = self.graph.num_vertex
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
delta_edge = -1
|
2023-02-08 16:17:54 +01:00
|
|
|
delta_blossom: Optional[_NonTrivialBlossom] = None
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Compute delta1: minimum dual variable of any S-vertex.
|
|
|
|
delta_type = 1
|
|
|
|
delta_2x = min(
|
2023-02-07 11:23:42 +01:00
|
|
|
self.vertex_dual_2x[x]
|
|
|
|
for x in range(num_vertex)
|
2023-02-08 16:17:54 +01:00
|
|
|
if self.vertex_top_blossom[x].label == _LABEL_S)
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Compute delta2: minimum slack of any edge between an S-vertex and
|
|
|
|
# an unlabeled vertex.
|
2023-02-08 16:17:54 +01:00
|
|
|
(e, slack) = self.lset_get_best_vertex_edge()
|
2023-02-07 12:56:36 +01:00
|
|
|
if (e != -1) and (slack <= delta_2x):
|
|
|
|
delta_type = 2
|
|
|
|
delta_2x = slack
|
|
|
|
delta_edge = e
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Compute delta3: half minimum slack of any edge between two top-level
|
|
|
|
# S-blossoms.
|
2023-02-08 16:17:54 +01:00
|
|
|
(e, slack) = self.lset_get_best_blossom_edge()
|
2023-02-07 12:56:36 +01:00
|
|
|
if e != -1:
|
|
|
|
if self.graph.integer_weights:
|
|
|
|
# If all edge weights are even integers, the slack
|
|
|
|
# of any edge between two S blossoms is also an even
|
|
|
|
# integer. Therefore the delta is an integer.
|
|
|
|
assert slack % 2 == 0
|
|
|
|
slack = slack // 2
|
|
|
|
else:
|
|
|
|
slack = slack / 2
|
2023-02-08 16:17:54 +01:00
|
|
|
if slack <= delta_2x:
|
2023-02-07 12:56:36 +01:00
|
|
|
delta_type = 3
|
|
|
|
delta_2x = slack
|
|
|
|
delta_edge = e
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Compute delta4: half minimum dual variable of a top-level T-blossom.
|
2023-02-08 16:17:54 +01:00
|
|
|
for blossom in self.nontrivial_blossom:
|
|
|
|
if (blossom.label == _LABEL_T) and (blossom.parent is None):
|
|
|
|
if blossom.dual_var <= delta_2x:
|
2023-02-06 22:33:26 +01:00
|
|
|
delta_type = 4
|
2023-02-08 16:17:54 +01:00
|
|
|
delta_2x = blossom.dual_var
|
|
|
|
delta_blossom = blossom
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
return (delta_type, delta_2x, delta_edge, delta_blossom)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
def substage_apply_delta_step(self, delta_2x: int|float) -> None:
|
|
|
|
"""Apply a delta step to the dual LPP variables."""
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
num_vertex = self.graph.num_vertex
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Apply delta to dual variables of all vertices.
|
2023-02-07 11:23:42 +01:00
|
|
|
for x in range(num_vertex):
|
2023-02-08 16:17:54 +01:00
|
|
|
xlabel = self.vertex_top_blossom[x].label
|
2023-02-07 11:23:42 +01:00
|
|
|
if xlabel == _LABEL_S:
|
2023-02-06 22:33:26 +01:00
|
|
|
# S-vertex: subtract delta from dual variable.
|
2023-02-07 11:23:42 +01:00
|
|
|
self.vertex_dual_2x[x] -= delta_2x
|
|
|
|
elif xlabel == _LABEL_T:
|
2023-02-06 22:33:26 +01:00
|
|
|
# T-vertex: add delta to dual variable.
|
2023-02-07 11:23:42 +01:00
|
|
|
self.vertex_dual_2x[x] += delta_2x
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Apply delta to dual variables of top-level non-trivial blossoms.
|
2023-02-08 16:17:54 +01:00
|
|
|
for blossom in self.nontrivial_blossom:
|
|
|
|
if blossom.parent is None:
|
|
|
|
blabel = blossom.label
|
2023-02-06 22:33:26 +01:00
|
|
|
if blabel == _LABEL_S:
|
|
|
|
# S-blossom: add 2*delta to dual variable.
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom.dual_var += delta_2x
|
2023-02-06 22:33:26 +01:00
|
|
|
elif blabel == _LABEL_T:
|
|
|
|
# T-blossom: subtract 2*delta from dual variable.
|
2023-02-08 16:17:54 +01:00
|
|
|
blossom.dual_var -= delta_2x
|
|
|
|
|
|
|
|
#
|
|
|
|
# Main stage function:
|
|
|
|
#
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
def run_stage(self) -> bool:
|
|
|
|
"""Run one stage of the matching algorithm.
|
|
|
|
|
|
|
|
The stage searches a maximum-weight augmenting path.
|
|
|
|
If this path is found, it is used to augment the matching,
|
|
|
|
thereby increasing the number of matched edges by 1.
|
|
|
|
If no such path is found, the matching must already be optimal.
|
|
|
|
|
|
|
|
This function takes time O(n**2).
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
True if the matching was successfully augmented.
|
|
|
|
False if no further improvement is possible.
|
|
|
|
"""
|
2023-02-05 19:33:13 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
num_vertex = self.graph.num_vertex
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Assign label S to all unmatched vertices and put them in the queue.
|
2023-02-07 11:23:42 +01:00
|
|
|
for x in range(num_vertex):
|
|
|
|
if self.vertex_mate[x] == -1:
|
|
|
|
self.assign_label_s(x)
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
# Stop if all vertices are matched.
|
|
|
|
# No further improvement is possible in that case.
|
|
|
|
# This avoids messy calculations of delta steps without any S-vertex.
|
|
|
|
if not self.queue:
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Each pass through the following loop is a "substage".
|
|
|
|
# The substage tries to find an augmenting path.
|
|
|
|
# If an augmenting path is found, we augment the matching and end
|
|
|
|
# the stage. Otherwise we update the dual LPP problem and enter the
|
|
|
|
# next substage, or stop if no further improvement is possible.
|
|
|
|
#
|
|
|
|
# This loop runs through at most O(n) iterations per stage.
|
|
|
|
augmenting_path = None
|
|
|
|
while True:
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Expand alternating trees.
|
|
|
|
# End the stage if an augmenting path is found.
|
|
|
|
augmenting_path = self.substage_scan()
|
2023-02-04 21:06:34 +01:00
|
|
|
if augmenting_path is not None:
|
|
|
|
break
|
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Calculate delta step in the dual LPP problem.
|
|
|
|
(delta_type, delta_2x, delta_edge, delta_blossom
|
|
|
|
) = self.substage_calc_dual_delta()
|
|
|
|
|
|
|
|
# Apply the delta step to the dual variables.
|
|
|
|
self.substage_apply_delta_step(delta_2x)
|
|
|
|
|
|
|
|
if delta_type == 2:
|
|
|
|
# Use the edge from S-vertex to unlabeled vertex that got
|
|
|
|
# unlocked through the delta update.
|
2023-02-07 11:23:42 +01:00
|
|
|
(x, y, _w) = self.graph.edges[delta_edge]
|
2023-02-08 16:17:54 +01:00
|
|
|
if self.vertex_top_blossom[x].label != _LABEL_S:
|
2023-02-07 11:23:42 +01:00
|
|
|
(x, y) = (y, x)
|
|
|
|
self.assign_label_t(x, y)
|
2023-02-06 22:33:26 +01:00
|
|
|
|
|
|
|
elif delta_type == 3:
|
2023-02-08 16:17:54 +01:00
|
|
|
# Use the S-to-S edge that got unlocked by the delta update.
|
2023-02-06 22:33:26 +01:00
|
|
|
# This may reveal an augmenting path.
|
2023-02-07 11:23:42 +01:00
|
|
|
(x, y, _w) = self.graph.edges[delta_edge]
|
|
|
|
augmenting_path = self.add_s_to_s_edge(x, y)
|
2023-02-06 22:33:26 +01:00
|
|
|
if augmenting_path is not None:
|
|
|
|
break
|
|
|
|
|
|
|
|
elif delta_type == 4:
|
|
|
|
# Expand the T-blossom that reached dual value 0 through
|
|
|
|
# the delta update.
|
2023-02-08 16:17:54 +01:00
|
|
|
assert delta_blossom is not None
|
2023-02-06 22:33:26 +01:00
|
|
|
self.expand_t_blossom(delta_blossom)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
else:
|
|
|
|
# No further improvement possible. End the stage.
|
|
|
|
assert delta_type == 1
|
|
|
|
break
|
|
|
|
|
|
|
|
# Augment the matching if an augmenting path was found.
|
|
|
|
if augmenting_path is not None:
|
|
|
|
self.augment_matching(augmenting_path)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Expand all blossoms with dual variable zero.
|
|
|
|
# These are typically S-blossoms, since T-blossoms normally
|
|
|
|
# get expanded as soon as their dual variable hits zero.
|
|
|
|
self.expand_zero_dual_blossoms()
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
# Remove all labels, clear queue.
|
|
|
|
self.reset_stage()
|
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
# Return True if the matching was augmented.
|
|
|
|
return (augmenting_path is not None)
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
|
2023-02-08 21:29:56 +01:00
|
|
|
def _verify_blossom_edges(
|
|
|
|
ctx: _MatchingContext,
|
|
|
|
blossom: _NonTrivialBlossom,
|
|
|
|
edge_slack_2x: list[int|float]
|
|
|
|
) -> None:
|
|
|
|
"""Descend down the blossom tree to find edges that are contained
|
|
|
|
in blossoms.
|
|
|
|
|
|
|
|
Adjust the slack of all contained edges to account for the dual variables
|
|
|
|
of its containing blossoms.
|
|
|
|
|
|
|
|
On the way down, keep track of the sum of dual variables of
|
|
|
|
the containing blossoms.
|
|
|
|
|
|
|
|
On the way up, keep track of the total number of matched edges
|
|
|
|
in the subblossoms. Then check that all blossoms with non-zero
|
|
|
|
dual variable are "full".
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
AssertionError: If a blossom with non-zero dual is not full.
|
|
|
|
"""
|
|
|
|
|
|
|
|
num_vertex = ctx.graph.num_vertex
|
|
|
|
|
|
|
|
# For each vertex "x",
|
|
|
|
# "vertex_depth[x]" is the depth of the smallest blossom on
|
|
|
|
# the current descent path that contains "x".
|
|
|
|
vertex_depth: list[int] = num_vertex * [0]
|
|
|
|
|
|
|
|
# Keep track of the sum of blossom duals at each depth along
|
|
|
|
# the current descent path.
|
|
|
|
path_sum_dual: list[int|float] = [0]
|
|
|
|
|
|
|
|
# Keep track of the number of matched edges at each depth along
|
|
|
|
# the current descent path.
|
|
|
|
path_num_matched: list[int] = [0]
|
|
|
|
|
|
|
|
# Use an explicit stack to avoid deep recursion.
|
|
|
|
stack: list[tuple[_NonTrivialBlossom, int]] = [(blossom, -1)]
|
|
|
|
|
|
|
|
while stack:
|
|
|
|
(blossom, p) = stack[-1]
|
|
|
|
depth = len(stack)
|
|
|
|
|
|
|
|
if p == -1:
|
|
|
|
# We just entered this sub-blossom.
|
|
|
|
# Update the depth of all vertices in this sub-blossom.
|
|
|
|
for x in blossom.vertices():
|
|
|
|
vertex_depth[x] = depth
|
|
|
|
|
|
|
|
# Calculate the sub of blossoms at the current depth.
|
|
|
|
path_sum_dual.append(path_sum_dual[-1] + blossom.dual_var)
|
|
|
|
|
|
|
|
# Initialize the number of matched edges at the current depth.
|
|
|
|
path_num_matched.append(0)
|
|
|
|
|
|
|
|
p += 1
|
|
|
|
|
|
|
|
if p < len(blossom.subblossoms):
|
|
|
|
# Update the sub-blossom pointer at the current level.
|
|
|
|
stack[-1] = (blossom, p + 1)
|
|
|
|
|
|
|
|
# Examine the next sub-blossom at the current level.
|
|
|
|
sub = blossom.subblossoms[p]
|
|
|
|
if isinstance(sub, _NonTrivialBlossom):
|
|
|
|
# Prepare to descent into the selected sub-blossom and
|
|
|
|
# scan it recursively.
|
|
|
|
stack.append((sub, -1))
|
|
|
|
|
|
|
|
else:
|
|
|
|
# Handle this trivial sub-blossom.
|
|
|
|
# Scan its adjacent edges and find the smallest blossom
|
|
|
|
# that contains each edge.
|
|
|
|
for e in ctx.graph.adjacent_edges[sub.base_vertex]:
|
|
|
|
(x, y, _w) = ctx.graph.edges[e]
|
|
|
|
|
|
|
|
# Only process edges that are ordered out from this
|
|
|
|
# sub-blossom. This ensures that we process each edge in
|
|
|
|
# the blossom only once.
|
|
|
|
if x == sub.base_vertex:
|
|
|
|
|
|
|
|
edge_depth = vertex_depth[y]
|
|
|
|
if edge_depth > 0:
|
|
|
|
# This edge is contained in an ancestor blossom.
|
|
|
|
# Update its slack.
|
|
|
|
edge_slack_2x[e] += 2 * path_sum_dual[edge_depth]
|
|
|
|
|
|
|
|
# Update the number of matched edges in ancestor.
|
|
|
|
if ctx.vertex_mate[x] == y:
|
|
|
|
path_num_matched[edge_depth] += 1
|
|
|
|
|
|
|
|
else:
|
|
|
|
# We are now leaving the current sub-blossom.
|
|
|
|
|
|
|
|
# Count the number of vertices inside this blossom.
|
|
|
|
blossom_vertices = blossom.vertices()
|
|
|
|
blossom_num_vertex = len(blossom_vertices)
|
|
|
|
|
|
|
|
# Check that all blossoms with positive dual are "full".
|
|
|
|
# A blossom is full if all except one of its vertices are
|
|
|
|
# matched to another vertex in the blossom.
|
|
|
|
if blossom.dual_var > 0:
|
|
|
|
blossom_num_matched = path_num_matched[depth]
|
|
|
|
assert blossom_num_vertex == 2 * blossom_num_matched + 1
|
|
|
|
|
|
|
|
# Update the number of matched edges in the parent blossom to
|
|
|
|
# take into account the matched edges in this blossom.
|
|
|
|
path_num_matched[depth - 1] += path_num_matched[depth]
|
|
|
|
|
|
|
|
# Revert the depth of the vertices in this sub-blossom.
|
|
|
|
for x in blossom_vertices:
|
|
|
|
vertex_depth[x] = depth - 1
|
|
|
|
|
|
|
|
# Trim the descending path.
|
|
|
|
path_sum_dual.pop()
|
|
|
|
path_num_matched.pop()
|
|
|
|
|
|
|
|
# Remove the current blossom from the stack.
|
|
|
|
# We thus continue our scan of the parent blossom.
|
|
|
|
stack.pop()
|
|
|
|
|
2023-02-08 16:17:54 +01:00
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
def _verify_optimum(ctx: _MatchingContext) -> None:
|
2023-02-04 21:06:34 +01:00
|
|
|
"""Verify that the optimum solution has been found.
|
|
|
|
|
2023-02-08 21:29:56 +01:00
|
|
|
This function takes time O(n**2).
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
AssertionError: If the solution is not optimal.
|
|
|
|
"""
|
|
|
|
|
2023-02-06 22:33:26 +01:00
|
|
|
num_vertex = ctx.graph.num_vertex
|
2023-02-08 21:29:56 +01:00
|
|
|
num_edge = len(ctx.graph.edges)
|
2023-02-06 15:39:27 +01:00
|
|
|
|
2023-02-08 21:29:56 +01:00
|
|
|
# Double-check that each matched edge actually exists in the graph.
|
2023-02-06 15:39:27 +01:00
|
|
|
num_matched_vertex = 0
|
2023-02-07 11:23:42 +01:00
|
|
|
for x in range(num_vertex):
|
2023-02-08 21:29:56 +01:00
|
|
|
if ctx.vertex_mate[x] != -1:
|
|
|
|
assert ctx.vertex_mate[ctx.vertex_mate[x]] == x
|
2023-02-06 15:39:27 +01:00
|
|
|
num_matched_vertex += 1
|
|
|
|
|
|
|
|
num_matched_edge = 0
|
2023-02-07 11:23:42 +01:00
|
|
|
for (x, y, _w) in ctx.graph.edges:
|
2023-02-08 21:29:56 +01:00
|
|
|
if ctx.vertex_mate[x] == y:
|
2023-02-06 15:39:27 +01:00
|
|
|
num_matched_edge += 1
|
|
|
|
|
|
|
|
assert num_matched_vertex == 2 * num_matched_edge
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
# Check that all dual variables are non-negative.
|
2023-02-08 21:29:56 +01:00
|
|
|
assert min(ctx.vertex_dual_2x) >= 0
|
2023-02-08 16:17:54 +01:00
|
|
|
for blossom in ctx.nontrivial_blossom:
|
|
|
|
assert blossom.dual_var >= 0
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 21:29:56 +01:00
|
|
|
# Calculate the slack of each edge.
|
|
|
|
# A correction will be needed for edges inside blossoms.
|
|
|
|
edge_slack_2x: list[int|float] = [
|
|
|
|
ctx.vertex_dual_2x[x] + ctx.vertex_dual_2x[y] - 2 * w
|
|
|
|
for (x, y, w) in ctx.graph.edges]
|
2023-02-04 21:06:34 +01:00
|
|
|
|
2023-02-08 21:29:56 +01:00
|
|
|
# Descend down each top-level blossom.
|
|
|
|
# Adjust edge slacks to account for the duals of its containing blossoms.
|
|
|
|
# And check that blossoms with non-zero dual are full.
|
|
|
|
# This takes total time O(n**2).
|
2023-02-08 16:17:54 +01:00
|
|
|
for blossom in ctx.nontrivial_blossom:
|
2023-02-08 21:29:56 +01:00
|
|
|
if blossom.parent is None:
|
|
|
|
_verify_blossom_edges(ctx, blossom, edge_slack_2x)
|
|
|
|
|
|
|
|
# We now know the correct slack of each edge.
|
|
|
|
# Check that all edges have non-negative slack.
|
|
|
|
assert min(edge_slack_2x) >= 0
|
|
|
|
|
|
|
|
# Check that all matched edges have zero slack.
|
|
|
|
for e in range(num_edge):
|
|
|
|
(x, y, _w) = ctx.graph.edges[e]
|
|
|
|
if ctx.vertex_mate[x] == y:
|
|
|
|
assert edge_slack_2x[e] == 0
|
2023-02-04 21:06:34 +01:00
|
|
|
|
|
|
|
# Optimum solution confirmed.
|