Skip to content

Commit 4fbd2be

Browse files
committed
Small CSG model construction fix.
1 parent cde7c73 commit 4fbd2be

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

prism/src/explicit/ConstructModel.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,9 +474,10 @@ else if (modelType == ModelType.SMG) {
474474
mainLog.println(" done in " + ((System.currentTimeMillis() - timer) / 1000.0) + " secs.");
475475
//mainLog.println(states);
476476

477-
// Add idle actions
478-
if (modelType == ModelType.CSG)
477+
// Add idle actions (concurrent games)
478+
if (!justReach && modelType == ModelType.CSG) {
479479
csg.addIdleIndexes();
480+
}
480481

481482
// Find/fix deadlocks (if required)
482483
if (!justReach && findDeadlocks) {

0 commit comments

Comments
 (0)