Skip to content

Commit 26118a9

Browse files
committed
make format
1 parent 2e9a2d6 commit 26118a9

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

vpr/src/route/route_utils.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -674,15 +674,13 @@ void update_router_info_and_check_bp(bp_router_type type, int net_id) {
674674
}
675675
#endif
676676

677-
bool is_net_routed(ParentNetId net_id)
678-
{
677+
bool is_net_routed(ParentNetId net_id) {
679678
const auto& route_ctx = g_vpr_ctx.routing();
680679
//Note: we can't use route_ctx.net_status.is_routed(atom_net_id), because net_status is filled only when route stage took place
681680
return route_ctx.route_trees[net_id].has_value();
682681
}
683682

684-
bool is_net_fully_absorbed(ParentNetId net_id)
685-
{
683+
bool is_net_fully_absorbed(ParentNetId net_id) {
686684
const RRGraphView& rr_graph = g_vpr_ctx.device().rr_graph;
687685
const RoutingContext& route_ctx = g_vpr_ctx.routing();
688686

@@ -700,4 +698,4 @@ bool is_net_fully_absorbed(ParentNetId net_id)
700698
}
701699

702700
return is_absorbed;
703-
}
701+
}

vpr/src/route/route_utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,4 @@ bool is_net_routed(ParentNetId net_id);
182182
* @param net_id The identifier of the net to be checked.
183183
* @return true if the net is fully absorbed (uses no routing channels); false otherwise.
184184
*/
185-
bool is_net_fully_absorbed(ParentNetId net_id);
185+
bool is_net_fully_absorbed(ParentNetId net_id);

0 commit comments

Comments
 (0)