Returns True if graph is a multigraph, False otherwise.
(self)
| 1582 | nx._clear_cache(self) |
| 1583 | |
| 1584 | def is_multigraph(self): |
| 1585 | """Returns True if graph is a multigraph, False otherwise.""" |
| 1586 | return False |
| 1587 | |
| 1588 | def is_directed(self): |
| 1589 | """Returns True if graph is directed, False otherwise.""" |
no outgoing calls