From eaeff31ff31f7a2bbaac0401fe7cfc4770acdec7 Mon Sep 17 00:00:00 2001 From: Bernard Knueven Date: Wed, 7 May 2025 13:26:38 -0600 Subject: [PATCH] comment out debug statements --- mpisppy/cylinders/spcommunicator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mpisppy/cylinders/spcommunicator.py b/mpisppy/cylinders/spcommunicator.py index 339059ec4..a0348aebd 100644 --- a/mpisppy/cylinders/spcommunicator.py +++ b/mpisppy/cylinders/spcommunicator.py @@ -412,7 +412,7 @@ def receive_nonant_bounds(self): if xvarlb is None: xvarlb = -inf if recv_buf[ci] > xvarlb: - 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) + # 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) xvar.lb = recv_buf[ci] bounds_modified += 1 for idx, _, recv_buf in self.receive_field_spcomms[Field.NONANT_UPPER_BOUNDS]: @@ -425,7 +425,7 @@ def receive_nonant_bounds(self): if xvarub is None: xvarub = inf if recv_buf[ci] < xvarub: - 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) + # 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) xvar.ub = recv_buf[ci] bounds_modified += 1