glpk-output.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <html lang="en">
  2. <head>
  3. <title>glpk output - avram - a virtual machine code interpreter</title>
  4. <meta http-equiv="Content-Type" content="text/html">
  5. <meta name="description" content="avram - a virtual machine code interpreter">
  6. <meta name="generator" content="makeinfo 4.13">
  7. <link title="Top" rel="start" href="index.html#Top">
  8. <link rel="up" href="glpk.html#glpk" title="glpk">
  9. <link rel="prev" href="glpk-input-parameters.html#glpk-input-parameters" title="glpk input parameters">
  10. <link rel="next" href="glpk-errors.html#glpk-errors" title="glpk errors">
  11. <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
  12. <meta http-equiv="Content-Style-Type" content="text/css">
  13. <style type="text/css"><!--
  14. pre.display { font-family:inherit }
  15. pre.format { font-family:inherit }
  16. pre.smalldisplay { font-family:inherit; font-size:smaller }
  17. pre.smallformat { font-family:inherit; font-size:smaller }
  18. pre.smallexample { font-size:smaller }
  19. pre.smalllisp { font-size:smaller }
  20. span.sc { font-variant:small-caps }
  21. span.roman { font-family:serif; font-weight:normal; }
  22. span.sansserif { font-family:sans-serif; font-weight:normal; }
  23. --></style>
  24. </head>
  25. <body>
  26. <div class="node">
  27. <a name="glpk-output"></a>
  28. <p>
  29. Next:&nbsp;<a rel="next" accesskey="n" href="glpk-errors.html#glpk-errors">glpk errors</a>,
  30. Previous:&nbsp;<a rel="previous" accesskey="p" href="glpk-input-parameters.html#glpk-input-parameters">glpk input parameters</a>,
  31. Up:&nbsp;<a rel="up" accesskey="u" href="glpk.html#glpk">glpk</a>
  32. <hr>
  33. </div>
  34. <h4 class="subsection">D.4.2 <code>glpk</code> output</h4>
  35. <p>If a solution meeting the constraints is found, it is returned as a
  36. list of pairs of the form <code>&lt;(</code><var>i</var><code>,</code><var>x</var><code>)...&gt;</code>, where each
  37. <var>i</var> is a natural number and each <var>x</var> is a floating point
  38. number giving the value obtained for the <var>i</var>-th variable numbered
  39. from zero. Any values of <var>i</var> that are omitted from the list
  40. indicate that the corresponding variable has a value of zero.
  41. <p>If no solution is found due to infeasibility or because <code>glpk</code>
  42. just didn't find one, an empty list is returned. The lack of a
  43. solution is not treated as an exceptional condition.
  44. </body></html>