Change tabbing for everything....
[IRC.git] / Robust / src / Analysis / Scheduling / Schedule.java
index a04c629b64419f056a9d37394d1256c22e131e47..303513c75a8d9263d403b94bb10d952923866234 100644 (file)
@@ -11,131 +11,131 @@ import IR.TaskDescriptor;
 /** This class holds flag transition diagram(s) can be put on one core.
  */
 public class Schedule {
-    private int coreNum;
-    private Vector<TaskDescriptor> tasks;
-    private Hashtable<FlagState, Queue<Integer>> targetCores;
-    private Hashtable<FlagState, FlagState> targetFState; // only affected by transimit edges
-    private Hashtable<FlagState, Vector<Integer>> allyCores;
-    private Hashtable<TaskDescriptor, Vector<FlagState>> td2fs;
-    
-    public Schedule(int coreNum) {
-       super();
-       this.coreNum = coreNum;
-       this.tasks = null;
-       this.targetCores = null;
-       this.targetFState = null;
-       this.allyCores = null;
-       this.td2fs = null;
-    }
-
-    public int getCoreNum() {
-        return coreNum;
-    }
-    
-    public Hashtable<FlagState, Queue<Integer>> getTargetCoreTable() {
-        return targetCores;
-    }
-    
-    public Queue<Integer> getTargetCores(FlagState fstate) {
-       if(targetCores == null) {
-           return null;
-       }
-       return targetCores.get(fstate);
-    }
-    
-    public Hashtable<FlagState, FlagState> getTargetFStateTable() {
-        return targetFState;
-    }
-    
-    public FlagState getTargetFState(FlagState fstate) {
-       if(targetFState == null) {
-           return null;
-       }
-       return targetFState.get(fstate);
-    }
-    
-    public Hashtable<FlagState, Vector<Integer>> getAllyCoreTable() {
-        return this.allyCores;
-    }
-    
-    public Vector<Integer> getAllyCores(FlagState fstate) {
-       if(this.allyCores == null) {
-           return null;
-       }
-       return this.allyCores.get(fstate);
-    }
-    
-    public Hashtable<TaskDescriptor, Vector<FlagState>> getTd2FsTable() {
-        return this.td2fs;
-    }
-    
-    public Vector<FlagState> getFStates4TD(TaskDescriptor td) {
-       if(this.td2fs == null) {
-           return null;
-       }
-       return this.td2fs.get(td);
-    }
-
-    public void addTargetCore(FlagState fstate, Integer targetCore) {
-       if(this.targetCores == null) {
-           this.targetCores = new Hashtable<FlagState, Queue<Integer>>();
-       }
-       if(!this.targetCores.containsKey(fstate)) {
-           this.targetCores.put(fstate, new LinkedList<Integer>());
-       }
-       this.targetCores.get(fstate).add(targetCore); // there may have some duplicate items,
-                                                     // which reflects probabilities.
-    }
-    
-    public void addTargetCore(FlagState fstate, Integer targetCore, FlagState tfstate) {
-       if(this.targetCores == null) {
-           this.targetCores = new Hashtable<FlagState, Queue<Integer>>();
-       }
-       if(!this.targetCores.containsKey(fstate)) {
-           this.targetCores.put(fstate, new LinkedList<Integer>());
-       }
-       this.targetCores.get(fstate).add(targetCore);
-       if(this.targetFState == null) {
-           this.targetFState = new Hashtable<FlagState, FlagState>();
-       }
-       this.targetFState.put(fstate, tfstate);
-    }
-    
-    public void addAllyCore(FlagState fstate, Integer targetCore) {
-       if(this.allyCores == null) {
-           this.allyCores = new Hashtable<FlagState, Vector<Integer>>();
-       }
-       if(!this.allyCores.containsKey(fstate)) {
-           this.allyCores.put(fstate, new Vector<Integer>());
-       }
-       if((this.coreNum != targetCore.intValue()) && (!this.allyCores.get(fstate).contains(targetCore))) {
-           this.allyCores.get(fstate).add(targetCore); // there may have some duplicate items,
-                                                       // which reflects probabilities.
-       }
-    }
-    
-    public void addFState4TD(TaskDescriptor td, FlagState fstate) {
-       if(this.td2fs == null) {
-           this.td2fs = new Hashtable<TaskDescriptor, Vector<FlagState>>();
-       }
-       if(!this.td2fs.containsKey(td)) {
-           this.td2fs.put(td, new Vector<FlagState>());
-       }
-       if(!this.td2fs.get(td).contains(fstate)) {
-           this.td2fs.get(td).add(fstate);
-       }
-    }
-
-    public Vector<TaskDescriptor> getTasks() {
-        return tasks;
-    }
-
-    public void addTask(TaskDescriptor task) {
-       if(this.tasks == null) {
-           this.tasks = new Vector<TaskDescriptor>();
-       }
-       if(!this.tasks.contains(task)) {
-           this.tasks.add(task);
-       }
-    }    
+  private int coreNum;
+  private Vector<TaskDescriptor> tasks;
+  private Hashtable<FlagState, Queue<Integer>> targetCores;
+  private Hashtable<FlagState, FlagState> targetFState;   // only affected by transimit edges
+  private Hashtable<FlagState, Vector<Integer>> allyCores;
+  private Hashtable<TaskDescriptor, Vector<FlagState>> td2fs;
+
+  public Schedule(int coreNum) {
+    super();
+    this.coreNum = coreNum;
+    this.tasks = null;
+    this.targetCores = null;
+    this.targetFState = null;
+    this.allyCores = null;
+    this.td2fs = null;
+  }
+
+  public int getCoreNum() {
+    return coreNum;
+  }
+
+  public Hashtable<FlagState, Queue<Integer>> getTargetCoreTable() {
+    return targetCores;
+  }
+
+  public Queue<Integer> getTargetCores(FlagState fstate) {
+    if(targetCores == null) {
+      return null;
+    }
+    return targetCores.get(fstate);
+  }
+
+  public Hashtable<FlagState, FlagState> getTargetFStateTable() {
+    return targetFState;
+  }
+
+  public FlagState getTargetFState(FlagState fstate) {
+    if(targetFState == null) {
+      return null;
+    }
+    return targetFState.get(fstate);
+  }
+
+  public Hashtable<FlagState, Vector<Integer>> getAllyCoreTable() {
+    return this.allyCores;
+  }
+
+  public Vector<Integer> getAllyCores(FlagState fstate) {
+    if(this.allyCores == null) {
+      return null;
+    }
+    return this.allyCores.get(fstate);
+  }
+
+  public Hashtable<TaskDescriptor, Vector<FlagState>> getTd2FsTable() {
+    return this.td2fs;
+  }
+
+  public Vector<FlagState> getFStates4TD(TaskDescriptor td) {
+    if(this.td2fs == null) {
+      return null;
+    }
+    return this.td2fs.get(td);
+  }
+
+  public void addTargetCore(FlagState fstate, Integer targetCore) {
+    if(this.targetCores == null) {
+      this.targetCores = new Hashtable<FlagState, Queue<Integer>>();
+    }
+    if(!this.targetCores.containsKey(fstate)) {
+      this.targetCores.put(fstate, new LinkedList<Integer>());
+    }
+    this.targetCores.get(fstate).add(targetCore);     // there may have some duplicate items,
+                                                      // which reflects probabilities.
+  }
+
+  public void addTargetCore(FlagState fstate, Integer targetCore, FlagState tfstate) {
+    if(this.targetCores == null) {
+      this.targetCores = new Hashtable<FlagState, Queue<Integer>>();
+    }
+    if(!this.targetCores.containsKey(fstate)) {
+      this.targetCores.put(fstate, new LinkedList<Integer>());
+    }
+    this.targetCores.get(fstate).add(targetCore);
+    if(this.targetFState == null) {
+      this.targetFState = new Hashtable<FlagState, FlagState>();
+    }
+    this.targetFState.put(fstate, tfstate);
+  }
+
+  public void addAllyCore(FlagState fstate, Integer targetCore) {
+    if(this.allyCores == null) {
+      this.allyCores = new Hashtable<FlagState, Vector<Integer>>();
+    }
+    if(!this.allyCores.containsKey(fstate)) {
+      this.allyCores.put(fstate, new Vector<Integer>());
+    }
+    if((this.coreNum != targetCore.intValue()) && (!this.allyCores.get(fstate).contains(targetCore))) {
+      this.allyCores.get(fstate).add(targetCore);       // there may have some duplicate items,
+                                                        // which reflects probabilities.
+    }
+  }
+
+  public void addFState4TD(TaskDescriptor td, FlagState fstate) {
+    if(this.td2fs == null) {
+      this.td2fs = new Hashtable<TaskDescriptor, Vector<FlagState>>();
+    }
+    if(!this.td2fs.containsKey(td)) {
+      this.td2fs.put(td, new Vector<FlagState>());
+    }
+    if(!this.td2fs.get(td).contains(fstate)) {
+      this.td2fs.get(td).add(fstate);
+    }
+  }
+
+  public Vector<TaskDescriptor> getTasks() {
+    return tasks;
+  }
+
+  public void addTask(TaskDescriptor task) {
+    if(this.tasks == null) {
+      this.tasks = new Vector<TaskDescriptor>();
+    }
+    if(!this.tasks.contains(task)) {
+      this.tasks.add(task);
+    }
+  }
 }
\ No newline at end of file