Skip to content

Commit 4e36e80

Browse files
committed
xLAQR2, xLAQR3, xGEJSV: add parentheses to dimensions of one-dimensional arrays in parameter comments
1 parent 5f7f609 commit 4e36e80

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

SRC/claqr2.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
*>
169169
*> \param[out] SH
170170
*> \verbatim
171-
*> SH is COMPLEX array, dimension KBOT
171+
*> SH is COMPLEX array, dimension (KBOT)
172172
*> On output, approximate eigenvalues that may
173173
*> be used for shifts are stored in SH(KBOT-ND-NS+1)
174174
*> through SR(KBOT-ND). Converged eigenvalues are

SRC/claqr3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
*>
166166
*> \param[out] SH
167167
*> \verbatim
168-
*> SH is COMPLEX array, dimension KBOT
168+
*> SH is COMPLEX array, dimension (KBOT)
169169
*> On output, approximate eigenvalues that may
170170
*> be used for shifts are stored in SH(KBOT-ND-NS+1)
171171
*> through SR(KBOT-ND). Converged eigenvalues are

SRC/dgejsv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@
362362
*>
363363
*> \param[out] IWORK
364364
*> \verbatim
365-
*> IWORK is INTEGER array, dimension M+3*N.
365+
*> IWORK is INTEGER array, dimension (M+3*N).
366366
*> On exit,
367367
*> IWORK(1) = the numerical rank determined after the initial
368368
*> QR factorization with pivoting. See the descriptions

SRC/sgejsv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@
362362
*>
363363
*> \param[out] IWORK
364364
*> \verbatim
365-
*> IWORK is INTEGER array, dimension M+3*N.
365+
*> IWORK is INTEGER array, dimension (M+3*N).
366366
*> On exit,
367367
*> IWORK(1) = the numerical rank determined after the initial
368368
*> QR factorization with pivoting. See the descriptions

SRC/slaqr2.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,12 @@
169169
*>
170170
*> \param[out] SR
171171
*> \verbatim
172-
*> SR is REAL array, dimension KBOT
172+
*> SR is REAL array, dimension (KBOT)
173173
*> \endverbatim
174174
*>
175175
*> \param[out] SI
176176
*> \verbatim
177-
*> SI is REAL array, dimension KBOT
177+
*> SI is REAL array, dimension (KBOT)
178178
*> On output, the real and imaginary parts of approximate
179179
*> eigenvalues that may be used for shifts are stored in
180180
*> SR(KBOT-ND-NS+1) through SR(KBOT-ND) and

SRC/slaqr3.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@
166166
*>
167167
*> \param[out] SR
168168
*> \verbatim
169-
*> SR is REAL array, dimension KBOT
169+
*> SR is REAL array, dimension (KBOT)
170170
*> \endverbatim
171171
*>
172172
*> \param[out] SI
173173
*> \verbatim
174-
*> SI is REAL array, dimension KBOT
174+
*> SI is REAL array, dimension (KBOT)
175175
*> On output, the real and imaginary parts of approximate
176176
*> eigenvalues that may be used for shifts are stored in
177177
*> SR(KBOT-ND-NS+1) through SR(KBOT-ND) and

SRC/zlaqr2.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
*>
170170
*> \param[out] SH
171171
*> \verbatim
172-
*> SH is COMPLEX*16 array, dimension KBOT
172+
*> SH is COMPLEX*16 array, dimension (KBOT)
173173
*> On output, approximate eigenvalues that may
174174
*> be used for shifts are stored in SH(KBOT-ND-NS+1)
175175
*> through SR(KBOT-ND). Converged eigenvalues are

SRC/zlaqr3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
*>
167167
*> \param[out] SH
168168
*> \verbatim
169-
*> SH is COMPLEX*16 array, dimension KBOT
169+
*> SH is COMPLEX*16 array, dimension (KBOT)
170170
*> On output, approximate eigenvalues that may
171171
*> be used for shifts are stored in SH(KBOT-ND-NS+1)
172172
*> through SR(KBOT-ND). Converged eigenvalues are

0 commit comments

Comments
 (0)