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:
Nakata Maho
2026-03-07 11:10:10 +09:00
parent 00cf62bc1b
commit fa23a2dc2d
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -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( * )
* ..
*
+2 -2
View File
@@ -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, * )
* ..
*
+2 -2
View File
@@ -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( * )
* ..
*
+2 -2
View File
@@ -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, * )
* ..
*