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