5 if(psdata->primalundo != NULL)
6 mat = psdata->primalundo->tracker;
7 - solution = lp->full_solution + lp->presolve_undo->orig_rows;
8 + solution = lp->full_solution == NULL ? NULL : lp->full_solution + lp->presolve_undo->orig_rows;
9 slacks = lp->full_solution;
16 /* Store the active/current pricing type */
17 if(isdual == AUTOMATIC)
18 - isdual = (MYBOOL) lp->edgeVector[0];
19 + isdual = lp->edgeVector[0] != 0.0;
21 lp->edgeVector[0] = isdual;