Skip to content

Commit

Permalink
Make IWORK array larger to avoid overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored Sep 14, 2023
1 parent 7779bb6 commit 1285b53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lapack-netlib/SRC/stgex2.f
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ SUBROUTINE STGEX2( WANTQ, WANTZ, N, A, LDA, B, LDB, Q, LDQ, Z,
$ THRESHA, THRESHB
* ..
* .. Local Arrays ..
INTEGER IWORK( LDST )
INTEGER IWORK( LDST + 2 )
REAL AI( 2 ), AR( 2 ), BE( 2 ), IR( LDST, LDST ),
$ IRCOP( LDST, LDST ), LI( LDST, LDST ),
$ LICOP( LDST, LDST ), S( LDST, LDST ),
Expand Down

0 comments on commit 1285b53

Please sign in to comment.