Skip to content

Commit 58ba032

Browse files
authored
Merge pull request #1197 from nakatamaho/master
TESTING/LIN: align ISEED declarations with documented dimension in four test routines
2 parents 00cf62b + fa23a2d commit 58ba032

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

TESTING/LIN/clatsp.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* INTEGER N
1616
* ..
1717
* .. Array Arguments ..
18-
* INTEGER ISEED( * )
18+
* INTEGER ISEED( 4 )
1919
* COMPLEX X( * )
2020
* ..
2121
*
@@ -92,7 +92,7 @@ SUBROUTINE CLATSP( UPLO, N, X, ISEED )
9292
INTEGER N
9393
* ..
9494
* .. Array Arguments ..
95-
INTEGER ISEED( * )
95+
INTEGER ISEED( 4 )
9696
COMPLEX X( * )
9797
* ..
9898
*

TESTING/LIN/clatsy.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* INTEGER LDX, N
1616
* ..
1717
* .. Array Arguments ..
18-
* INTEGER ISEED( * )
18+
* INTEGER ISEED( 4 )
1919
* COMPLEX X( LDX, * )
2020
* ..
2121
*
@@ -97,7 +97,7 @@ SUBROUTINE CLATSY( UPLO, N, X, LDX, ISEED )
9797
INTEGER LDX, N
9898
* ..
9999
* .. Array Arguments ..
100-
INTEGER ISEED( * )
100+
INTEGER ISEED( 4 )
101101
COMPLEX X( LDX, * )
102102
* ..
103103
*

TESTING/LIN/zlatsp.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* INTEGER N
1616
* ..
1717
* .. Array Arguments ..
18-
* INTEGER ISEED( * )
18+
* INTEGER ISEED( 4 )
1919
* COMPLEX*16 X( * )
2020
* ..
2121
*
@@ -92,7 +92,7 @@ SUBROUTINE ZLATSP( UPLO, N, X, ISEED )
9292
INTEGER N
9393
* ..
9494
* .. Array Arguments ..
95-
INTEGER ISEED( * )
95+
INTEGER ISEED( 4 )
9696
COMPLEX*16 X( * )
9797
* ..
9898
*

TESTING/LIN/zlatsy.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* INTEGER LDX, N
1616
* ..
1717
* .. Array Arguments ..
18-
* INTEGER ISEED( * )
18+
* INTEGER ISEED( 4 )
1919
* COMPLEX*16 X( LDX, * )
2020
* ..
2121
*
@@ -97,7 +97,7 @@ SUBROUTINE ZLATSY( UPLO, N, X, LDX, ISEED )
9797
INTEGER LDX, N
9898
* ..
9999
* .. Array Arguments ..
100-
INTEGER ISEED( * )
100+
INTEGER ISEED( 4 )
101101
COMPLEX*16 X( LDX, * )
102102
* ..
103103
*

0 commit comments

Comments
 (0)