12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <html lang="en">
- <head>
- <title>Additional glpk notes - 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="glpk.html#glpk" title="glpk">
- <link rel="prev" href="glpk-errors.html#glpk-errors" title="glpk errors">
- <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="Additional-glpk-notes"></a>
- <p>
- Previous: <a rel="previous" accesskey="p" href="glpk-errors.html#glpk-errors">glpk errors</a>,
- Up: <a rel="up" accesskey="u" href="glpk.html#glpk">glpk</a>
- <hr>
- </div>
- <h4 class="subsection">D.4.4 Additional <code>glpk</code> notes</h4>
- <p>A sparse matrix representation of <var>m</var> is used because in practice
- <a name="index-sparse-matrix-716"></a>most linear programming problems have very sparse systems of equations.
- <p>Only the constraint of non-negativity is admitted. Other
- <a name="index-constraints-717"></a>constraints such as upper bounds must be effected through a change of
- variables if required.
- <p>The <code>glpk</code> library has a small memory leak, which <code>avram</code>
- corrects by methods described in <a href="Memory-leaks.html#Memory-leaks">Memory leaks</a>.
- </body></html>
|