コード例 #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