我使用pygraphviz生成以下图表:
graph "Multiport-Switches" {
node [color="#dddddd",
label="\N",
shape=record,
style=filled
];
Switch0 [label="<1> 1|<2> 2|<3> 3|<4> 4|<5> 5|<6> 6|<7> 7|<8> 8"];
Switch1 [label="<1> 1|<2> 2|<3> 3|<4> 4|<5> 5|<6> 6|<7> 7|<8> 8"];
Switch0:1 -- Switch1:1;
Switch0:2 -- Switch1:2;
Switch0:3 -- Switch1:3;
Switch0:4 -- Switch1:4;
Switch0:5 -- Switch1:5;
Switch0:6 -- Switch1:6;
Switch0:7 -- Switch1:7;
Switch0:8 -- Switch1:8;
}
如果我遍历边缘,我可以使用以下代码查看所有这些代码:
for edge in G.edges():
print edge, edge.attr
边缘元组是&#34;相同&#34;正如您在下面的输出中所看到的那样,但它们仍然由属性区分。如果我想选择一个特定的,我可以在迭代时比较每个边的不同特定属性。
(u'Switch0', u'Switch1') {u'tailport': u'1', u'headport': u'1'}
(u'Switch0', u'Switch1') {u'tailport': u'2', u'headport': u'2'}
(u'Switch0', u'Switch1') {u'tailport': u'3', u'headport': u'3'}
(u'Switch0', u'Switch1') {u'tailport': u'4', u'headport': u'4'}
(u'Switch0', u'Switch1') {u'tailport': u'5', u'headport': u'5'}
(u'Switch0', u'Switch1') {u'tailport': u'6', u'headport': u'6'}
(u'Switch0', u'Switch1') {u'tailport': u'7', u'headport': u'7'}
(u'Switch0', u'Switch1') {u'tailport': u'8', u'headport': u'8'}
现在,如果我使用以下代码来获得一个优势:
edge = G.get_edge('Switch0', 'Switch1')
print edge, edge.attr
我只获得最后一个('Switch0', 'Switch1')
边缘,如下所示:
(u'Switch0', u'Switch1') {u'tailport': u'8', u'headport': u'8'}
除了最后的(u'Switch0', u'Switch1')
边缘而不迭代所有边缘,有没有办法获得特定的?通过在get_edge
或类似的方法中传递其他属性参数?
答案 0 :(得分:0)
我根据文档here找到了一个看起来像建议的解决方案:The optional key argument allows assignment of a key to the edge. This is especially useful to distinguish between parallel edges in multi-edge graphs (strict=False).
创建边时,add_edge
方法有一个可选的Key
参数,默认设置为None
。如果提供了唯一键,则在使用Key
检索边缘时可以使用此get_edge
。因此,如果我用这样的代码创建边:
# The for-loop will run from 1-8
for port in range(1, 9):
G.add_edge('Switch0', 'Switch1', key="{}-{}".format(port, port), headport = port, tailport = port)
然后我可以通过传递我之前以独特方式生成的密钥来检索特定边:
for port in range(1, 9):
edge = G.get_edge('Switch0', 'Switch1', key="{}-{}".format(port, port))
print edge, edge.attr