Error codes compatible with the GNU Scientific Library (GSL).
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
Members| Member name | Value | Description |
|---|
| GSL_SUCCESS | 0 | Success. |
| GSL_EDOM | 1 | Input domain error (for example, sqrt(-1)). |
| GSL_ERANGE | 2 | Output range error (for example, exp(1e100)). |
| GSL_EFAULT | 3 | Invalid pointer. |
| GSL_EINVAL | 4 | Invalid argument supplied by user. |
| GSL_EFAILED | 5 | Generic failure. |
| GSL_EFACTOR | 6 | Factorization failed. |
| GSL_ESANITY | 7 | Sanity check failed (should not happen). |
| GSL_ENOMEM | 8 | Memory allocation failed. |
| GSL_EBADFUNC | 9 | Problem with user-supplied function. |
| GSL_FAILURE | -1 | Generic failure. |
| GSL_ERUNAWAY | 10 | Iterative process is out of control. |
| GSL_EMAXITER | 11 | Exceeded maximum number of iterations. |
| GSL_EZERODIV | 12 | Attempted to divide by zero. |
| GSL_EBADTOL | 13 | User specified an invalid tolerance. |
| GSL_ETOL | 14 | Failed to reach the specified tolerance. |
| GSL_EUNDRFLW | 15 | Underflow. |
| GSL_EOVRFLW | 16 | Overflow. |
| GSL_ELOSS | 17 | Loss of accuracy. |
| GSL_EROUND | 18 | Failed due to roundoff error. |
| GSL_EBADLEN | 19 | Matrix/vector lengths are not conformant. |
| GSL_CONTINUE | -2 | Iteration has not converged. |
| GSL_ENOTSQR | 20 | Matrix is not square. |
| GSL_ESING | 21 | Apparent singularity detected. |
| GSL_EDIVERGE | 22 | Integral or series is divergent. |
| GSL_EUNSUP | 23 | Requested feature is not supported by the hardware. |
| GSL_EUNIMPL | 24 | Requested feature is not (yet) implemented. |
| GSL_ECACHE | 25 | Cache limit exceeded. |
| GSL_ETABLE | 26 | Table limit exceeded. |
| GSL_ENOPROG | 27 | Iteration is not making progress towards a solution. |
| GSL_ENOPROGJ | 28 | Jacobian evaluations are not improving the solution. |
| GSL_ETOLF | 29 | Cannot reach the specified tolerance in F. |
| GSL_ETOLX | 30 | Cannot reach the specified tolerance in X. |
| GSL_ETOLG | 31 | Cannot reach the specified tolerance in gradient. |
| GSL_EOF | 32 | End of file. |
See Also