1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
from itertools import chain
import networkx as nx
from nose.tools import *
def _check_partition(G, cut_value, partition, weight):
ok_(isinstance(partition, tuple))
assert_equal(len(partition), 2)
ok_(isinstance(partition[0], list))
ok_(isinstance(partition[1], list))
ok_(len(partition[0]) > 0)
ok_(len(partition[1]) > 0)
assert_equal(sum(map(len, partition)), len(G))
assert_equal(set(chain.from_iterable(partition)), set(G))
partition = tuple(map(set, partition))
w = 0
for u, v, e in G.edges_iter(data=True):
if (u in partition[0]) == (v in partition[1]):
w += e.get(weight, 1)
assert_equal(w, cut_value)
def _test_stoer_wagner(G, answer, weight='weight'):
cut_value, partition = nx.stoer_wagner(G, weight,
heap=nx.utils.PairingHeap)
assert_equal(cut_value, answer)
_check_partition(G, cut_value, partition, weight)
cut_value, partition = nx.stoer_wagner(G, weight,
heap=nx.utils.BinaryHeap)
assert_equal(cut_value, answer)
_check_partition(G, cut_value, partition, weight)
def test_graph1():
G = nx.Graph()
G.add_edge('x','a', weight=3)
G.add_edge('x','b', weight=1)
G.add_edge('a','c', weight=3)
G.add_edge('b','c', weight=5)
G.add_edge('b','d', weight=4)
G.add_edge('d','e', weight=2)
G.add_edge('c','y', weight=2)
G.add_edge('e','y', weight=3)
_test_stoer_wagner(G, 4)
def test_graph2():
G = nx.Graph()
G.add_edge('x','a')
G.add_edge('x','b')
G.add_edge('a','c')
G.add_edge('b','c')
G.add_edge('b','d')
G.add_edge('d','e')
G.add_edge('c','y')
G.add_edge('e','y')
_test_stoer_wagner(G, 2)
def test_graph3():
# Source:
# Stoer, M. and Wagner, F. (1997). "A simple min-cut algorithm". Journal of
# the ACM 44 (4), 585-591.
G = nx.Graph()
G.add_edge(1, 2, weight=2)
G.add_edge(1, 5, weight=3)
G.add_edge(2, 3, weight=3)
G.add_edge(2, 5, weight=2)
G.add_edge(2, 6, weight=2)
G.add_edge(3, 4, weight=4)
G.add_edge(3, 7, weight=2)
G.add_edge(4, 7, weight=2)
G.add_edge(4, 8, weight=2)
G.add_edge(5, 6, weight=3)
G.add_edge(6, 7, weight=1)
G.add_edge(7, 8, weight=3)
_test_stoer_wagner(G, 4)
def test_weight_name():
G = nx.Graph()
G.add_edge(1, 2, weight=1, cost=8)
G.add_edge(1, 3, cost=2)
G.add_edge(2, 3, cost=4)
_test_stoer_wagner(G, 6, weight='cost')
def test_exceptions():
G = nx.Graph()
assert_raises(nx.NetworkXError, nx.stoer_wagner, G)
G.add_node(1)
assert_raises(nx.NetworkXError, nx.stoer_wagner, G)
G.add_node(2)
assert_raises(nx.NetworkXError, nx.stoer_wagner, G)
G.add_edge(1, 2, weight=-2)
assert_raises(nx.NetworkXError, nx.stoer_wagner, G)
G = nx.DiGraph()
assert_raises(nx.NetworkXNotImplemented, nx.stoer_wagner, G)
G = nx.MultiGraph()
assert_raises(nx.NetworkXNotImplemented, nx.stoer_wagner, G)
G = nx.MultiDiGraph()
assert_raises(nx.NetworkXNotImplemented, nx.stoer_wagner, G)
|