I have a linear programming model<br><br>OsiSolverInterface * lp;<br><br>which I use as follows:<br><br>after the initialSolve, I modify some of the row lower bounds, and then resolve.  Since I&#39;m doing this a lot, I want to turn off the messages from the solver.<br>
<br>I do<br><br>lp-&gt;messageHandler()-&gt;setLogLevel(0);<br><br>just before doing<br><br>lp-&gt;resolve();<br><br>However, the messages are still coming out on stdout!  Why can&#39;t I get it to shut up?<br><br>Victor<br>