12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <html lang="en">
- <head>
- <title>lpsolve return values - 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="lpsolve.html#lpsolve" title="lpsolve">
- <link rel="prev" href="lpsolve-calling-conventions.html#lpsolve-calling-conventions" title="lpsolve calling conventions">
- <link rel="next" href="lpsolve-errors.html#lpsolve-errors" title="lpsolve 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="lpsolve-return-values"></a>
- <p>
- Next: <a rel="next" accesskey="n" href="lpsolve-errors.html#lpsolve-errors">lpsolve errors</a>,
- Previous: <a rel="previous" accesskey="p" href="lpsolve-calling-conventions.html#lpsolve-calling-conventions">lpsolve calling conventions</a>,
- Up: <a rel="up" accesskey="u" href="lpsolve.html#lpsolve">lpsolve</a>
- <hr>
- </div>
- <h4 class="subsection">D.15.2 <code>lpsolve</code> return values</h4>
- <p>If a feasible and optimal solution is found, a list of values for the variables
- is returned in the form <code><(</code><var>i</var><code>,</code><var>x</var><code>)...></code>, where <var>i</var> is a natural
- number and <var>x</var> is a floating point number giving the value of the <var>i</var>-th
- variable numbered from zero. Values of <var>x</var> equal to zero are omitted.
- </body></html>
|