Skip to content

Commit 1da6c43

Browse files
Increase the default SMT timeout/retry limits (#3645)
Fixes #3643 Increase the default SMT timeout limit to 125 and number of re-tries to 3
1 parent 295214b commit 1da6c43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kore/src/SMT.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,8 @@ defaultConfig =
441441
]
442442
, prelude = Prelude Nothing
443443
, logFile = Nothing
444-
, timeOut = TimeOut (Limit 40)
445-
, retryLimit = RetryLimit (Limit 1)
444+
, timeOut = TimeOut (Limit 125)
445+
, retryLimit = RetryLimit (Limit 3)
446446
, rLimit = RLimit Unlimited
447447
, resetInterval = ResetInterval 100
448448
}

0 commit comments

Comments
 (0)