From f2953573ede24d7f8c01fdb18de48f65f00a9943 Mon Sep 17 00:00:00 2001 From: julie Date: Sat, 2 Apr 2011 11:08:56 +0000 Subject: First pass to homgenize notation for transpose (**T) and conjugate transpose (**H) Corresponds to bug0024 --- SRC/dorglq.f | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'SRC/dorglq.f') diff --git a/SRC/dorglq.f b/SRC/dorglq.f index abe409c3..eb83f24f 100644 --- a/SRC/dorglq.f +++ b/SRC/dorglq.f @@ -185,7 +185,7 @@ CALL DLARFT( 'Forward', 'Rowwise', N-I+1, IB, A( I, I ), $ LDA, TAU( I ), WORK, LDWORK ) * -* Apply H' to A(i+ib:m,i:n) from the right +* Apply H**T to A(i+ib:m,i:n) from the right * CALL DLARFB( 'Right', 'Transpose', 'Forward', 'Rowwise', $ M-I-IB+1, N-I+1, IB, A( I, I ), LDA, WORK, @@ -193,7 +193,7 @@ $ LDWORK ) END IF * -* Apply H' to columns i:n of current block +* Apply H**T to columns i:n of current block * CALL DORGL2( IB, N-I+1, IB, A( I, I ), LDA, TAU( I ), WORK, $ IINFO ) -- cgit v1.2.3