We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b143bfc commit d52d9b7Copy full SHA for d52d9b7
game_theory/best_response_dynamics.py
@@ -19,6 +19,7 @@ def best_response_dynamics(payoff_matrix_a, payoff_matrix_b, iterations=10):
19
20
return strategy_a, strategy_b
21
22
+
23
# Example usage
24
payoff_a = np.array([[3, 0], [5, 1]])
25
payoff_b = np.array([[2, 4], [0, 2]])
0 commit comments