我正在尝试使用 UPPAAL SMC 查询更大的系统,结果显示“内存已耗尽”错误消息。从本质上讲,UPPAAL SMC 不应该导致状态空间爆炸,这就是为什么我问是否可以在不发生状态空间爆炸的情况下使用 SMC 进行查询。
如果我尝试在很多状态下执行以下操作:
UppaalSystem system = engine.getSystem(document, problems);
engine.query(system, "", "E[<=100; 100](max: sum(i : id_t) Device(i).edge1)", queryListener);
我收到以下错误消息:
<html>Memory exhausted. See <br>http://bugsy.grid.aau.dk/bugzilla3/show_bug.cgi?id=63 <br>for more information.</html>
at com.uppaal.engine.Engine.getSystem(Engine.java:352)
是否可以在不调用内存密集型的情况下查询 Uppaal SMC engine.getSystem()
?