Skip to content

Commit

Permalink
Merge pull request #625 from JuliaComputing/kf/slarrvbounds
Browse files Browse the repository at this point in the history
Thank you!
  • Loading branch information
weslleyspereira committed Oct 1, 2021
2 parents 44ecb6a + 0631b6b commit 38f3eee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SRC/clarrv.f
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ SUBROUTINE CLARRV( N, VL, VU, D, L, PIVMIN,
*
* Quick return if possible
*
IF( N.LE.0 ) THEN
IF( (N.LE.0).OR.(M.LE.0) ) THEN
RETURN
END IF
*
Expand Down
2 changes: 1 addition & 1 deletion SRC/dlarrv.f
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ SUBROUTINE DLARRV( N, VL, VU, D, L, PIVMIN,
*
* Quick return if possible
*
IF( N.LE.0 ) THEN
IF( (N.LE.0).OR.(M.LE.0) ) THEN
RETURN
END IF
*
Expand Down
2 changes: 1 addition & 1 deletion SRC/slarrv.f
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ SUBROUTINE SLARRV( N, VL, VU, D, L, PIVMIN,
*
* Quick return if possible
*
IF( N.LE.0 ) THEN
IF( (N.LE.0).OR.(M.LE.0) ) THEN
RETURN
END IF
*
Expand Down
2 changes: 1 addition & 1 deletion SRC/zlarrv.f
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ SUBROUTINE ZLARRV( N, VL, VU, D, L, PIVMIN,
*
* Quick return if possible
*
IF( N.LE.0 ) THEN
IF( (N.LE.0).OR.(M.LE.0) ) THEN
RETURN
END IF
*
Expand Down

0 comments on commit 38f3eee

Please sign in to comment.