 |
/* p is an initialized QSprob, a handle to an existing LP problem. */
/* cstat and rstat are arrays containing the basis information, */
/* and rownorms contains the dual steepest-edge norms for the rows. */
int rval;
rval = QSload_basis_and_row_norms_array (p, cstat, rstat, rownorms);
if (rval) {
fprintf (stderr,
"Could not load the basis+norms, error code %d\n", rval);
}
|