Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在omnetpp.ini中,要结束模拟,我们指定:
omnetpp.ini
sim-time-limit = 10s (say)
如何根据事件数量来指定这一点。OMNeT++ 有内置的相关参数吗?
不,OMNeT++ 没有准备好使用参数来在指定数量的事件后停止模拟。 但是,可以通过将以下代码添加到 each 以编程方式实现该行为handleMessage():
handleMessage()
if (getSimulation()->getEventNumber() > 20000) { endSimulation(); }