Skip to content

Commit 8c2a295

Browse files
committed
Revert "Merge pull request #514 from bknueven/fixup500"
This reverts commit fd27967, reversing changes made to 6a09c0e.
1 parent b843121 commit 8c2a295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mpisppy/cylinders/spcommunicator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)