예제 #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
예제 #2
0
파일: match.py 프로젝트: 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
예제 #3
0
 def notify(self):
     Format.notify(self)
     self._partially_updated = False
예제 #4
0
    def __init__(self, schema_in, schema_out):
        Format.__init__(self, schema_in, schema_out)

        self.setup()
예제 #5
0
파일: match.py 프로젝트: TheBB/simul
 def notify(self):
     Format.notify(self)
     self._partially_updated = False
예제 #6
0
파일: composite.py 프로젝트: TheBB/simul
    def __init__(self, schema_in, schema_out):
        Format.__init__(self, schema_in, schema_out)

        self.setup()