Skip to content

Commit 45f5623

Browse files
committed
Formating fix
1 parent e0e70ea commit 45f5623

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vpr/src/route/connection_based_routing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Connection_based_routing_resources::Connection_based_routing_resources()
3636
auto& net_lower_bound_connection_delay = lower_bound_connection_delay[net_id];
3737
auto& net_forcible_reroute_connection_flag = forcible_reroute_connection_flag[net_id];
3838

39-
unsigned int num_pins = cluster_ctx.clb_nlist.net_pins(net_id).size(); // not looking up on the SOURCE pin
39+
unsigned int num_pins = cluster_ctx.clb_nlist.net_pins(net_id).size(); // not looking up on the SOURCE pin
4040
net_lower_bound_connection_delay.resize(num_pins, std::numeric_limits<float>::infinity()); // will be filled in after the 1st iteration's
4141
net_forcible_reroute_connection_flag.reserve(num_pins); // all false to begin with
4242

vpr/src/timing/net_delay.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static void load_one_net_delay(ClbNetPinsMatrix<float>& net_delay, ClusterNetId
9797
static void load_one_net_delay_recurr(t_rt_node* node, ClusterNetId net_id) {
9898
/* This routine recursively traverses the route tree, and copies the Tdel of the sink_type nodes *
9999
* into the map. */
100-
if (node->net_pin_index != OPEN) { // value of OPEN indicates a non-SINK
100+
if (node->net_pin_index != OPEN) { // value of OPEN indicates a non-SINK
101101
ipin_to_Tdel_map[node->net_pin_index] = node->Tdel; // add to the map, process current sink-type node
102102
}
103103

0 commit comments

Comments
 (0)