Skip to content

Commit 667f08c

Browse files
committed
corrected comment in update the i-th row of A in DLAQP3RK
1 parent 1309b6c commit 667f08c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

SRC/dlaqp3rk.f

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,8 @@ SUBROUTINE DLAQP3RK( M, N, NRHS, IOFFSET, NB, ABSTOL,
844844
* ===============================================================
845845
*
846846
* Update the current I-th row of A:
847-
* A(I,K+1:N) := A(I,K+1:N) - A(I,1:K)*F(K+1:N,1:K)**T.
847+
* A(I,K+1:N+NRHS) := A(I,K+1:N+NRHS)
848+
* - A(I,1:K)*F(K+1:N+NRHS,1:K)**T.
848849
*
849850
IF( K.LT.N+NRHS ) THEN
850851
CALL DGEMV( 'No transpose', N+NRHS-K, K, -ONE,

0 commit comments

Comments
 (0)