Skip to content

Commit

Permalink
Remove printing to stdout in CglConicOA.
Browse files Browse the repository at this point in the history
  • Loading branch information
aykutbulut committed Jan 13, 2018
1 parent 6e86468 commit 594b71a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/CglConicOA/CglConicOA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ void CglConicOA::generateCuts(OsiSolverInterface const & si, OsiCuts & cuts,
}

// check solution
for (int i=0; i<n; ++i) {
if (sol[i]<-1e30 || sol[i]>1e30) {
std::cout << "Very large/small value in solution "
<< i
<< " "
<< sol[i]
<< std::endl;
}
}
// for (int i=0; i<n; ++i) {
// if (sol[i]<-1e30 || sol[i]>1e30) {
// std::cout << "Very large/small value in solution "
// << i
// << " "
// << sol[i]
// << std::endl;
// }
// }



Expand Down

0 comments on commit 594b71a

Please sign in to comment.