Skip to content

Commit 219a73a

Browse files
authored
Fix confusing use of "minor" in inline documentation (Reference-LAPACK PR849)
1 parent f12b1c7 commit 219a73a

27 files changed

+64
-64
lines changed

lapack-netlib/SRC/zcposv.f

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,10 @@
187187
*> INFO is INTEGER
188188
*> = 0: successful exit
189189
*> < 0: if INFO = -i, the i-th argument had an illegal value
190-
*> > 0: if INFO = i, the leading minor of order i of
191-
*> (COMPLEX*16) A is not positive definite, so the
192-
*> factorization could not be completed, and the solution
193-
*> has not been computed.
190+
*> > 0: if INFO = i, the leading principal minor of order i
191+
*> of (COMPLEX*16) A is not positive, so the factorization
192+
*> could not be completed, and the solution has not been
193+
*> computed.
194194
*> \endverbatim
195195
*
196196
* Authors:

lapack-netlib/SRC/zhegv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
*> i off-diagonal elements of an intermediate
161161
*> tridiagonal form did not converge to zero;
162162
*> > N: if INFO = N + i, for 1 <= i <= N, then the leading
163-
*> minor of order i of B is not positive definite.
163+
*> principal minor of order i of B is not positive.
164164
*> The factorization of B could not be completed and
165165
*> no eigenvalues or eigenvectors were computed.
166166
*> \endverbatim

lapack-netlib/SRC/zhegv_2stage.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
*> i off-diagonal elements of an intermediate
180180
*> tridiagonal form did not converge to zero;
181181
*> > N: if INFO = N + i, for 1 <= i <= N, then the leading
182-
*> minor of order i of B is not positive definite.
182+
*> principal minor of order i of B is not positive.
183183
*> The factorization of B could not be completed and
184184
*> no eigenvalues or eigenvectors were computed.
185185
*> \endverbatim

lapack-netlib/SRC/zhegvd.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
*> the submatrix lying in rows and columns INFO/(N+1)
213213
*> through mod(INFO,N+1);
214214
*> > N: if INFO = N + i, for 1 <= i <= N, then the leading
215-
*> minor of order i of B is not positive definite.
215+
*> principal minor of order i of B is not positive.
216216
*> The factorization of B could not be completed and
217217
*> no eigenvalues or eigenvectors were computed.
218218
*> \endverbatim

lapack-netlib/SRC/zhegvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@
280280
*> i eigenvectors failed to converge. Their indices
281281
*> are stored in array IFAIL.
282282
*> > N: if INFO = N + i, for 1 <= i <= N, then the leading
283-
*> minor of order i of B is not positive definite.
283+
*> principal minor of order i of B is not positive.
284284
*> The factorization of B could not be completed and
285285
*> no eigenvalues or eigenvectors were computed.
286286
*> \endverbatim

lapack-netlib/SRC/zhpgv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
*> i off-diagonal elements of an intermediate
145145
*> tridiagonal form did not convergeto zero;
146146
*> > N: if INFO = N + i, for 1 <= i <= n, then the leading
147-
*> minor of order i of B is not positive definite.
147+
*> principal minor of order i of B is not positive.
148148
*> The factorization of B could not be completed and
149149
*> no eigenvalues or eigenvectors were computed.
150150
*> \endverbatim

lapack-netlib/SRC/zhpgvd.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
*> i off-diagonal elements of an intermediate
206206
*> tridiagonal form did not convergeto zero;
207207
*> > N: if INFO = N + i, for 1 <= i <= n, then the leading
208-
*> minor of order i of B is not positive definite.
208+
*> principal minor of order i of B is not positive.
209209
*> The factorization of B could not be completed and
210210
*> no eigenvalues or eigenvectors were computed.
211211
*> \endverbatim

lapack-netlib/SRC/zhpgvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
*> i eigenvectors failed to converge. Their indices
251251
*> are stored in array IFAIL.
252252
*> > N: if INFO = N + i, for 1 <= i <= n, then the leading
253-
*> minor of order i of B is not positive definite.
253+
*> principal minor of order i of B is not positive.
254254
*> The factorization of B could not be completed and
255255
*> no eigenvalues or eigenvectors were computed.
256256
*> \endverbatim

lapack-netlib/SRC/zla_porpvgrw.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ DOUBLE PRECISION FUNCTION ZLA_PORPVGRW( UPLO, NCOLS, A, LDA, AF,
142142
* .. Executable Statements ..
143143
UPPER = LSAME( 'Upper', UPLO )
144144
*
145-
* DPOTRF will have factored only the NCOLSxNCOLS leading minor, so
146-
* we restrict the growth search to that minor and use only the first
147-
* 2*NCOLS workspace entries.
145+
* DPOTRF will have factored only the NCOLSxNCOLS leading submatrix,
146+
* so we restrict the growth search to that submatrix and use only
147+
* the first 2*NCOLS workspace entries.
148148
*
149149
RPVGRW = 1.0D+0
150150
DO I = 1, 2*NCOLS

lapack-netlib/SRC/zpbsv.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@
119119
*> INFO is INTEGER
120120
*> = 0: successful exit
121121
*> < 0: if INFO = -i, the i-th argument had an illegal value
122-
*> > 0: if INFO = i, the leading minor of order i of A is not
123-
*> positive definite, so the factorization could not be
124-
*> completed, and the solution has not been computed.
122+
*> > 0: if INFO = i, the leading principal minor of order i
123+
*> of A is not positive, so the factorization could not
124+
*> be completed, and the solution has not been computed.
125125
*> \endverbatim
126126
*
127127
* Authors:

0 commit comments

Comments
 (0)