From fa23a2dc2d8a0bc79f972d4ed10efefae3de443d Mon Sep 17 00:00:00 2001 From: Nakata Maho Date: Sat, 7 Mar 2026 11:10:10 +0900 Subject: [PATCH] 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. --- TESTING/LIN/clatsp.f | 4 ++-- TESTING/LIN/clatsy.f | 4 ++-- TESTING/LIN/zlatsp.f | 4 ++-- TESTING/LIN/zlatsy.f | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/TESTING/LIN/clatsp.f b/TESTING/LIN/clatsp.f index f66c5974e..de4a203c2 100644 --- a/TESTING/LIN/clatsp.f +++ b/TESTING/LIN/clatsp.f @@ -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( * ) * .. * diff --git a/TESTING/LIN/clatsy.f b/TESTING/LIN/clatsy.f index b82b20d17..d24d195b8 100644 --- a/TESTING/LIN/clatsy.f +++ b/TESTING/LIN/clatsy.f @@ -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, * ) * .. * diff --git a/TESTING/LIN/zlatsp.f b/TESTING/LIN/zlatsp.f index ccff3804c..aac864d22 100644 --- a/TESTING/LIN/zlatsp.f +++ b/TESTING/LIN/zlatsp.f @@ -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( * ) * .. * diff --git a/TESTING/LIN/zlatsy.f b/TESTING/LIN/zlatsy.f index 31ce9ae0e..883e54853 100644 --- a/TESTING/LIN/zlatsy.f +++ b/TESTING/LIN/zlatsy.f @@ -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, * ) * .. *