Is it possible to manually perform a pivot in the Clp dual simplex
method?  I have in mind something like the functionality described
by the comments below:<br>
<br>
/* Pivot out a variable and choose an incoing one.&nbsp; Assumes dual<br>
&nbsp;&nbsp; feasible - will not go through a reduced cost.&nbsp; <br>
&nbsp;&nbsp; Returns step length in theta<br>
&nbsp;&nbsp; Returns ray in ray_ (or NULL if no pivot)<br>
&nbsp;&nbsp; Return codes as before but -1 means no acceptable pivot<br>
*/<br>
int <br>
ClpSimplexDual::pivotResult()<br>
{<br>
&nbsp; abort();<br>
&nbsp; return 0;<br>
}<br>
<br>
Thanks,<br>
-Richard<br>