Skip to content

Commit

Permalink
Change due to upgrading an internal dependency.\n
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 698804076
Change-Id: I8f14a619804e910cfea61873638b3d4e1953b126
  • Loading branch information
DeepMind Technologies Ltd authored and lanctot committed Nov 22, 2024
1 parent 0241824 commit 8674474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion open_spiel/python/coalitional_games/least_core_lp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 8674474

Please sign in to comment.