Skip to content

Commit ea65bb7

Browse files
committed
As suggested by Angelika,see PR#1035, use MINMN.EQ.0 instead of M.EQ.0
1 parent 034ada1 commit ea65bb7

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

SRC/cgeqp3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ SUBROUTINE CGEQP3( M, N, A, LDA, JPVT, TAU, WORK, LWORK, RWORK,
251251
*
252252
* Quick return if possible.
253253
*
254-
IF( M.EQ.0 ) RETURN
254+
IF( MINMN.EQ.0 ) RETURN
255255
*
256256
NFXD = NFXD - 1
257257
*

SRC/dgeqp3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ SUBROUTINE DGEQP3( M, N, A, LDA, JPVT, TAU, WORK, LWORK, INFO )
242242
*
243243
* Quick return if possible
244244
*
245-
IF( M.EQ.0 ) RETURN
245+
IF( MINMN.EQ.0 ) RETURN
246246
*
247247
NFXD = NFXD - 1
248248
*

SRC/sgeqp3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ SUBROUTINE SGEQP3( M, N, A, LDA, JPVT, TAU, WORK, LWORK, INFO )
239239
*
240240
* Quick return if possible.
241241
*
242-
IF( M.EQ.0 ) RETURN
242+
IF( MINMNM.EQ.0 ) RETURN
243243
*
244244
NFXD = NFXD - 1
245245
*

SRC/zgeqp3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ SUBROUTINE ZGEQP3( M, N, A, LDA, JPVT, TAU, WORK, LWORK, RWORK,
251251
*
252252
* Quick return if possible.
253253
*
254-
IF( M.EQ.0 ) RETURN
254+
IF( MINMN.EQ.0 ) RETURN
255255
*
256256
NFXD = NFXD - 1
257257
*

0 commit comments

Comments
 (0)