| 5686 | } |
| 5687 | |
| 5688 | void remove_edge(vertex_id_t from, vertex_id_t to) noexcept { |
| 5689 | edges_.erase(vertex_ids_t(from, to)); |
| 5690 | edges_.erase(vertex_ids_t(to, from)); |
| 5691 | } |
| 5692 | |
| 5693 | void compact() noexcept { |
| 5694 | // The `std::map` is already a balanced BST, so no need to do anything here. |
no test coverage detected