<font size=2 face="sans-serif">In our application, we pose biggish problems
to Cbc, which then goes off and spends quite a while solving them. &nbsp;Even
before we get the optimal solution, we can make use of any solutions Cbc
finds along the way.</font>
<br>
<br><font size=2 face="sans-serif">So, during the solution process, when
we see that Cbc has improved its best result, we query the CbcModel using
bestSolution().</font>
<br>
<br><font size=2 face="sans-serif">Recently we've started encountering
a problem where the returned solution is much shorter than expected. &nbsp;Looking
at the number of columns in the solution makes us suspect that we are seeing
solutions to the processed model, and not to the original one. &nbsp;That
is, Cbc is boiling the problem down to a smaller, equivalent problem, and
solving that; when it's completely finished it inverts the transformation
to give a solution to the original problem. &nbsp;But if we interrupt it,
we find an intermediate solution to the transformed problem, not the original.</font>
<br>
<br><font size=2 face="sans-serif">This makes a certain amount of sense,
but it didn't use to happen. &nbsp;In a previous Cbc version, either the
model was not compressed in the same way, or bestSolution() inverted the
compression regardless of whether the solution was complete.</font>
<br>
<br><font size=2 face="sans-serif">Is this change in behavior intentional?
&nbsp;If so, does there remain any supported way to extract an intermediate
solution to the problem as posed?</font>
<br>
<br><font size=2 face="sans-serif">Thank you; our experience with Cbc has
been overwhelmingly positive, and we're sure there's an easy solution to
this glitch as there have been for every problem we've encountered in the
past.</font>