Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit eec8437

Browse files
committedOct 7, 2024·
Refactor best_response_dynamics.py and fictitious_play.py
Remove unnecessary code and resolve merge conflicts
1 parent fa22b3a commit eec8437

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed
 

‎game_theory/best_response_dynamics.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import numpy as np
2-
<<<<<<< HEAD
3-
=======
42

53

6-
>>>>>>> af4427f312f995980af4098d06e0ba32ddad7938
74
def best_response_dynamics(payoff_matrix_a, payoff_matrix_b, iterations=10):
85
n = payoff_matrix_a.shape[0]
96
m = payoff_matrix_a.shape[1]

‎game_theory/fictitious_play.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
import numpy as np
22

3-
<<<<<<< HEAD
4-
=======
5-
6-
>>>>>>> af4427f312f995980af4098d06e0ba32ddad7938
73
def fictitious_play(payoff_matrix_a, payoff_matrix_b, iterations=100):
84
n = payoff_matrix_a.shape[0]
95
m = payoff_matrix_a.shape[1]

0 commit comments

Comments
 (0)
Please sign in to comment.