(self, u_of_edge, v_of_edge, weight)
| 856 | self._clear_cache() |
| 857 | |
| 858 | def add_weighted_edge(self, u_of_edge, v_of_edge, weight): |
| 859 | self._add_one_edge(u_of_edge, v_of_edge, edge_attr={"weight": weight}) |
| 860 | self._clear_cache() |
| 861 | |
| 862 | def add_edges(self, edges_for_adding, edges_attr: List[Dict] = []): |
| 863 | """Add a list of edges. |
nothing calls this directly
no test coverage detected