@@ -191,11 +191,15 @@ void add_node_to_heap(
191
191
float backward_path_delay,
192
192
float backward_path_congestion,
193
193
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);
199
203
if (hptr) {
200
204
heap->add_to_heap (hptr);
201
205
}
@@ -215,10 +219,15 @@ void push_back_node(
215
219
float backward_path_delay,
216
220
float backward_path_congestion,
217
221
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);
222
231
if (hptr) {
223
232
heap->push_back (hptr);
224
233
}
0 commit comments