From 86744744269303b694abb875b5b52146721844a1 Mon Sep 17 00:00:00 2001 From: DeepMind Technologies Ltd Date: Thu, 21 Nov 2024 17:08:12 +0000 Subject: [PATCH] Change due to upgrading an internal dependency.\n PiperOrigin-RevId: 698804076 Change-Id: I8f14a619804e910cfea61873638b3d4e1953b126 --- open_spiel/python/coalitional_games/least_core_lp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/open_spiel/python/coalitional_games/least_core_lp.py b/open_spiel/python/coalitional_games/least_core_lp.py index d732c390ec..5258cfc868 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() + _ = prob.solve(eps_abs=1e-6) # The optimal value for x is stored in `x.value`. return x.value, e.value