File: status.shtml

package info (click to toggle)
oakleaf 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,536 kB
  • sloc: sh: 3,972; f90: 337; makefile: 174; awk: 11
file content (40 lines) | stat: -rw-r--r-- 1,238 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
  <!-- #include "meta.shtml" -->
<body>
  <!-- #include "head.shtml" -->

    <h1>Status codes</h1>

    <table style="margin-top:2em; margin-bottom:1em;">
      <tr><th>The code</th><th>Description</th></tr>
      <tr><td class="c">0</td>
	<td>Success, results are both reliable and accurate</td></tr>
      <tr><td class="c">1</td>
	<td>Success, results are reliable, can be inaccurate due rounding</td></tr>
      <tr><td class="c">2</td>
	<td>Success, a basic estimate for a single point or a pair</td></tr>
      <tr><td class="c">3</td>
	<td>Success, majority of data looks identical.</td></tr>
      <tr><td class="c">5</td>
	<td>Fail, improper input parameters
	  (<samp>reltol, scale &lt; 0</samp>, etc.)</td></tr>
      <tr><td class="c">6</td>
	<td>Fail, no convergence or a unexpected error</td></tr>
      <tr><td class="c">8</td>
	<td>Fail, failed to allocate a memory.</td></tr>
    </table>

  <p>
    The status codes &lt; 5 indicates the success,
    whilst &ge; 5 stands for a fail.
    Some subroutines use codes above ten for an inter-routine communication.
  </p>

  <p>
    <samp>verbose = .true.</samp> is helpfull in doubts.
  </p>

<!-- #include "foot.shtml" -->
</body>
</html>