@@ -268,7 +268,7 @@ class determinism_bfs_worker_t
268268 {
269269 record_event (bb_event_t <i_t , f_t >::make_branched (this ->clock ,
270270 this ->worker_id ,
271- node->node_id ,
271+ node->creation_seq ,
272272 down_child_id,
273273 up_child_id,
274274 node->lower_bound ,
@@ -282,7 +282,7 @@ class determinism_bfs_worker_t
282282 void record_integer_solution (mip_node_t <i_t , f_t >* node, f_t objective)
283283 {
284284 record_event (bb_event_t <i_t , f_t >::make_integer_solution (
285- this ->clock , this ->worker_id , node->node_id , objective));
285+ this ->clock , this ->worker_id , node->creation_seq , objective));
286286 ++nodes_processed_this_horizon;
287287 ++this ->total_nodes_processed ;
288288 ++this ->total_integer_solutions ;
@@ -291,7 +291,7 @@ class determinism_bfs_worker_t
291291 void record_fathomed (mip_node_t <i_t , f_t >* node, f_t lower_bound)
292292 {
293293 record_event (bb_event_t <i_t , f_t >::make_fathomed (
294- this ->clock , this ->worker_id , node->node_id , lower_bound));
294+ this ->clock , this ->worker_id , node->creation_seq , lower_bound));
295295 ++nodes_processed_this_horizon;
296296 ++this ->total_nodes_processed ;
297297 ++total_nodes_pruned;
@@ -300,15 +300,16 @@ class determinism_bfs_worker_t
300300 void record_infeasible (mip_node_t <i_t , f_t >* node)
301301 {
302302 record_event (
303- bb_event_t <i_t , f_t >::make_infeasible (this ->clock , this ->worker_id , node->node_id ));
303+ bb_event_t <i_t , f_t >::make_infeasible (this ->clock , this ->worker_id , node->creation_seq ));
304304 ++nodes_processed_this_horizon;
305305 ++this ->total_nodes_processed ;
306306 ++total_nodes_infeasible;
307307 }
308308
309309 void record_numerical (mip_node_t <i_t , f_t >* node)
310310 {
311- record_event (bb_event_t <i_t , f_t >::make_numerical (this ->clock , this ->worker_id , node->node_id ));
311+ record_event (
312+ bb_event_t <i_t , f_t >::make_numerical (this ->clock , this ->worker_id , node->creation_seq ));
312313 ++nodes_processed_this_horizon;
313314 ++this ->total_nodes_processed ;
314315 }
0 commit comments