Alias of :meth:`adj`
(self, etype=None)
| 3757 | return deg |
| 3758 | |
| 3759 | def adjacency_matrix(self, etype=None): |
| 3760 | """Alias of :meth:`adj`""" |
| 3761 | return self.adj(etype) |
| 3762 | |
| 3763 | def adj(self, etype=None, eweight_name=None): |
| 3764 | """Get the adjacency matrix of the graph. |
no test coverage detected