TESTING/LIN: declare ISEED as dimension(4) in clatsp/clatsy/zlatsp/zlatsy
The four TESTING/LIN routines currently document ISEED as an INTEGER array of dimension (4), but their dummy argument declarations use ISEED(*). All four routines pass ISEED to CLARND or ZLARND, whose interfaces require ISEED(4) and document that the fourth element must be odd. Replace the assumed-size declaration with an explicit size of 4 in both the commented argument declarations and the actual dummy argument declarations, so that the source matches the documented contract and the callee interfaces. No functional change is intended.
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
* INTEGER N
|
||||
* ..
|
||||
* .. Array Arguments ..
|
||||
* INTEGER ISEED( * )
|
||||
* INTEGER ISEED( 4 )
|
||||
* COMPLEX X( * )
|
||||
* ..
|
||||
*
|
||||
@@ -92,7 +92,7 @@
|
||||
INTEGER N
|
||||
* ..
|
||||
* .. Array Arguments ..
|
||||
INTEGER ISEED( * )
|
||||
INTEGER ISEED( 4 )
|
||||
COMPLEX X( * )
|
||||
* ..
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
* INTEGER LDX, N
|
||||
* ..
|
||||
* .. Array Arguments ..
|
||||
* INTEGER ISEED( * )
|
||||
* INTEGER ISEED( 4 )
|
||||
* COMPLEX X( LDX, * )
|
||||
* ..
|
||||
*
|
||||
@@ -97,7 +97,7 @@
|
||||
INTEGER LDX, N
|
||||
* ..
|
||||
* .. Array Arguments ..
|
||||
INTEGER ISEED( * )
|
||||
INTEGER ISEED( 4 )
|
||||
COMPLEX X( LDX, * )
|
||||
* ..
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
* INTEGER N
|
||||
* ..
|
||||
* .. Array Arguments ..
|
||||
* INTEGER ISEED( * )
|
||||
* INTEGER ISEED( 4 )
|
||||
* COMPLEX*16 X( * )
|
||||
* ..
|
||||
*
|
||||
@@ -92,7 +92,7 @@
|
||||
INTEGER N
|
||||
* ..
|
||||
* .. Array Arguments ..
|
||||
INTEGER ISEED( * )
|
||||
INTEGER ISEED( 4 )
|
||||
COMPLEX*16 X( * )
|
||||
* ..
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
* INTEGER LDX, N
|
||||
* ..
|
||||
* .. Array Arguments ..
|
||||
* INTEGER ISEED( * )
|
||||
* INTEGER ISEED( 4 )
|
||||
* COMPLEX*16 X( LDX, * )
|
||||
* ..
|
||||
*
|
||||
@@ -97,7 +97,7 @@
|
||||
INTEGER LDX, N
|
||||
* ..
|
||||
* .. Array Arguments ..
|
||||
INTEGER ISEED( * )
|
||||
INTEGER ISEED( 4 )
|
||||
COMPLEX*16 X( LDX, * )
|
||||
* ..
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user