> I want to solve in glpk the following problem (matricial forms): > > Minimizar f > f=cx > subjecto to > Ax=b > Cx<=d > > in glpk it is possible to introduce two matrix using the function > LPX_LOAD_MATRIX ???????? or simply I have to turn the restrictions > of the type <= to = and load only one matrix ?????
You should load the only matrix having A and C as its submatrices and then assign types and bounds to rows (constraints) using routine lpx_set_row_bnds. _______________________________________________ Help-glpk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-glpk
