|
|
__init__(self,
data=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
|
|
|
|
|
|
|
degree(self)
Return the number of edges. |
|
|
|
|
get_edges(self,
neighbor=None)
Return a copy of all edges. |
|
|
|
|
get_edges_in(self,
from_=None)
Return a copy of the list of the entering edges. |
|
|
|
|
get_edges_out(self,
to_=None)
Return a copy of the list of the outgoing edges. |
|
|
|
|
in_degree(self)
Return the number of entering edges. |
|
|
|
|
|
|
|
|
|
|
out_degree(self)
Return the number of outgoing edges. |
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|