Skip to content

Commit

Permalink
Fixing a that vs. which mistake in an error message
Browse files Browse the repository at this point in the history
  • Loading branch information
emma58 committed Aug 16, 2023
1 parent 1cb37aa commit a63689c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyomo/contrib/fbbt/fbbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
)
Expand Down

0 comments on commit a63689c

Please sign in to comment.