Hello Dirso, GMPL files can be solved using the standalone solver GLPSOL that comes with GLPK.
The GMPL documentation is in glpk-4.44\doc\gmpl.pdf of the GLPK source distribution available at ftp://ftp.gnu.org/gnu/glpk/glpk-4.44.tar.gz Alternatively you can use the API which only makes sense, if you want to integrate GLPK into a larger application or you need special solution methods like column generation. The GLPK api provides function glp_read_prob to read a problem formulated in GMPL. Alternatively you can build the problem by specifying columns, rows, and the matrix using API functions. See glpk-4.44\doc\glpk.pdf in the GLPK source distribution. Wrappers for C#, Java, and Python are available for the GLPK library, if you do not like programming in C. See http://en.wikibooks.org/wiki/GLPK for references. Best regards Xypron -------- Original-Nachricht -------- > Datum: Wed, 13 Oct 2010 16:29:07 -0300 > CC: [email protected] > Betreff: Re: [Help-glpk] Minimizing an array sum > Hi! > > Thank you for your answer! Is it possible to run it with glpk api? > > Thanks again, > Dirso > > 2010/10/13 glpk xypron <[email protected]> > -- Neu: GMX De-Mail - Einfach wie E-Mail, sicher wie ein Brief! Jetzt De-Mail-Adresse reservieren: http://portal.gmx.net/de/go/demail _______________________________________________ Help-glpk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-glpk
