123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <html lang="en">
- <head>
- <title>glpk - avram - a virtual machine code interpreter</title>
- <meta http-equiv="Content-Type" content="text/html">
- <meta name="description" content="avram - a virtual machine code interpreter">
- <meta name="generator" content="makeinfo 4.13">
- <link title="Top" rel="start" href="index.html#Top">
- <link rel="up" href="External-Libraries.html#External-Libraries" title="External Libraries">
- <link rel="prev" href="fftw.html#fftw" title="fftw">
- <link rel="next" href="gsldif.html#gsldif" title="gsldif">
- <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
- <meta http-equiv="Content-Style-Type" content="text/css">
- <style type="text/css"><!--
- pre.display { font-family:inherit }
- pre.format { font-family:inherit }
- pre.smalldisplay { font-family:inherit; font-size:smaller }
- pre.smallformat { font-family:inherit; font-size:smaller }
- pre.smallexample { font-size:smaller }
- pre.smalllisp { font-size:smaller }
- span.sc { font-variant:small-caps }
- span.roman { font-family:serif; font-weight:normal; }
- span.sansserif { font-family:sans-serif; font-weight:normal; }
- --></style>
- </head>
- <body>
- <div class="node">
- <a name="glpk"></a>
- <p>
- Next: <a rel="next" accesskey="n" href="gsldif.html#gsldif">gsldif</a>,
- Previous: <a rel="previous" accesskey="p" href="fftw.html#fftw">fftw</a>,
- Up: <a rel="up" accesskey="u" href="External-Libraries.html#External-Libraries">External Libraries</a>
- <hr>
- </div>
- <h3 class="section">D.4 <code>glpk</code></h3>
- <p>The <code>glpk</code> library (<a href="ftp://ftp.gnu.org/pub/gnu/glpk/">ftp://ftp.gnu.org/pub/gnu/glpk/</a>) solves
- linear programming problems by the either the simplex algorithm or
- <a name="index-linear-programming-714"></a>an interior point method.
- <p>The API for C client programs involves a complicated protocol with
- many optional settings, which is simplified for the virtual machine
- interface. Specifically, the library gives a choice of only two
- functions, which can be expressed in the following forms.
- <pre class="example"> library('glpk','simplex')
-
- library('glpk','interior')
- </pre>
- <p class="noindent">These functions have the same calling convention and should return
- generally the same output for identical inputs, but differences in
- performance, precision, and maybe correctness can be expected.
- The remainder of this section applies to both of them.
- <ul class="menu">
- <li><a accesskey="1" href="glpk-input-parameters.html#glpk-input-parameters">glpk input parameters</a>
- <li><a accesskey="2" href="glpk-output.html#glpk-output">glpk output</a>
- <li><a accesskey="3" href="glpk-errors.html#glpk-errors">glpk errors</a>
- <li><a accesskey="4" href="Additional-glpk-notes.html#Additional-glpk-notes">Additional glpk notes</a>
- </ul>
- </body></html>
|