We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e0ec97 commit 13d8a0dCopy full SHA for 13d8a0d
libs/librrgraph/src/base/rr_graph_storage.h
@@ -824,9 +824,6 @@ class t_rr_graph_storage {
824
template <typename t_comp_func>
825
void sort_edges(t_comp_func comparison_function) {
826
827
- // TODO: If you're from the future where VtR is compiled with at least C++23, please rewrite this function to use std::ranges::zip_view instead.
828
- // That would make the sorting in-place and much more efficient.
829
-
830
size_t num_edges = edge_src_node_.size();
831
std::vector<size_t> edge_indices(num_edges, 0);
832
0 commit comments