Hello jo37 a big thank you for porting GLPK to Perl/PDL.

I was wondering whether it is possible as it is to specify the problem as a MathProg program (e.g. https://iuuk.mff.cuni.cz/~bohm/texts/mathprog_intro.html).

I know there is examples/glpsol.c in the GLPK distribution which produces an executable which accepts a MathProg program and solves it. I guess it breaks down the program directives into GLPK API calls somehow, but it is too complex for me to decypher. I was wondering if you know if there is GLPK API call to do this.

I have modified trivially examples/glpsol.c so as to provide glpsol(int argc, char **argv) which then I provide via XS to Perl (published here https://github.com/hadjiprocopis/perl-algorithm-glpk-glpsol). This is better than shelling out to glpsol executable but it is quite lame not only because it works like the executable, with a CLI params array but also it requires the program to be written to disk and it writes the solution to disk as well. So, I am looking for a better solution, namely a proper GLPK API function which reads in MathProg and outputs solution matrix.

bw, bliako


In reply to Re: GLPK integration by bliako
in thread GLPK integration by jo37

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.