Exemplo n.º 1
0
    def __init__(self):
        ScoreAlgorithmBase.__init__(self)

        # storage[key][opponent_key] = OpponentStats
        self.storage = {}
        # storage[key] = # of rounds
        self.rounds = {}
Exemplo n.º 2
0
    def __init__(self):
        ScoreAlgorithmBase.__init__(self)

        # storage[key][opponent_key] = OpponentStats
        self.storage = {}
        # storage[key] = # of rounds
        self.rounds = {}
Exemplo n.º 3
0
    def __init__(self):
        ScoreAlgorithmBase.__init__(self)

        # storage[key] = ScoredObject
        self.storage = {}
        # storage[key] = set() of opponent keys
        self.opponents = {}
        # storage[key] = true skill rating object
        self.ratings = {}
Exemplo n.º 4
0
    def __init__(self):
        ScoreAlgorithmBase.__init__(self)

        # storage[key] = ScoredObject
        self.storage = {}
        # storage[key] = set() of opponent keys
        self.opponents = {}
        # storage[key] = # of rounds
        self.rounds = {}
Exemplo n.º 5
0
    def __init__(self):
        ScoreAlgorithmBase.__init__(self)

        # storage[key] = ScoredObject
        self.storage = {}
        # storage[key] = set() of opponent keys
        self.opponents = {}
        # storage[key] = # of rounds
        self.rounds = {}
Exemplo n.º 6
0
    def __init__(self):
        ScoreAlgorithmBase.__init__(self)

        # storage[key] = ScoredObject
        self.storage = {}
        # storage[key] = set() of opponent keys
        self.opponents = {}
        # storage[key] = true skill rating object
        self.ratings = {}