Browse Source

The named formulae are prepended by their names when they are output before the actual model-checking phase

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@4109 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Vojtech Forejt 14 years ago
parent
commit
298b4b914e
  1. 3
      prism/src/prism/PrismCL.java

3
prism/src/prism/PrismCL.java

@ -610,7 +610,8 @@ public class PrismCL
mainLog.print("\n" + propertiesFile.getNumProperties()); mainLog.print("\n" + propertiesFile.getNumProperties());
mainLog.print(" propert" + ((propertiesFile.getNumProperties() == 1) ? "y" : "ies") + ":\n"); mainLog.print(" propert" + ((propertiesFile.getNumProperties() == 1) ? "y" : "ies") + ":\n");
for (i = 0; i < propertiesFile.getNumProperties(); i++) { for (i = 0; i < propertiesFile.getNumProperties(); i++) {
mainLog.println("(" + (i + 1) + ") " + propertiesFile.getProperty(i));
String name = propertiesFile.getPropertyName(i);
mainLog.println("(" + (i + 1) + ") " + ((name != null) ? ("\"" + name + "\" : ") : "") + propertiesFile.getProperty(i));
} }
} }

Loading…
Cancel
Save