Skip to content

Commit

Permalink
remove redundant lines
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-haoze committed Jan 6, 2024
1 parent f665403 commit 28a33f4
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/engine/SignConstraint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,6 @@ void SignConstraint::notifyLowerBound( unsigned variable, double bound )
!FloatUtils::gt( bound, getLowerBound( variable ) ) )
return;

if ( variable == 1637 )
std::cout << "Updating variable LB to " << bound << std::endl;

// Otherwise - update bound
setLowerBound( variable, bound );

Expand Down Expand Up @@ -442,8 +439,6 @@ void SignConstraint::notifyUpperBound( unsigned variable, double bound )
!FloatUtils::lt( bound, getUpperBound( variable ) ) )
return;

if ( variable == 1637 )
std::cout << "Updating variable UB to " << bound << std::endl;
// Otherwise - update bound
setUpperBound( variable, bound );

Expand Down

0 comments on commit 28a33f4

Please sign in to comment.