12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <html lang="en">
- <head>
- <title>kinsol exceptions - 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="kinsol.html#kinsol" title="kinsol">
- <link rel="prev" href="kinsol-output.html#kinsol-output" title="kinsol output">
- <link rel="next" href="Additional-kinsol-notes.html#Additional-kinsol-notes" title="Additional kinsol notes">
- <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="kinsol-exceptions"></a>
- <p>
- Next: <a rel="next" accesskey="n" href="Additional-kinsol-notes.html#Additional-kinsol-notes">Additional kinsol notes</a>,
- Previous: <a rel="previous" accesskey="p" href="kinsol-output.html#kinsol-output">kinsol output</a>,
- Up: <a rel="up" accesskey="u" href="kinsol.html#kinsol">kinsol</a>
- <hr>
- </div>
- <h4 class="subsection">D.9.3 <code>kinsol</code> exceptions</h4>
- <ul>
- <li>Any error messages that may be generated in the course of evaluating
- the functions <var>f</var> and <var>j</var> will propagate to the result
- returned by the <code>kinsol</code> library functions.
- <li>If there is insufficient memory to complete any operation, the result
- is a message of
- <pre class="example"> <'memory overflow'>
- </pre>
- <li>If the argument to the library function (i.e.,
- <code>(</code><var>f</var><code>,(</code><var>i</var><code>,</code><var>o</var><code>))</code> or
- <code>((</code><var>f</var><code>,</code><var>j</var><code>),(</code><var>i</var><code>,</code><var>o</var><code>))</code>) fails to meet the
- required specifications in a detectable way, the result will be a
- message of
- <a name="index-bad-kinsol-specification-744"></a>
- <pre class="example"> <'bad kinsol specification'>
- </pre>
- <li>Any status returned by any <code>kinsol</code> API functions other than
- success or one of several types of non-convergence results in a
- message of
- <pre class="example"> <'kinsol error'>
- </pre>
- </ul>
- </body></html>
|