Skip to content

Commit

Permalink
fix: increase solver timeout (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldietzler authored Sep 8, 2024
1 parent 1619364 commit 4d79c76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Future<TimetableSolutionDto> solve(TimetableProblemDto timetable,

SolverConfig solverConfig = new SolverConfig()
.withTerminationConfig(new TerminationConfig()
.withUnimprovedMinutesSpentLimit(1L)
.withUnimprovedMinutesSpentLimit(5L)
.withBestScoreLimit("0hard/0soft"))
.withSolutionClass(TimetableSolutionTimefoldInstance.class)
.withEntityClassList(
Expand Down

0 comments on commit 4d79c76

Please sign in to comment.