From a63689cad33b4dac956a3962e25b88b05af3b304 Mon Sep 17 00:00:00 2001 From: Emma Johnson Date: Wed, 16 Aug 2023 09:50:50 -0600 Subject: [PATCH] Fixing a that vs. which mistake in an error message --- pyomo/contrib/fbbt/fbbt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyomo/contrib/fbbt/fbbt.py b/pyomo/contrib/fbbt/fbbt.py index b8a2bf20c04..1b2fd0a18d9 100644 --- a/pyomo/contrib/fbbt/fbbt.py +++ b/pyomo/contrib/fbbt/fbbt.py @@ -1138,7 +1138,7 @@ def visiting_potential_leaf(self, node): ub = interval.inf if lb - self.feasibility_tol > ub: raise InfeasibleConstraintException( - 'Variable has a lower bound which is larger than its upper bound: {0}'.format( + 'Variable has a lower bound that is larger than its upper bound: {0}'.format( str(node) ) )