diff --git a/TESTING/LIN/cgtt02.f b/TESTING/LIN/cgtt02.f index bfd7952c6e..abfdfb75a8 100644 --- a/TESTING/LIN/cgtt02.f +++ b/TESTING/LIN/cgtt02.f @@ -29,7 +29,7 @@ *> *> CGTT02 computes the residual for the solution to a tridiagonal *> system of equations: -*> RESID = norm(B - op(A)*X) / (norm(A) * norm(X) * EPS), +*> RESID = norm(B - op(A)*X) / (norm(op(A)) * norm(X) * EPS), *> where EPS is the machine epsilon. *> \endverbatim * @@ -105,7 +105,7 @@ *> \param[out] RESID *> \verbatim *> RESID is REAL -*> norm(B - op(A)*X) / (norm(A) * norm(X) * EPS) +*> norm(B - op(A)*X) / (norm(op(A)) * norm(X) * EPS) *> \endverbatim * * Authors: @@ -166,7 +166,7 @@ SUBROUTINE CGTT02( TRANS, N, NRHS, DL, D, DU, X, LDX, B, LDB, $ RETURN * * Compute the maximum over the number of right hand sides of -* norm(B - op(A)*X) / ( norm(A) * norm(X) * EPS ). +* norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ). * IF( LSAME( TRANS, 'N' ) ) THEN ANORM = CLANGT( '1', N, DL, D, DU ) diff --git a/TESTING/LIN/dgtt02.f b/TESTING/LIN/dgtt02.f index 1a8d66c1d7..1cc17215a3 100644 --- a/TESTING/LIN/dgtt02.f +++ b/TESTING/LIN/dgtt02.f @@ -29,7 +29,7 @@ *> *> DGTT02 computes the residual for the solution to a tridiagonal *> system of equations: -*> RESID = norm(B - op(A)*X) / (norm(A) * norm(X) * EPS), +*> RESID = norm(B - op(A)*X) / (norm(op(A)) * norm(X) * EPS), *> where EPS is the machine epsilon. *> \endverbatim * @@ -105,7 +105,7 @@ *> \param[out] RESID *> \verbatim *> RESID is DOUBLE PRECISION -*> norm(B - op(A)*X) / (norm(A) * norm(X) * EPS) +*> norm(B - op(A)*X) / (norm(op(A)) * norm(X) * EPS) *> \endverbatim * * Authors: @@ -166,7 +166,7 @@ SUBROUTINE DGTT02( TRANS, N, NRHS, DL, D, DU, X, LDX, B, LDB, $ RETURN * * Compute the maximum over the number of right hand sides of -* norm(B - op(A)*X) / ( norm(A) * norm(X) * EPS ). +* norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ). * IF( LSAME( TRANS, 'N' ) ) THEN ANORM = DLANGT( '1', N, DL, D, DU ) diff --git a/TESTING/LIN/sgtt02.f b/TESTING/LIN/sgtt02.f index 55176d27a6..52e2d443e7 100644 --- a/TESTING/LIN/sgtt02.f +++ b/TESTING/LIN/sgtt02.f @@ -29,7 +29,7 @@ *> *> SGTT02 computes the residual for the solution to a tridiagonal *> system of equations: -*> RESID = norm(B - op(A)*X) / (norm(A) * norm(X) * EPS), +*> RESID = norm(B - op(A)*X) / (norm(op(A)) * norm(X) * EPS), *> where EPS is the machine epsilon. *> \endverbatim * @@ -105,7 +105,7 @@ *> \param[out] RESID *> \verbatim *> RESID is REAL -*> norm(B - op(A)*X) / (norm(A) * norm(X) * EPS) +*> norm(B - op(A)*X) / (norm(op(A)) * norm(X) * EPS) *> \endverbatim * * Authors: @@ -166,7 +166,7 @@ SUBROUTINE SGTT02( TRANS, N, NRHS, DL, D, DU, X, LDX, B, LDB, $ RETURN * * Compute the maximum over the number of right hand sides of -* norm(B - op(A)*X) / ( norm(A) * norm(X) * EPS ). +* norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ). * IF( LSAME( TRANS, 'N' ) ) THEN ANORM = SLANGT( '1', N, DL, D, DU ) diff --git a/TESTING/LIN/zgtt02.f b/TESTING/LIN/zgtt02.f index cbed30af14..ded2256064 100644 --- a/TESTING/LIN/zgtt02.f +++ b/TESTING/LIN/zgtt02.f @@ -29,7 +29,7 @@ *> *> ZGTT02 computes the residual for the solution to a tridiagonal *> system of equations: -*> RESID = norm(B - op(A)*X) / (norm(A) * norm(X) * EPS), +*> RESID = norm(B - op(A)*X) / (norm(op(A)) * norm(X) * EPS), *> where EPS is the machine epsilon. *> \endverbatim * @@ -105,7 +105,7 @@ *> \param[out] RESID *> \verbatim *> RESID is DOUBLE PRECISION -*> norm(B - op(A)*X) / (norm(A) * norm(X) * EPS) +*> norm(B - op(A)*X) / (norm(op(A)) * norm(X) * EPS) *> \endverbatim * * Authors: @@ -166,7 +166,7 @@ SUBROUTINE ZGTT02( TRANS, N, NRHS, DL, D, DU, X, LDX, B, LDB, $ RETURN * * Compute the maximum over the number of right hand sides of -* norm(B - op(A)*X) / ( norm(A) * norm(X) * EPS ). +* norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ). * IF( LSAME( TRANS, 'N' ) ) THEN ANORM = ZLANGT( '1', N, DL, D, DU )