(self, key="sym")
| 557 | self._adj.sym_norm() |
| 558 | |
| 559 | def normalize(self, key="sym"): |
| 560 | assert key in ["row", "sym", "col"], "Support row/col/sym normalization" |
| 561 | getattr(self, f"{key}_norm")() |
| 562 | |
| 563 | def is_symmetric(self): |
| 564 | return self._adj.is_symmetric() |
no outgoing calls
no test coverage detected