Skip to content

Commit d52d9b7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b143bfc commit d52d9b7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

game_theory/best_response_dynamics.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def best_response_dynamics(payoff_matrix_a, payoff_matrix_b, iterations=10):
1919

2020
return strategy_a, strategy_b
2121

22+
2223
# Example usage
2324
payoff_a = np.array([[3, 0], [5, 1]])
2425
payoff_b = np.array([[2, 4], [0, 2]])

0 commit comments

Comments
 (0)