Skip to content

Commit b531af8

Browse files
committed
make format
1 parent 109e475 commit b531af8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

vpr/src/route/rr_graph_generation/rr_graph_area.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,7 @@ static void count_bidir_routing_transistors(int num_switch, float R_minW_nmos, f
292292
// Get most frequent ipin switch
293293
auto most_frequent_ipin_switch_it = std::ranges::max_element(
294294
ipin_switch_count,
295-
[](const auto& a, const auto& b) noexcept { return a.second < b.second; }
296-
);
295+
[](const auto& a, const auto& b) noexcept { return a.second < b.second; });
297296
VTR_ASSERT(most_frequent_ipin_switch_it != ipin_switch_count.end());
298297
RRSwitchId most_frequent_ipin_switch = most_frequent_ipin_switch_it->first;
299298

@@ -494,8 +493,7 @@ static void count_unidir_routing_transistors(std::vector<t_segment_inf>& /*segme
494493
// Get most frequent ipin switch
495494
auto most_frequent_ipin_switch_it = std::ranges::max_element(
496495
ipin_switch_count,
497-
[](const auto& a, const auto& b) noexcept { return a.second < b.second; }
498-
);
496+
[](const auto& a, const auto& b) noexcept { return a.second < b.second; });
499497
VTR_ASSERT(most_frequent_ipin_switch_it != ipin_switch_count.end());
500498
RRSwitchId most_frequent_ipin_switch = most_frequent_ipin_switch_it->first;
501499

0 commit comments

Comments
 (0)