Skip to content

Commit f42f512

Browse files
committed
revert "comments fixed: expression for residual in xTBT02"
This reverts commit 0277cd9.
1 parent a0634a9 commit f42f512

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

TESTING/LIN/ctbt02.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
*> \verbatim
141141
*> RESID is REAL
142142
*> The maximum over the number of right hand sides of
143-
*> norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
143+
*> norm(op(A)*x - b) / ( norm(op(A)) * norm(x) * EPS ).
144144
*> \endverbatim
145145
*
146146
* Authors:
@@ -219,7 +219,7 @@ SUBROUTINE CTBT02( UPLO, TRANS, DIAG, N, KD, NRHS, AB, LDAB, X,
219219
END IF
220220
*
221221
* Compute the maximum over the number of right hand sides of
222-
* norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
222+
* norm(op(A)*x - b) / ( norm(op(A)) * norm(x) * EPS ).
223223
*
224224
RESID = ZERO
225225
DO 10 J = 1, NRHS

TESTING/LIN/dtbt02.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
*> \verbatim
136136
*> RESID is DOUBLE PRECISION
137137
*> The maximum over the number of right hand sides of
138-
*> norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
138+
*> norm(op(A)*x - b) / ( norm(op(A)) * norm(x) * EPS ).
139139
*> \endverbatim
140140
*
141141
* Authors:
@@ -213,7 +213,7 @@ SUBROUTINE DTBT02( UPLO, TRANS, DIAG, N, KD, NRHS, AB, LDAB, X,
213213
END IF
214214
*
215215
* Compute the maximum over the number of right hand sides of
216-
* norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
216+
* norm(op(A)*x - b) / ( norm(op(A)) * norm(x) * EPS ).
217217
*
218218
RESID = ZERO
219219
DO 10 J = 1, NRHS

TESTING/LIN/stbt02.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
*> \verbatim
136136
*> RESID is REAL
137137
*> The maximum over the number of right hand sides of
138-
*> norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
138+
*> norm(op(A)*x - b) / ( norm(op(A)) * norm(x) * EPS ).
139139
*> \endverbatim
140140
*
141141
* Authors:
@@ -213,7 +213,7 @@ SUBROUTINE STBT02( UPLO, TRANS, DIAG, N, KD, NRHS, AB, LDAB, X,
213213
END IF
214214
*
215215
* Compute the maximum over the number of right hand sides of
216-
* norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
216+
* norm(op(A)*x - b) / ( norm(op(A)) * norm(x) * EPS ).
217217
*
218218
RESID = ZERO
219219
DO 10 J = 1, NRHS

TESTING/LIN/ztbt02.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
*> \verbatim
141141
*> RESID is DOUBLE PRECISION
142142
*> The maximum over the number of right hand sides of
143-
*> norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
143+
*> norm(op(A)*x - b) / ( norm(op(A)) * norm(x) * EPS ).
144144
*> \endverbatim
145145
*
146146
* Authors:
@@ -219,7 +219,7 @@ SUBROUTINE ZTBT02( UPLO, TRANS, DIAG, N, KD, NRHS, AB, LDAB, X,
219219
END IF
220220
*
221221
* Compute the maximum over the number of right hand sides of
222-
* norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
222+
* norm(op(A)*x - b) / ( norm(op(A)) * norm(x) * EPS ).
223223
*
224224
RESID = ZERO
225225
DO 10 J = 1, NRHS

0 commit comments

Comments
 (0)