kinsol-exceptions.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <html lang="en">
  2. <head>
  3. <title>kinsol exceptions - 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="kinsol.html#kinsol" title="kinsol">
  9. <link rel="prev" href="kinsol-output.html#kinsol-output" title="kinsol output">
  10. <link rel="next" href="Additional-kinsol-notes.html#Additional-kinsol-notes" title="Additional kinsol notes">
  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="kinsol-exceptions"></a>
  28. <p>
  29. Next:&nbsp;<a rel="next" accesskey="n" href="Additional-kinsol-notes.html#Additional-kinsol-notes">Additional kinsol notes</a>,
  30. Previous:&nbsp;<a rel="previous" accesskey="p" href="kinsol-output.html#kinsol-output">kinsol output</a>,
  31. Up:&nbsp;<a rel="up" accesskey="u" href="kinsol.html#kinsol">kinsol</a>
  32. <hr>
  33. </div>
  34. <h4 class="subsection">D.9.3 <code>kinsol</code> exceptions</h4>
  35. <ul>
  36. <li>Any error messages that may be generated in the course of evaluating
  37. the functions <var>f</var> and <var>j</var> will propagate to the result
  38. returned by the <code>kinsol</code> library functions.
  39. <li>If there is insufficient memory to complete any operation, the result
  40. is a message of
  41. <pre class="example"> &lt;'memory overflow'&gt;
  42. </pre>
  43. <li>If the argument to the library function (i.e.,
  44. <code>(</code><var>f</var><code>,(</code><var>i</var><code>,</code><var>o</var><code>))</code> or
  45. <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
  46. required specifications in a detectable way, the result will be a
  47. message of
  48. <a name="index-bad-kinsol-specification-744"></a>
  49. <pre class="example"> &lt;'bad kinsol specification'&gt;
  50. </pre>
  51. <li>Any status returned by any <code>kinsol</code> API functions other than
  52. success or one of several types of non-convergence results in a
  53. message of
  54. <pre class="example"> &lt;'kinsol error'&gt;
  55. </pre>
  56. </ul>
  57. </body></html>