| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer(kind=int32), | public, | parameter | :: | FS_ARRAY_SIZE_ERROR | = | 10000 | |
| integer(kind=int32), | public, | parameter | :: | FS_INVALID_ARGUMENT_ERROR | = | 10007 | |
| integer(kind=int32), | public, | parameter | :: | FS_INVALID_INPUT_ERROR | = | 10002 | |
| integer(kind=int32), | public, | parameter | :: | FS_MATRIX_SIZE_ERROR | = | 10001 | |
| integer(kind=int32), | public, | parameter | :: | FS_MEMORY_ERROR | = | 10003 | |
| integer(kind=int32), | public, | parameter | :: | FS_NONMONOTONIC_ARRAY_ERROR | = | 10011 | |
| integer(kind=int32), | public, | parameter | :: | FS_NO_ERROR | = | 0 | |
| integer(kind=int32), | public, | parameter | :: | FS_NULL_POINTER_ERROR | = | 10009 | |
| integer(kind=int32), | public, | parameter | :: | FS_POLYNOMIAL_ORDER_ERROR | = | 10010 | |
| integer(kind=int32), | public, | parameter | :: | FS_TOLERANCE_TOO_SMALL_ERROR | = | 10005 | |
| integer(kind=int32), | public, | parameter | :: | FS_TOO_FEW_ITERATION_ERROR | = | 10006 | |
| integer(kind=int32), | public, | parameter | :: | FS_UNDERDEFINED_PROBLEM_ERROR | = | 10004 | |
| integer(kind=int32), | public, | parameter | :: | FS_UNINITIALIZED_OBJECT_ERROR | = | 10012 | |
| integer(kind=int32), | public, | parameter | :: | FS_ZERO_VARIANCE_ERROR | = | 10008 |
Reports an array size error.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| character(len=*), | intent(in) | :: | name |
The name of the array. |
||
| integer(kind=int32), | intent(in) | :: | expect |
The expected size of the array. |
||
| integer(kind=int32), | intent(in) | :: | actual |
The actual size of the array. |
Reports an error relating to two arrays not being the same size when they should be the same size.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| character(len=*), | intent(in) | :: | name1 |
The name of the first array. |
||
| character(len=*), | intent(in) | :: | name2 |
The name of the second array. |
||
| integer(kind=int32), | intent(in) | :: | size1 |
The size of the first array. |
||
| integer(kind=int32), | intent(in) | :: | size2 |
The size of the second array. |
Reports an iteration count error.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| character(len=*), | intent(in) | :: | msg |
The error message. |
||
| integer(kind=int32), | intent(in) | :: | mincount |
The minimum iteration count expected. |
Reports a matrix size error.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| character(len=*), | intent(in) | :: | name |
The name of the matrix. |
||
| integer(kind=int32), | intent(in) | :: | expect_rows |
The expected number of rows. |
||
| integer(kind=int32), | intent(in) | :: | expect_cols |
The expected number of columns. |
||
| integer(kind=int32), | intent(in) | :: | actual_rows |
The actual number of rows. |
||
| integer(kind=int32), | intent(in) | :: | actual_cols |
The actual number of columns. |
Reports a memory allocation related error.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| integer(kind=int32), | intent(in) | :: | code |
The error code returned by the allocation routine. |
Reports an error related to a nonmonotonic array when a monotonic array was expected.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| character(len=*), | intent(in) | :: | name |
The parameter name. |
Reports a null pointer error.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| character(len=*), | intent(in) | :: | name |
The parameter name. |
Reports an error related to the order of the polynomial.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| integer(kind=int32), | intent(in) | :: | order |
The supplied order. |
||
| integer(kind=int32), | intent(in) | :: | minorder |
The minimum required polynomial order. |
Reports an underdefined problem error.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| integer(kind=int32), | intent(in) | :: | expect |
The expected minimum number of equations. |
||
| integer(kind=int32), | intent(in) | :: | actual |
The actual number of equations. |
Reports an uninitialized object error.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |
||
| character(len=*), | intent(in) | :: | obj |
The name of the object or type. |
Issues a warning when a zero variance is encountered in an unexpected place.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(errors), | intent(inout) | :: | err |
The error handling object. |
||
| character(len=*), | intent(in) | :: | fname |
The name of the routine in which the error occurred. |