Skip to content

Commit 80409a5

Browse files
committed
comments unified: add an EPS description in xQRT17
1 parent a98ffc6 commit 80409a5

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

TESTING/LIN/cqrt17.f

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@
2828
*>
2929
*> CQRT17 computes the ratio
3030
*>
31-
*> norm(R**H * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
31+
*> norm(R**H * op(A)) / ( norm(A) * alpha * max(M,N,NRHS) * EPS ),
3232
*>
33-
*> where R = B - op(A)*X, op(A) is A or A**H, depending on TRANS, and
33+
*> where R = B - op(A)*X, op(A) is A or A**H, depending on TRANS, EPS
34+
*> is the machine epsilon, and
3435
*>
3536
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3637
*> alpha = norm(R) if IRESID = 2 (otherwise).

TESTING/LIN/dqrt17.f

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@
2828
*>
2929
*> DQRT17 computes the ratio
3030
*>
31-
*> norm(R**T * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
31+
*> norm(R**T * op(A)) / ( norm(A) * alpha * max(M,N,NRHS) * EPS ),
3232
*>
33-
*> where R = B - op(A)*X, op(A) is A or A**T, depending on TRANS, and
33+
*> where R = B - op(A)*X, op(A) is A or A**T, depending on TRANS, EPS
34+
*> is the machine epsilon, and
3435
*>
3536
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3637
*> alpha = norm(R) if IRESID = 2 (otherwise).

TESTING/LIN/sqrt17.f

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@
2828
*>
2929
*> SQRT17 computes the ratio
3030
*>
31-
*> norm(R**T * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
31+
*> norm(R**T * op(A)) / ( norm(A) * alpha * max(M,N,NRHS) * EPS ),
3232
*>
33-
*> where R = B - op(A)*X, op(A) is A or A**T, depending on TRANS, and
33+
*> where R = B - op(A)*X, op(A) is A or A**T, depending on TRANS, EPS
34+
*> is the machine epsilon, and
3435
*>
3536
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3637
*> alpha = norm(R) if IRESID = 2 (otherwise).

TESTING/LIN/zqrt17.f

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@
2828
*>
2929
*> ZQRT17 computes the ratio
3030
*>
31-
*> norm(R**H * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
31+
*> norm(R**H * op(A)) / ( norm(A) * alpha * max(M,N,NRHS) * EPS ),
3232
*>
33-
*> where R = B - op(A)*X, op(A) is A or A**H, depending on TRANS, and
33+
*> where R = B - op(A)*X, op(A) is A or A**H, depending on TRANS, EPS
34+
*> is the machine epsilon, and
3435
*>
3536
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3637
*> alpha = norm(R) if IRESID = 2 (otherwise).

0 commit comments

Comments
 (0)