aboutsummaryrefslogtreecommitdiff
path: root/SRC/chegst.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-04-02 11:08:56 +0000
committerjulie <julielangou@users.noreply.github.com>2011-04-02 11:08:56 +0000
commitf2953573ede24d7f8c01fdb18de48f65f00a9943 (patch)
tree53172aa9083b9aa1abe2d6c130f7c173d8d8725b /SRC/chegst.f
parent53b71f5605f83d116ab6bcf477bfb6d2ca757de1 (diff)
First pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'SRC/chegst.f')
-rw-r--r--SRC/chegst.f8
1 files changed, 4 insertions, 4 deletions
diff --git a/SRC/chegst.f b/SRC/chegst.f
index 10a2c264..c61bd36a 100644
--- a/SRC/chegst.f
+++ b/SRC/chegst.f
@@ -136,7 +136,7 @@
IF( ITYPE.EQ.1 ) THEN
IF( UPPER ) THEN
*
-* Compute inv(U')*A*inv(U)
+* Compute inv(U**H)*A*inv(U)
*
DO 10 K = 1, N, NB
KB = MIN( N-K+1, NB )
@@ -167,7 +167,7 @@
10 CONTINUE
ELSE
*
-* Compute inv(L)*A*inv(L')
+* Compute inv(L)*A*inv(L**H)
*
DO 20 K = 1, N, NB
KB = MIN( N-K+1, NB )
@@ -200,7 +200,7 @@
ELSE
IF( UPPER ) THEN
*
-* Compute U*A*U'
+* Compute U*A*U**H
*
DO 30 K = 1, N, NB
KB = MIN( N-K+1, NB )
@@ -226,7 +226,7 @@
30 CONTINUE
ELSE
*
-* Compute L'*A*L
+* Compute L**H*A*L
*
DO 40 K = 1, N, NB
KB = MIN( N-K+1, NB )