Skip to content

Commit

Permalink
Merge pull request #435 from QuantEcon/fix-434
Browse files Browse the repository at this point in the history
FIX: Force tuple elements to have the same dtype
  • Loading branch information
mmcky committed Sep 20, 2018
2 parents 64918ce + 522ee9d commit ba191fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantecon/game_theory/support_enumeration.py
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 ba191fb

Please sign in to comment.