Skip to content

Commit e73e1b0

Browse files
committed
extended the expressions for USE_DESEL_ROWS and USE_SEL_DESEL_COLS to the second line
1 parent 059442b commit e73e1b0

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

SRC/dgecxx.f

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -931,15 +931,17 @@ SUBROUTINE DGECXX( FACT, USESD, M, N,
931931
NFREE = NSUB
932932
MINMN = MIN( M, N )
933933
*
934-
LQUERY = ( LWORK.EQ.-1 .OR. LIWORK.EQ.-1)
934+
LQUERY = ( LWORK.EQ.-1 .OR. LIWORK.EQ.-1 )
935935
*
936936
RETURNX = LSAME( FACT, 'X' )
937937
RETURNC = LSAME( FACT, 'C' ) .OR. RETURNX
938938
*
939-
USE_DESEL_ROWS = LSAME( USESD, 'R' ) .OR. LSAME( USESD, 'A' )
940-
USE_SEL_DESEL_COLS = LSAME( USESD, 'C') .OR. LSAME( USESD, 'A' )
939+
USE_DESEL_ROWS = LSAME( USESD, 'R' )
940+
$ .OR. LSAME( USESD, 'A' )
941+
USE_SEL_DESEL_COLS = LSAME( USESD, 'C' )
942+
$ .OR. LSAME( USESD, 'A' )
941943
*
942-
IF ( .NOT.(RETURNC .OR. LSAME( FACT, 'P') ) ) THEN
944+
IF( .NOT.( RETURNC .OR. LSAME( FACT, 'P') ) ) THEN
943945
INFO = -1
944946
ELSE IF( .NOT.( USE_DESEL_ROWS .OR. USE_SEL_DESEL_COLS
945947
$ .OR. LSAME( USESD, 'N' ) ) ) THEN

0 commit comments

Comments
 (0)