Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/slotmachine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def schedule_talks(self, talks: Iterable[Talk], old_talks=None) -> Iterable[tupl
# We use CBC's simplex solver rather than dual, as it is faster and the
# accuracy difference is negligable for this problem
# We use COIN_CMD() over COIN() as it allows us to run in parallel mode
problem.solve(pulp.COIN_CMD(dual=0, threads=2, msg=1))
problem.solve(pulp.COIN_CMD(threads=2, msg=True))

if pulp.LpStatus[self.problem.status] != "Optimal":
raise Unsatisfiable()
Expand Down
Loading