Skip to content

Commit ffedd8a

Browse files
authored
Merge pull request #4603 from martin-frbg/cleanup4043
Clean up misplaced LAPACK files from PR4043 (in-code documentation changes only)
2 parents 5e19375 + 20145ca commit ffedd8a

File tree

19 files changed

+8
-11224
lines changed

19 files changed

+8
-11224
lines changed

lapack-netlib/SRC/cgbsvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@
322322
*>
323323
*> \param[out] RWORK
324324
*> \verbatim
325-
*> RWORK is REAL array, dimension (N)
325+
*> RWORK is REAL array, dimension (MAX(1,N))
326326
*> On exit, RWORK(1) contains the reciprocal pivot growth
327327
*> factor norm(A)/norm(U). The "max absolute element" norm is
328328
*> used. If RWORK(1) is much less than 1, then the stability

lapack-netlib/SRC/cgesvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@
302302
*>
303303
*> \param[out] RWORK
304304
*> \verbatim
305-
*> RWORK is REAL array, dimension (2*N)
305+
*> RWORK is REAL array, dimension (MAX(1,2*N))
306306
*> On exit, RWORK(1) contains the reciprocal pivot growth
307307
*> factor norm(A)/norm(U). The "max absolute element" norm is
308308
*> used. If RWORK(1) is much less than 1, then the stability

lapack-netlib/SRC/dgbsvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@
316316
*>
317317
*> \param[out] WORK
318318
*> \verbatim
319-
*> WORK is DOUBLE PRECISION array, dimension (3*N)
319+
*> WORK is DOUBLE PRECISION array, dimension (MAX(1,3*N))
320320
*> On exit, WORK(1) contains the reciprocal pivot growth
321321
*> factor norm(A)/norm(U). The "max absolute element" norm is
322322
*> used. If WORK(1) is much less than 1, then the stability

lapack-netlib/SRC/dgesvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
*>
297297
*> \param[out] WORK
298298
*> \verbatim
299-
*> WORK is DOUBLE PRECISION array, dimension (4*N)
299+
*> WORK is DOUBLE PRECISION array, dimension (MAX(1,4*N))
300300
*> On exit, WORK(1) contains the reciprocal pivot growth
301301
*> factor norm(A)/norm(U). The "max absolute element" norm is
302302
*> used. If WORK(1) is much less than 1, then the stability

lapack-netlib/SRC/sgbsvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@
316316
*>
317317
*> \param[out] WORK
318318
*> \verbatim
319-
*> WORK is REAL array, dimension (3*N)
319+
*> WORK is REAL array, dimension (MAX(1,3*N))
320320
*> On exit, WORK(1) contains the reciprocal pivot growth
321321
*> factor norm(A)/norm(U). The "max absolute element" norm is
322322
*> used. If WORK(1) is much less than 1, then the stability

lapack-netlib/SRC/sgesvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
*>
297297
*> \param[out] WORK
298298
*> \verbatim
299-
*> WORK is REAL array, dimension (4*N)
299+
*> WORK is REAL array, dimension (MAX(1,4*N))
300300
*> On exit, WORK(1) contains the reciprocal pivot growth
301301
*> factor norm(A)/norm(U). The "max absolute element" norm is
302302
*> used. If WORK(1) is much less than 1, then the stability

lapack-netlib/SRC/zgbsvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@
322322
*>
323323
*> \param[out] RWORK
324324
*> \verbatim
325-
*> RWORK is DOUBLE PRECISION array, dimension (N)
325+
*> RWORK is DOUBLE PRECISION array, dimension (MAX(1,N))
326326
*> On exit, RWORK(1) contains the reciprocal pivot growth
327327
*> factor norm(A)/norm(U). The "max absolute element" norm is
328328
*> used. If RWORK(1) is much less than 1, then the stability

lapack-netlib/SRC/zgesvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@
302302
*>
303303
*> \param[out] RWORK
304304
*> \verbatim
305-
*> RWORK is DOUBLE PRECISION array, dimension (2*N)
305+
*> RWORK is DOUBLE PRECISION array, dimension (MAX(1,2*N))
306306
*> On exit, RWORK(1) contains the reciprocal pivot growth
307307
*> factor norm(A)/norm(U). The "max absolute element" norm is
308308
*> used. If RWORK(1) is much less than 1, then the stability

0 commit comments

Comments
 (0)