示例#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
示例#2
0
 def adj_mat(graph, weight=None):
     if weight is not None:
         weight = graph.edge_properties[weight]
     return _adj(graph, weight).T
示例#3
0
文件: globals.py 项目: openube/NNGT
 def adj_mat(graph, weights=None):
     if weights is not None:
         weights = graph.edge_properties[weights]
     return _adj(graph, weights).T
示例#4
0
 def adj_mat(graph, weight=None):
     if weight is not None:
         weight = graph.edge_properties[weight]
     return _adj(graph, weight).T