QSprob QSread_prob (const char *filename, const char *filetype)
QSprob p; /* Read a problem in MPS format given in the file binky.mps */ p = QSread_prob ("binky.mps", "MPS"); if (p == (QSprob) NULL) { fprintf (stderr, "Unable to read and load the LP\n"); } else { /* We can solve and/or modify the problem using the handle p */ }