@@ -191,11 +191,15 @@ void add_node_to_heap(
191191 float backward_path_delay,
192192 float backward_path_congestion,
193193 float R_upstream) {
194- t_heap* hptr = prepare_to_add_node_to_heap (
195- heap,
196- rr_node_route_inf, inode, total_cost,
197- prev_edge, backward_path_cost, backward_path_delay,
198- backward_path_congestion, R_upstream);
194+ t_heap* hptr = prepare_to_add_node_to_heap (heap,
195+ rr_node_route_inf,
196+ inode,
197+ total_cost,
198+ prev_edge,
199+ backward_path_cost,
200+ backward_path_delay,
201+ backward_path_congestion,
202+ R_upstream);
199203 if (hptr) {
200204 heap->add_to_heap (hptr);
201205 }
@@ -215,10 +219,15 @@ void push_back_node(
215219 float backward_path_delay,
216220 float backward_path_congestion,
217221 float R_upstream) {
218- t_heap* hptr = prepare_to_add_node_to_heap (
219- heap,
220- rr_node_route_inf, inode, total_cost, prev_edge,
221- backward_path_cost, backward_path_delay, backward_path_congestion, R_upstream);
222+ t_heap* hptr = prepare_to_add_node_to_heap (heap,
223+ rr_node_route_inf,
224+ inode,
225+ total_cost,
226+ prev_edge,
227+ backward_path_cost,
228+ backward_path_delay,
229+ backward_path_congestion,
230+ R_upstream);
222231 if (hptr) {
223232 heap->push_back (hptr);
224233 }
0 commit comments