Skip to content

Commit af36eb5

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

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)