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_NO_ERROR | = | 0 | |
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 |
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=*) | :: | fname |
The name of the routine in which the error occurred. |
|||
character(len=*) | :: | 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 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. |