Go to the source code of this file.
◆ is_sup_face_id()
| integer function is_sup_face_id |
( |
integer, dimension(4) | a, |
|
|
integer, dimension(4) | b ) |
Definition at line 30 of file is_sup_face_id.F.
31
32
33
34
35
36
37
38
39 INTEGER :: A(4),B(4)
40 INTEGER :: IS_SUP_FACE_ID
42 IF( a(1) > b(1) .OR.
43 . a(1) == b(1) .AND. ( a(2) > b(2) .OR.
44 . a(2) == b(2) .AND. ( a(3) > b(3) .OR.
45 . a(3) == b(3) .AND. a(4) > b(4)))) THEN
47 ENDIF
48 RETURN
integer function is_sup_face_id(a, b)