1

TypeError に関連する多くの回答をオンラインで検索し、コードを何度もスキャンしましたが、欠落している 3 番目の引数が何であるかがわかりません。Simpy 3でPython 2.7を使用しています

私のコードは次のとおりです。

    import simpy
    import random

    RANDOM_SEED = 42
    NUM_SERVERS = 1
    MTBF = 10
    MTTR = 5
    TOTAL_ENGINES = 6
    TOTAL_SPARES = 3
    TOTAL_IN_USE = TOTAL_ENGINES - TOTAL_SPARES
    SIM_TIME = 100

    class Working(object):

        def __init__ (self, env, num, repair_facility, spares_inventory, downtime):
            self.env = env
            self.repair_facility = repair_facility
            self.spares_inventory = spares_inventory
            self.downtime = downtime
            self.name = 'Engine %d' % (num + 1)
            print('%s at %.2f' % (self.name, self.env.now))
            self.env.process(self.run())

        def run(self):
            yield self.env.timeout(random.expovariate(1.0 / MTBF))
            print('%s at %.2f' % (self.name, self.env.now))

            downtime_start = self.env.now
            spare = yield self.spares_inventory.get()
            self.downtime.append(self.env.now - downtime_start)

            print('%s at %.2f' % (spare.name, self.env.now))
            print('%d' % len(spares_inventory.items))

            with self.repair_facility.request() as req:
                yield req
                print('%s begins repair at %.2f' % (self.name, self.env.now))

                yield self.env.timeout(random.expovariate(1.0 / MTTR))

                yield self.spares_inventory.put(self)
                print('%s at %.2f' % (self.name, self.env.now))

            print('%d' % len(spares_inventory.items)) 

    def main():
        env = simpy.Environment()
        repair_facility = simpy.Resource(env, capacity = NUM_SERVERS)
        spares_inventory = simpy.Container(env, capacity = TOTAL_ENGINES, init = TOTAL_SPARES)
        downtime = []
        working = [Working(env, i, repair_facility, spares_inventory, downtime) for i in range(TOTAL_IN_USE)]

        env.run(SIM_TIME)   

    if __name__ == '__main__':
        main()

これは私が取得し続けるエラーです:

トレースバック (最新の呼び出しが最後):

      File "", line 61, in <module>
        main()
      File "", line 55, in main
        env.run(SIM_TIME)
      File "", line 120, in run
        self.step()
      File "", line 213, in step
        raise event._value
      TypeError: __init__() takes exactly 3 arguments (2 given)

どんな助けでも大歓迎です、事前にどうもありがとう

4

1 に答える 1

2

トレースバックにいくつかの追加情報を忘れました。引用されたトレースバックの上に、次のような数行があります。

Traceback (most recent call last):
  File "/data/evertr/sw/lib/python2.7/site-packages/simpy/events.py", line 312, in _resume
    event = self._generator.send(event._value)
  File "simptest.py", line 31, in run
    spare = yield self.spares_inventory.get()
TypeError: __init__() takes exactly 3 arguments (2 given)

The above exception was the direct cause of the following exception:

あなたのトレースバックが続きます。

self.spares_inventory.get()これで、呼び出しが真の犯人であることがわかります。面倒なことに、このメソッドは実際には隠しクラスのインスタンス化 (simpy の舞台裏で多くのトリッキーな処理が行われていることに気付きました) であるため、__init__()警告が表示されます。

amount基本的に、 toを指定する必要がありますself.spares_inventory.get()(良くも悪くも、便利なデフォルトの 1 はありません)。

それを次のように変更します

spare = yield self.spares_inventory.get(1)

あなたの問題を解決するかもしれません。

(ただし、その後、他のエラーに遭遇します。後でわかります。これらの新しいエラーは、同じ構造に従います: トレースバック、その後に行The above exception was the direct cause of the following exceptionが続き、別の (関連性の低い) トレースバックが続きます)。

于 2014-10-06T14:34:29.913 に答える