Skip to content

Commit 1825be6

Browse files
committed
fixed comments: specify which norm is used (no.1 from PR #562)
Despite the recommendation, no change has been made in xGBT02, xGET02, xGTT02, xTBT02, xTPT02, and xTRT02 for C,Z datatypes yet: as it was noted afterwards in PR #571, those routines are using mixed types of norm: 1-norm for op(A) and taxicab-based norm |Re(z)|+|Im(z)| for residual.
1 parent 0448336 commit 1825be6

File tree

18 files changed

+22
-0
lines changed

18 files changed

+22
-0
lines changed

TESTING/EIG/dget02.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
*> RESID = norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ),
3333
*> where op(A) = A or A**T, depending on TRANS, and EPS is the
3434
*> machine epsilon.
35+
*> The norm used is the 1-norm.
3536
*> \endverbatim
3637
*
3738
* Arguments:

TESTING/EIG/sget02.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
*> RESID = norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ),
3333
*> where op(A) = A or A**T, depending on TRANS, and EPS is the
3434
*> machine epsilon.
35+
*> The norm used is the 1-norm.
3536
*> \endverbatim
3637
*
3738
* Arguments:

TESTING/LIN/cqrt17.f

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
*>
3636
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3737
*> alpha = norm(R) if IRESID = 2 (otherwise).
38+
*>
39+
*> The norm used is the 1-norm.
3840
*> \endverbatim
3941
*
4042
* Arguments:

TESTING/LIN/dgbt02.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
*> RESID = norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ),
3333
*> where op(A) = A or A**T, depending on TRANS, and EPS is the
3434
*> machine epsilon.
35+
*> The norm used is the 1-norm.
3536
*> \endverbatim
3637
*
3738
* Arguments:

TESTING/LIN/dget02.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
*> RESID = norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ),
3333
*> where op(A) = A or A**T, depending on TRANS, and EPS is the
3434
*> machine epsilon.
35+
*> The norm used is the 1-norm.
3536
*> \endverbatim
3637
*
3738
* Arguments:

TESTING/LIN/dgtt02.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
*> system of equations:
3232
*> RESID = norm(B - op(A)*X) / (norm(op(A)) * norm(X) * EPS),
3333
*> where EPS is the machine epsilon.
34+
*> The norm used is the 1-norm.
3435
*> \endverbatim
3536
*
3637
* Arguments:

TESTING/LIN/dqrt17.f

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
*>
3636
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3737
*> alpha = norm(R) if IRESID = 2 (otherwise).
38+
*>
39+
*> The norm used is the 1-norm.
3840
*> \endverbatim
3941
*
4042
* Arguments:

TESTING/LIN/dtbt02.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
*> the number of right hand sides of
3535
*> norm(b - op(A)*x) / ( norm(op(A)) * norm(x) * EPS ),
3636
*> where op(A) denotes A or A' and EPS is the machine epsilon.
37+
*> The norm used is the 1-norm.
3738
*> \endverbatim
3839
*
3940
* Arguments:

TESTING/LIN/dtpt02.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
*> the maximum over the number of right hand sides of
3434
*> norm(b - op(A)*x) / ( norm(op(A)) * norm(x) * EPS ),
3535
*> where op(A) denotes A or A' and EPS is the machine epsilon.
36+
*> The norm used is the 1-norm.
3637
*> \endverbatim
3738
*
3839
* Arguments:

TESTING/LIN/dtrt02.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
*> number of right hand sides of
3535
*> norm(b - op(A)*x) / ( norm(op(A)) * norm(x) * EPS ),
3636
*> where op(A) denotes A or A' and EPS is the machine epsilon.
37+
*> The norm used is the 1-norm.
3738
*> \endverbatim
3839
*
3940
* Arguments:

0 commit comments

Comments
 (0)