diff --git a/open_spiel/python/coalitional_games/least_core_lp.py b/open_spiel/python/coalitional_games/least_core_lp.py index 5258cfc868..80b8321e0d 100644 --- a/open_spiel/python/coalitional_games/least_core_lp.py +++ b/open_spiel/python/coalitional_games/least_core_lp.py @@ -97,7 +97,7 @@ def solve_least_core_lp( constraint_function(game, x, e, constraints) prob = cp.Problem(objective, constraints) - _ = prob.solve(eps_abs=1e-6) + _ = prob.solve(solver=cp.SCS, eps=1e-6) # The optimal value for x is stored in `x.value`. return x.value, e.value