-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrorcodes.f90
More file actions
28 lines (23 loc) · 793 Bytes
/
errorcodes.f90
File metadata and controls
28 lines (23 loc) · 793 Bytes
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
# 1 "errorcodes.F90"
# 1 "<built-in>"
# 1 "<command-line>"
# 1 "/usr/include/stdc-predef.h" 1 3 4
# 1 "<command-line>" 2
# 1 "errorcodes.F90"
module errorcodes
# 1 "errorcodes.h" 1
# 3 "errorcodes.F90" 2
use :: iso_c_binding
implicit none
INTEGER(C_INT),PARAMETER:: ERR_ALLOC_ERR = 100
INTEGER(C_INT),PARAMETER:: ERR_FILE_ERR = 101
INTEGER(C_INT),PARAMETER:: ERR_ATM_MISMTCH = 201
INTEGER(C_INT),PARAMETER:: ERR_EGV_VOID = 202
INTEGER(C_INT),PARAMETER:: ERR_EGV_MISMTCH = 203
INTEGER(C_INT),PARAMETER:: ERR_MAT_UNALLOC = 204
INTEGER(C_INT),PARAMETER:: ERR_MAT_NOTSQRE = 205
INTEGER(C_INT),PARAMETER:: ERR_NN_LIST = 250
INTEGER(C_INT),PARAMETER:: ERR_HAM_UNMAT = 301
INTEGER(C_INT),PARAMETER:: ERR_HAM_UNPAIR = 304
INTEGER(C_INT),PARAMETER:: ERR_HAM_ZEROLN = 305
end module errorcodes