Problème typique et méthode d'exécution
Dans le graphe non orienté $ G = (V, E) $, on suppose qu'un poids non négatif $ w_ {ij} $ est donné à chaque côté $ e_ {ij} = (v_i, v_j) \ dans E $. À ce stade, trouvez $ V_1, V_2 (= V \ setminus V_1) $ qui maximise $ \ sum_ {v_i \ in V_1, v_j \ in V_2} {w_ {ij}} $.
usage
Signature: maximum_cut(g, weight='weight')
Docstring:
Problème de coupe maximum
contribution
g:Graphique(node:weight)
weight:Caractère d'attribut de poids
production
Poids de coupe totaux et une liste de numéros de sommets
python
#Données CSV
import pandas as pd, networkx as nx, matplotlib.pyplot as plt
from ortoolpy import graph_from_table, networkx_draw, maximum_cut
tbn = pd.read_csv('data/node0.csv')
tbe = pd.read_csv('data/edge0.csv')
g = graph_from_table(tbn, tbe)[0]
t = maximum_cut(g)
pos = networkx_draw(g, node_color='white')
nx.draw_networkx_nodes(g, pos, nodelist=t[1])
plt.show()
print(t)
résultat
(27.0, [2, 4, 5])
python
# pandas.DataFrame
from ortoolpy.optimization import MaximumCut
MaximumCut('data/node0.csv','data/edge0.csv')[1]
id | x | y | demand | weight | |
---|---|---|---|---|---|
2 | 2 | 10 | 5 | 0 | 1 |
4 | 4 | 2 | 2 | 1 | 2 |
5 | 5 | 0 | 5 | 1 | 1 |
python
#Données aléatoires
import networkx as nx, matplotlib.pyplot as plt
from ortoolpy import networkx_draw
g = nx.random_graphs.fast_gnp_random_graph(10, 0.3, 4)
for i, j in g.edges():
g.adj[i][j]['weight'] = 1
t = maximum_cut(g)
pos = networkx_draw(g, nx.spring_layout(g), node_color='white')
nx.draw_networkx_nodes(g, pos, nodelist=t[1])
plt.show()
Recommended Posts