Skip to content

Commit

Permalink
FIX: Force tuple elements to have the same dtype
Browse files Browse the repository at this point in the history
Fix #434
  • Loading branch information
oyamad committed Sep 20, 2018
1 parent 64918ce commit 522ee9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantecon/game_theory/support_enumeration.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def _support_enumeration_gen(payoff_matrices):
n_min = min(nums_actions)

for k in range(1, n_min+1):
supps = (np.arange(k), np.empty(k, np.int_))
supps = (np.arange(0, k, 1, np.int_), np.empty(k, np.int_))
actions = (np.empty(k+1), np.empty(k+1))
A = np.empty((k+1, k+1))

Expand Down

0 comments on commit 522ee9d

Please sign in to comment.