Esempio n. 1
0
 def adj_mat(graph, weight=None):
     if weight not in (None, False):
         weight = graph.edge_properties[weight]
         return _adj(graph, weight).T
     return _adj(graph).T
Esempio n. 2
0
 def adj_mat(graph, weight=None):
     if weight is not None:
         weight = graph.edge_properties[weight]
     return _adj(graph, weight).T
Esempio n. 3
0
 def adj_mat(graph, weights=None):
     if weights is not None:
         weights = graph.edge_properties[weights]
     return _adj(graph, weights).T
Esempio n. 4
0
 def adj_mat(graph, weight=None):
     if weight is not None:
         weight = graph.edge_properties[weight]
     return _adj(graph, weight).T