예제 #1
0
파일: memdist.py 프로젝트: hoangt/ms3
    def __init__(self, rand):
        BaseDistribution.__init__(self, rand)

        # List of ranges, which are pairs of the form (start, length).
        self.ranges = []
예제 #2
0
파일: fifodist.py 프로젝트: joewing/ms3
 def __init__(self, fifo, rand):
     BaseDistribution.__init__(self, rand)
     self.fifo = fifo