MCPcopy Create free account
hub / github.com/easy-graph/Easy-Graph / is_multigraph

Method is_multigraph

easygraph/classes/graph.py:1289–1291  ·  view source on GitHub ↗

Returns True if graph is a multigraph, False otherwise.

(self)

Source from the content-addressed store, hash-verified

1287 return False
1288
1289 def is_multigraph(self):
1290 """Returns True if graph is a multigraph, False otherwise."""
1291 return False
1292
1293 def copy(self):
1294 """Return a deep copy of the graph.

Callers 15

to_easygraph_graphFunction · 0.45
from_dict_of_listsFunction · 0.45
from_dict_of_dictsFunction · 0.45
_relabel_copyFunction · 0.45
from_pyGraphviz_agraphFunction · 0.45
to_pyGraphviz_agraphFunction · 0.45
_not_implemented_forFunction · 0.45
from_numpy_arrayFunction · 0.45
to_numpy_arrayFunction · 0.45
from_pandas_edgelistFunction · 0.45
from_scipy_sparse_arrayFunction · 0.45
set_edge_attributesFunction · 0.45

Calls

no outgoing calls