Skip to content

Commit

Permalink
MAINT: bimatrix_generators: Define __all__ (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
oyamad committed Feb 6, 2020
1 parent be16ea5 commit 0e30f47
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 1 addition & 3 deletions quantecon/game_theory/game_generators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@
game_theory.game_generators
"""
from .bimatrix_generators import (
blotto_game, ranking_game, sgc_game, tournament_game, unit_vector_game
)
from .bimatrix_generators import *
5 changes: 5 additions & 0 deletions quantecon/game_theory/game_generators/bimatrix_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@
from ...graph_tools import random_tournament_graph
from ...util.combinatorics import next_k_array, k_array_rank_jit

__all__ = [
'blotto_game', 'ranking_game', 'sgc_game', 'tournament_game',
'unit_vector_game'
]


def blotto_game(h, t, rho, mu=0, random_state=None):
"""
Expand Down

0 comments on commit 0e30f47

Please sign in to comment.