File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -471,7 +471,7 @@ def receive_nonant_bounds(self):
471471 if xvarlb is None :
472472 xvarlb = - inf
473473 if recv_buf [ci ] > xvarlb :
474- # global_toc(f"{self.__class__.__name__}: tightened {xvar.name} lower bound from {xvar.lb} to {recv_buf[ci]}, value: {xvar.value}", self.cylinder_rank == 0)
474+ global_toc (f"{ self .__class__ .__name__ } : tightened { xvar .name } lower bound from { xvar .lb } to { recv_buf [ci ]} , value: { xvar .value } " , self .cylinder_rank == 0 )
475475 xvar .lb = recv_buf [ci ]
476476 bounds_modified += 1
477477 for idx , _ , recv_buf in self .receive_field_spcomms [Field .NONANT_UPPER_BOUNDS ]:
@@ -484,7 +484,7 @@ def receive_nonant_bounds(self):
484484 if xvarub is None :
485485 xvarub = inf
486486 if recv_buf [ci ] < xvarub :
487- # global_toc(f"{self.__class__.__name__}: tightened {xvar.name} upper bound from {xvar.ub} to {recv_buf[ci]}, value: {xvar.value}", self.cylinder_rank == 0)
487+ global_toc (f"{ self .__class__ .__name__ } : tightened { xvar .name } upper bound from { xvar .ub } to { recv_buf [ci ]} , value: { xvar .value } " , self .cylinder_rank == 0 )
488488 xvar .ub = recv_buf [ci ]
489489 bounds_modified += 1
490490
You can’t perform that action at this time.
0 commit comments