Browse Source

Output of non-boolean results in verbose mode.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@763 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 18 years ago
parent
commit
e9280393b2
  1. 11
      prism/src/prism/StateModelChecker.java

11
prism/src/prism/StateModelChecker.java

@ -217,6 +217,17 @@ public class StateModelChecker implements ModelChecker
// Non-Boolean results
else {
// If in "verbose" mode, print out results vector to log
if (verbose) {
mainLog.print("\nResults (non-zero only) for all states:");
if (vals.getNNZ() > 0) {
mainLog.print("\n");
vals.print(mainLog);
} else {
mainLog.print(" (none)\n");
}
}
if (filter == null) {
if (model.getNumStartStates() > 1) {
mainLog.print("\nWarning: There are multiple initial states;");

Loading…
Cancel
Save