(self)
| 1163 | return self._is_multigraph |
| 1164 | |
| 1165 | def _check_unmodified(self): |
| 1166 | check_argument( |
| 1167 | self.signature == self._saved_signature, "Graph has been modified!" |
| 1168 | ) |
| 1169 | |
| 1170 | @staticmethod |
| 1171 | def _load_from_graphar(path, sess, **kwargs): |
no test coverage detected