| 138 | } |
| 139 | |
| 140 | void TilerEngine::clean_up(WireNetwork& wire_network, Float tol) { |
| 141 | remove_duplicated_vertices(wire_network, tol); |
| 142 | remove_duplicated_edges(wire_network); |
| 143 | } |
| 144 | |
| 145 | void TilerEngine::remove_duplicated_vertices(WireNetwork& wire_network, Float tol) { |
| 146 | const size_t num_input_vertices = wire_network.get_num_vertices(); |
nothing calls this directly
no test coverage detected