Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
solving the issue
  • Loading branch information
Goddan-wq committed Jun 6, 2024
commit 2bee29348798a22384fc391612b39b1573b7ef1a
4 changes: 2 additions & 2 deletions SRC/cgetc2.f
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ SUBROUTINE CGETC2( N, A, LDA, IPIV, JPIV, INFO )
* Find max element in matrix A
*
XMAX = ZERO
DO 20 IP = I, N
DO 10 JP = I, N
DO 20 JP = I, N
DO 10 IP = I, N
IF( ABS( A( IP, JP ) ).GE.XMAX ) THEN
XMAX = ABS( A( IP, JP ) )
IPV = IP
Expand Down
4 changes: 2 additions & 2 deletions SRC/dgetc2.f
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ SUBROUTINE DGETC2( N, A, LDA, IPIV, JPIV, INFO )
* Find max element in matrix A
*
XMAX = ZERO
DO 20 IP = I, N
DO 10 JP = I, N
DO 20 JP = I, N
DO 10 IP = I, N
IF( ABS( A( IP, JP ) ).GE.XMAX ) THEN
XMAX = ABS( A( IP, JP ) )
IPV = IP
Expand Down
4 changes: 2 additions & 2 deletions SRC/sgetc2.f
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ SUBROUTINE SGETC2( N, A, LDA, IPIV, JPIV, INFO )
* Find max element in matrix A
*
XMAX = ZERO
DO 20 IP = I, N
DO 10 JP = I, N
DO 20 JP = I, N
DO 10 IP = I, N
IF( ABS( A( IP, JP ) ).GE.XMAX ) THEN
XMAX = ABS( A( IP, JP ) )
IPV = IP
Expand Down
4 changes: 2 additions & 2 deletions SRC/zgetc2.f
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ SUBROUTINE ZGETC2( N, A, LDA, IPIV, JPIV, INFO )
* Find max element in matrix A
*
XMAX = ZERO
DO 20 IP = I, N
DO 10 JP = I, N
DO 20 JP = I, N
DO 10 IP = I, N
IF( ABS( A( IP, JP ) ).GE.XMAX ) THEN
XMAX = ABS( A( IP, JP ) )
IPV = IP
Expand Down