Fix bug in trace_alternating_paths
This commit is contained in:
parent
780ccd009d
commit
8d5087060f
|
@ -669,7 +669,7 @@ def _trace_alternating_paths(
|
||||||
blossom_marker[b] = False
|
blossom_marker[b] = False
|
||||||
|
|
||||||
# If we found a common ancestor, trim the paths so they end there.
|
# If we found a common ancestor, trim the paths so they end there.
|
||||||
if first_common == -1:
|
if first_common != -1:
|
||||||
assert vertex_blossom[vedges[-1][0]] == first_common
|
assert vertex_blossom[vedges[-1][0]] == first_common
|
||||||
while wedges and (vertex_blossom[wedges[-1][0]] != first_common):
|
while wedges and (vertex_blossom[wedges[-1][0]] != first_common):
|
||||||
wedges.pop()
|
wedges.pop()
|
||||||
|
|
Loading…
Reference in New Issue