Example #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
Example #2
0
 def adj_mat(graph, weight=None):
     if weight is not None:
         weight = graph.edge_properties[weight]
     return _adj(graph, weight).T
Example #3
0
 def adj_mat(graph, weights=None):
     if weights is not None:
         weights = graph.edge_properties[weights]
     return _adj(graph, weights).T
Example #4
0
 def adj_mat(graph, weight=None):
     if weight is not None:
         weight = graph.edge_properties[weight]
     return _adj(graph, weight).T