summaryrefslogtreecommitdiff
path: root/SRC/dla_lin_berr.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2009-09-11 20:28:33 +0000
committerjulie <julielangou@users.noreply.github.com>2009-09-11 20:28:33 +0000
commit783ef3de55268825f629afbd43f971ba81ed46c5 (patch)
treef91b9ecc4c7c29c755d3aa80e676fdfac12f159e /SRC/dla_lin_berr.f
parent708ac3e2f4d1a007bc9095e955e0a7bea77d9f50 (diff)
downloadlapack-783ef3de55268825f629afbd43f971ba81ed46c5.tar.gz
lapack-783ef3de55268825f629afbd43f971ba81ed46c5.tar.bz2
lapack-783ef3de55268825f629afbd43f971ba81ed46c5.zip
Fix whitespace comments detected from parser
Diffstat (limited to 'SRC/dla_lin_berr.f')
-rw-r--r--SRC/dla_lin_berr.f12
1 files changed, 6 insertions, 6 deletions
diff --git a/SRC/dla_lin_berr.f b/SRC/dla_lin_berr.f
index dd526e92..a23405a2 100644
--- a/SRC/dla_lin_berr.f
+++ b/SRC/dla_lin_berr.f
@@ -21,10 +21,10 @@
* Purpose
* =======
*
-* DLA_LIN_BERR computes componentwise relative backward error from
+* DLA_LIN_BERR computes component-wise relative backward error from
* the formula
* max(i) ( abs(R(i)) / ( abs(op(A_s))*abs(Y) + abs(B_s) )(i) )
-* where abs(Z) is the componentwise absolute value of the matrix
+* where abs(Z) is the component-wise absolute value of the matrix
* or vector Z.
*
* Arguments
@@ -42,17 +42,17 @@
* The number of right hand sides, i.e., the number of columns
* of the matrices AYB, RES, and BERR. NRHS >= 0.
*
-* RES (input) DOUBLE PRECISION array, dimension (N,NRHS)
+* RES (input) DOUBLE PRECISION array, dimension (N,NRHS)
* The residual matrix, i.e., the matrix R in the relative backward
* error formula above.
*
-* AYB (input) DOUBLE PRECISION array, dimension (N, NRHS)
+* AYB (input) DOUBLE PRECISION array, dimension (N, NRHS)
* The denominator in the relative backward error formula above, i.e.,
* the matrix abs(op(A_s))*abs(Y) + abs(B_s). The matrices A, Y, and B
* are from iterative refinement (see dla_gerfsx_extended.f).
*
-* RES (output) DOUBLE PRECISION array, dimension (NRHS)
-* The componentwise relative backward error from the formula above.
+* RES (output) DOUBLE PRECISION array, dimension (NRHS)
+* The component-wise relative backward error from the formula above.
*
* =====================================================================
*