12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <html lang="en">
- <head>
- <title>umf 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="umf.html#umf" title="umf">
- <link rel="prev" href="umf-output.html#umf-output" title="umf output">
- <link rel="next" href="Additional-umf-notes.html#Additional-umf-notes" title="Additional umf 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="umf-exceptions"></a>
- <p>
- Next: <a rel="next" accesskey="n" href="Additional-umf-notes.html#Additional-umf-notes">Additional umf notes</a>,
- Previous: <a rel="previous" accesskey="p" href="umf-output.html#umf-output">umf output</a>,
- Up: <a rel="up" accesskey="u" href="umf.html#umf">umf</a>
- <hr>
- </div>
- <h4 class="subsection">D.17.3 <code>umf</code> exceptions</h4>
- <p>If an exceptional condition arises from the use of this library, one
- of the following lists of character strings may be returned as the
- function result.
- <ul>
- <li><code><'memory overflow'></code> means the library function ran out of
- memory, most likely due to a matrix being too large.
- <li><code><'bad umf specification'></code> means an input parameter didn't
- <a name="index-bad-umf-specification-816"></a>conform to the appropriate format described above (<a href="umf-input-parameters.html#umf-input-parameters">umf input parameters</a>)
- <li><code><'umf error'></code> covers any unexpected behavior or abnormal
- <a name="index-umf-error-817"></a>status returned by any function from the C language API.
- </ul>
- <p>For the *<code>_trp</code> functions. A non-square matrix will cause the
- second exception above. For the *<code>_col</code> functions, a non-square
- matrix will cause the third exception or cause an empty result
- to be returned.
- <p>The exceptions noted at the beginning of this section (<a href="External-Libraries.html#External-Libraries">External Libraries</a>) are also possible.
- </body></html>
|