Exemplo n.º 1
0
 def __init__(self, num):
     Format.__init__(self, [1, 1], [1, 1])
     self._num = num
     self._result = (0, 0)
     self._winner_links = []
     self._loser_links = []
     self._instance_detail = None
     self._probs = (0, 0)
     self._partially_updated = False
Exemplo n.º 2
0
Arquivo: match.py Projeto: TheBB/simul
 def __init__(self, num):
     Format.__init__(self, [1, 1], [1, 1])
     self._num = num
     self._result = (0, 0)
     self._winner_links = []
     self._loser_links = []
     self._instance_detail = None
     self._probs = (0, 0)
     self._partially_updated = False
Exemplo n.º 3
0
 def notify(self):
     Format.notify(self)
     self._partially_updated = False
Exemplo n.º 4
0
    def __init__(self, schema_in, schema_out):
        Format.__init__(self, schema_in, schema_out)

        self.setup()
Exemplo n.º 5
0
Arquivo: match.py Projeto: TheBB/simul
 def notify(self):
     Format.notify(self)
     self._partially_updated = False
Exemplo n.º 6
0
    def __init__(self, schema_in, schema_out):
        Format.__init__(self, schema_in, schema_out)

        self.setup()