コード例 #1
0
ファイル: multisimulator.py プロジェクト: lbianch/nfl_elo
 def FromJSON(cls, season_file, standings_file, simulations, experiments):
     return cls(Season.FromJSON(season_file),
                Standings.FromJSON(standings_file), simulations,
                experiments)
コード例 #2
0
ファイル: season_simulator.py プロジェクト: lbianch/nfl_elo
 def FromJSON(cls, season_file, standings_file):
     return cls(Season.FromJSON(season_file), Standings.FromJSON(standings_file))