Skip to content

Commit dc67192

Browse files
committed
comments unified: compress space chains in xGBT01 and xPOT01
1 parent b1143c5 commit dc67192

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

TESTING/LIN/cgbt01.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*>
2727
*> \verbatim
2828
*>
29-
*> CGBT01 reconstructs a band matrix A from its L*U factorization and
29+
*> CGBT01 reconstructs a band matrix A from its L*U factorization and
3030
*> computes the residual:
3131
*> norm(L*U - A) / ( N * norm(A) * EPS ),
3232
*> where EPS is the machine epsilon.

TESTING/LIN/cpot01.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ SUBROUTINE CPOT01( UPLO, N, A, LDA, AFAC, LDAFAC, RWORK, RESID )
206206
30 CONTINUE
207207
END IF
208208
*
209-
* Compute the difference L * L**H - A (or U**H * U - A).
209+
* Compute the difference L * L**H - A (or U**H * U - A).
210210
*
211211
IF( LSAME( UPLO, 'U' ) ) THEN
212212
DO 50 J = 1, N

TESTING/LIN/dgbt01.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*>
2727
*> \verbatim
2828
*>
29-
*> DGBT01 reconstructs a band matrix A from its L*U factorization and
29+
*> DGBT01 reconstructs a band matrix A from its L*U factorization and
3030
*> computes the residual:
3131
*> norm(L*U - A) / ( N * norm(A) * EPS ),
3232
*> where EPS is the machine epsilon.

TESTING/LIN/sgbt01.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*>
2727
*> \verbatim
2828
*>
29-
*> SGBT01 reconstructs a band matrix A from its L*U factorization and
29+
*> SGBT01 reconstructs a band matrix A from its L*U factorization and
3030
*> computes the residual:
3131
*> norm(L*U - A) / ( N * norm(A) * EPS ),
3232
*> where EPS is the machine epsilon.

TESTING/LIN/spot01.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ SUBROUTINE SPOT01( UPLO, N, A, LDA, AFAC, LDAFAC, RWORK, RESID )
191191
20 CONTINUE
192192
END IF
193193
*
194-
* Compute the difference L * L**T - A (or U**T * U - A).
194+
* Compute the difference L * L**T - A (or U**T * U - A).
195195
*
196196
IF( LSAME( UPLO, 'U' ) ) THEN
197197
DO 40 J = 1, N

TESTING/LIN/zgbt01.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*>
2727
*> \verbatim
2828
*>
29-
*> ZGBT01 reconstructs a band matrix A from its L*U factorization and
29+
*> ZGBT01 reconstructs a band matrix A from its L*U factorization and
3030
*> computes the residual:
3131
*> norm(L*U - A) / ( N * norm(A) * EPS ),
3232
*> where EPS is the machine epsilon.

TESTING/LIN/zpot01.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ SUBROUTINE ZPOT01( UPLO, N, A, LDA, AFAC, LDAFAC, RWORK, RESID )
206206
30 CONTINUE
207207
END IF
208208
*
209-
* Compute the difference L * L**H - A (or U**H * U - A).
209+
* Compute the difference L * L**H - A (or U**H * U - A).
210210
*
211211
IF( LSAME( UPLO, 'U' ) ) THEN
212212
DO 50 J = 1, N

0 commit comments

Comments
 (0)