Skip to content

Commit

Permalink
v__0.1.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-jacquet committed Jan 18, 2024
1 parent 61e7850 commit 255e207
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mec/gt.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ def __init__(self, A_i_j, B_i_j):
self.B_i_j = B_i_j
self.nbi,self.nbj = A_i_j.shape

def create_penalty_game(zeroSum=False):
def create_penalty_game(zero_sum=False):
penalty_data = np.array([[53.21, 71.35, 93.80],
[90.26, 42.81, 86.12],
[96.88, 100.0, 75.43]])
if zeroSum :
if zero_sum :
zerosum_game = Bimatrix_game(A_i_j = penalty_data,
B_i_j = 100 - penalty_data)
return zerosum_game
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="mec",
version="0.1.0.13",
version="0.1.0.14",
authors=["Alfred Galichon"],
author_email="[email protected]",
licence="",
Expand Down

0 comments on commit 255e207

Please sign in to comment.