> In the API, there are some utility functions to read/write from > MPS/CPLEX files like lpx_read_mps(char* fname). > Is there a way to avoid using files and pass directly the content of > the files via char* ?
Such a feature is not implemented. However, you can write your own mps reader using lpx_read_mps as an example. This is relatively easy, because all input is performed by the routine read_card, which has to be replaced (see file glplpx8a.c). _______________________________________________ Help-glpk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-glpk
