Skip to content

Commit e722f3c

Browse files
authored
Merge pull request #784 from kevinsmia1939/fix_compile
Fix compilation error CONTIG declaration for complex arrays
2 parents d95305a + 0ae0b6b commit e722f3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fem/src/Smoothers.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ SUBROUTINE InternalComplexSGS( n, A, M, rx, rb, rr, w, Rounds )
750750
REAL(KIND=dp) :: w
751751
INTEGER, POINTER CONTIG :: Cols(:),Rows(:)
752752
REAL(KIND=dp), POINTER CONTIG :: Values(:)
753-
COMPLEX(KIND=dp) CONTIG :: x(n/2),b(n/2),r(n/2)
753+
COMPLEX(KIND=dp) :: x(n/2),b(n/2),r(n/2)
754754

755755
DO i=1,n/2
756756
x(i) = CMPLX( rx(2*i-1), rx(2*i), KIND=dp )

0 commit comments

Comments
 (0)