Skip to content

Commit 899b63a

Browse files
committed
make format
1 parent 66f9a1a commit 899b63a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vpr/src/route/router_lookahead_map.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -659,9 +659,9 @@ static util::Cost_Entry get_nearby_cost_entry_average_neighbour(int from_layer_n
659659
VTR_ASSERT(std::isnan(f_wire_cost_map[from_layer_num][chan_index][segment_index][to_layer_num][missing_dx][missing_dy].delay));
660660
VTR_ASSERT(std::isnan(f_wire_cost_map[from_layer_num][chan_index][segment_index][to_layer_num][missing_dx][missing_dy].congestion));
661661

662-
int neighbour_num = 0; // Number of neighbours with valid entry
663-
float neighbour_delay_sum = 0; // Acc of valid delay costs
664-
float neighbour_cong_sum = 0; // Acc of valid congestion costs
662+
int neighbour_num = 0; // Number of neighbours with valid entry
663+
float neighbour_delay_sum = 0; // Acc of valid delay costs
664+
float neighbour_cong_sum = 0; // Acc of valid congestion costs
665665
std::array<int, 3> window = {-1, 0, 1}; // Average window size
666666
for (int dx : window) {
667667
int neighbour_x = missing_dx + dx;

0 commit comments

Comments
 (0)