From: jzhou Date: Thu, 27 Mar 2008 19:43:22 +0000 (+0000) Subject: small change to make the naming of output dot files generated by analysis stage and... X-Git-Tag: preEdgeChange~188 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c5fc0124be1d8be4709e7f1c69feb2abd8902cb6;p=IRC.git small change to make the naming of output dot files generated by analysis stage and simulation stage consistent --- diff --git a/Robust/src/Analysis/Scheduling/ScheduleSimulator.java b/Robust/src/Analysis/Scheduling/ScheduleSimulator.java index c3b9c4b5..56882385 100644 --- a/Robust/src/Analysis/Scheduling/ScheduleSimulator.java +++ b/Robust/src/Analysis/Scheduling/ScheduleSimulator.java @@ -135,6 +135,8 @@ public class ScheduleSimulator { public int process() { assert(this.scheduling != null); + this.invoketime++; + if(this.checkpoints == null) { this.checkpoints = new Vector(); } else { @@ -314,7 +316,6 @@ public class ScheduleSimulator { for(int j = 0; j < this.cores.size(); j++) { System.out.println("\t\tcore" + j + ": " + getUtility(j) + "%"); } - this.invoketime++; return this.processTime; }