Browse Source

Minor stdout cleanup

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@11064 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Vojtech Forejt 10 years ago
parent
commit
bd73bc0857
  1. 8
      prism/src/prism/MultiObjModelChecker.java

8
prism/src/prism/MultiObjModelChecker.java

@ -930,7 +930,7 @@ public class MultiObjModelChecker extends PrismComponent
PrismNative.setExportAdv(exportAdvSetting);
if (verbose)
mainLog.println("Points for initial tile: " + pointsForInitialTile);
mainLog.println("Points for the initial tile: " + pointsForInitialTile);
Tile initialTile = new Tile(pointsForInitialTile);
TileList tileList = new TileList(initialTile, opsAndBounds, tolerance);
@ -1017,8 +1017,10 @@ public class MultiObjModelChecker extends PrismComponent
mainLog.println("Exported Pareto curve. To see it, run\n etc/scripts/prism-pareto.py " + paretoFile);
}
mainLog.println("Computed " + tileList.getNumberOfDifferentPoints() + " points altogether:\n");
mainLog.println(tileList.getPoints().toString());
if (verbose) {
mainLog.print("Computed " + tileList.getNumberOfDifferentPoints() + " points altogether: ");
mainLog.println(tileList.getPoints().toString());
}
return tileList;
}

Loading…
Cancel
Save