We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3868b8d + b8633f3 commit 16be7ecCopy full SHA for 16be7ec
org.alloytools.alloy.application/src/main/java/edu/mit/csail/sdg/alloy4viz/VizGUI.java
@@ -1551,8 +1551,10 @@ private Runner doExportLTL() {
1551
StringBuilder sa = new StringBuilder("");
1552
for (int j = inst.getLoopState(); j < inst.getTraceLength(); j++)
1553
sa.append("after ");
1554
+ sa.append("(");
1555
sa.append(states.get(i));
- sb.append(" " + states.get(i) + " implies " + sa.toString() + "\n");
1556
+ sa.append(")");
1557
+ sb.append(" (" + states.get(i) + ") implies " + sa.toString() + "\n");
1558
}
1559
sb.append(" }\n}\n");
1560
OurDialog.showtext("Text Viewer", sb.toString());
0 commit comments