Skip to content

Commit 273ab49

Browse files
committed
removed extranous changes (hopefully x2)
1 parent 354a16f commit 273ab49

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

SRC/dgelqf.f

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,8 @@ SUBROUTINE DGELQF( M, N, A, LDA, TAU, WORK, LWORK, INFO )
252252
* H = H(i) H(i+1) . . . H(i+ib-1)
253253
*
254254
CALL DLARFT( 'Forward', 'Rowwise', N-I+1, IB, A( I,
255-
$ I ), LDA, TAU( I ), WORK, LDWORK )
255+
$ I ),
256+
$ LDA, TAU( I ), WORK, LDWORK )
256257
*
257258
* Apply H to A(i+ib:m,i:n) from the right
258259
*

SRC/dgeqlf.f

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,7 @@ SUBROUTINE DGEQLF( M, N, A, LDA, TAU, WORK, LWORK, INFO )
257257
* H = H(i+ib-1) . . . H(i+1) H(i)
258258
*
259259
CALL DLARFT( 'Backward', 'Columnwise', M-K+I+IB-1, IB,
260-
$ A( 1, N-K+I ), LDA, TAU( I ), WORK,
261-
$ LDWORK )
260+
$ A( 1, N-K+I ), LDA, TAU( I ), WORK, LDWORK )
262261
*
263262
* Apply H**T to A(1:m-k+i+ib-1,1:n-k+i-1) from the left
264263
*

SRC/dgerqf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ SUBROUTINE DGERQF( M, N, A, LDA, TAU, WORK, LWORK, INFO )
256256
* Form the triangular factor of the block reflector
257257
* H = H(i+ib-1) . . . H(i+1) H(i)
258258
*
259-
CALL DLARFT( 'Backward', 'Rowwise', N-K+I+IB-1, IB,
259+
CALL DLARFT( 'Backward', 'Rowwise', N-K+I+IB-1, IB,
260260
$ A( M-K+I, 1 ), LDA, TAU( I ), WORK, LDWORK )
261261
*
262262
* Apply H to A(1:m-k+i-1,1:n-k+i+ib-1) from the right

SRC/dorglq.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ SUBROUTINE DORGLQ( M, N, K, A, LDA, TAU, WORK, LWORK, INFO )
254254
* H = H(i) H(i+1) . . . H(i+ib-1)
255255
*
256256
CALL DLARFT( 'Forward', 'Rowwise', N-I+1, IB, A( I,
257-
$ I ),
257+
$ I ),
258258
$ LDA, TAU( I ), WORK, LDWORK )
259259
*
260260
* Apply H**T to A(i+ib:m,i:n) from the right

0 commit comments

Comments
 (0)