Skip to content

Commit d7a9ea4

Browse files
committed
[VPR] Fixed type error in the heap of connection router
1 parent 5c9d3b7 commit d7a9ea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/route/connection_router.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ void ConnectionRouter<Heap>::timing_driven_add_to_heap(const t_conn_cost_params
577577
if (rcv_path_manager.is_enabled() && current->path_data) {
578578
next_ptr->path_data->path_rr = current->path_data->path_rr;
579579
next_ptr->path_data->edge = current->path_data->edge;
580-
next_ptr->path_data->path_rr.emplace_back(from_node);
580+
next_ptr->path_data->path_rr.emplace_back(RRNodeId(from_node));
581581
next_ptr->path_data->edge.emplace_back(from_edge);
582582
}
583583

0 commit comments

Comments
 (0)