#include "implicit_f.inc"
Go to the source code of this file.
|
| integer function | iface (ip, n) |
| integer function | iface2 (ip, n) |
| integer function | iface2t (ip, n) |
◆ iface()
| integer function iface |
( |
integer, dimension(*) | ip, |
|
|
integer, dimension(4) | n ) |
Definition at line 34 of file iface.F.
35
36
37
38
39
40
41
42
43#include "implicit_f.inc"
44
45
46
47 INTEGER IP(*), N(4)
48
49
50
51 IF(ip(n(1)) > 0)THEN
52 IF(ip(n(2)) > 0)THEN
53 IF(ip(n(3)) > 0)THEN
55 ELSE
57 ENDIF
58 ELSE
60 ENDIF
61 ELSE
62 IF(ip(n(3)) > 0)THEN
63 IF(ip(n(4)) > 0)THEN
65 ELSE
67 ENDIF
68 ELSE
70 ENDIF
71 ENDIF
72 RETURN
integer function iface(ip, n)
◆ iface2()
| integer function iface2 |
( |
integer, dimension(*), intent(in) | ip, |
|
|
integer, dimension(2), intent(in) | n ) |
Definition at line 83 of file iface.F.
84
85
86
87
88
89
90
91
92#include "implicit_f.inc"
93
94
95
96 INTEGER, INTENT(IN) :: IP(*), N(2)
97
98
99
100 IF (ip(n(1)) > 0) THEN
101 IF (ip(n(2)) > 0) THEN
103 ELSE
105 ENDIF
106 ELSE IF (ip(n(2)) > 0) THEN
108 ELSE
110 ENDIF
integer function iface2(ip, n)
◆ iface2t()
| integer function iface2t |
( |
integer, dimension(*), intent(in) | ip, |
|
|
integer, dimension(3), intent(in) | n ) |
Definition at line 118 of file iface.F.
119
120
121
122
123
124
125
126
127#include "implicit_f.inc"
128
129
130
131 INTEGER, INTENT(IN) :: IP(*), N(3)
132
133
134
136 IF (ip(n(1)) > 0) THEN
137 IF (ip(n(2)) > 0) THEN
139 ELSE
141 ENDIF
142 ELSE IF (ip(n(3)) > 0) THEN
144 ENDIF
integer function iface2t(ip, n)