Skip to content

Commit cf75fe2

Browse files
committed
fix large LSUB causing 105 decks to run slow
1 parent 8c4ca09 commit cf75fe2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Source/LK1/L1A-BD/BD_EIGRL.f90

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,9 @@ SUBROUTINE BD_EIGRL ( CARD, LARGE_FLD_INP, EIGFND )
208208
! INITIAL_NEV*(2**MAX_DOUBLINGS), both being 10 and unlikely to be
209209
! changed unless someone *really* wants more than 10k modes AND
210210
! doesn't want to specify nmodes manually.
211-
LSUB = 10240
211+
IF (SOL_NAME /= 'BUCKLING') THEN
212+
LSUB = 10240
213+
END IF
212214
END IF
213215

214216
CALL WRITE_L1M

0 commit comments

Comments
 (0)