Ignore:
Timestamp:
06/26/14 14:18:01 (11 years ago)
Author:
wojtekp
Message:
 
File:
1 moved

Legend:

Unmodified
Added
Removed
  • DCWoRMS/branches/coolemall/src/simulator/stats/DCwormsAccumulator.java

    r477 r1396  
    44package simulator.stats; 
    55 
    6 import java.io.PrintStream; 
    76 
    87import simulator.DataCenterWorkloadSimulator; 
     
    1514 *  
    1615 */ 
    17 public class GSSAccumulator extends Accumulator { 
     16public class DCwormsAccumulator extends Accumulator { 
    1817 
    19         public GSSAccumulator() { 
     18        public DCwormsAccumulator() { 
    2019                super(); 
    2120        } 
    2221 
    23         public GSSAccumulator(Accumulator acc) { 
     22        public DCwormsAccumulator(Accumulator acc) { 
    2423                n_ = acc.getCount(); 
    2524                mean_ = acc.getMean(); 
     
    4948 
    5049        public boolean equals(Object obj) { 
    51                 if (!(obj instanceof GSSAccumulator)) 
     50                if (!(obj instanceof DCwormsAccumulator)) 
    5251                        return false; 
    5352 
    54                 GSSAccumulator otherAcc = (GSSAccumulator) obj; 
     53                DCwormsAccumulator otherAcc = (DCwormsAccumulator) obj; 
    5554                if (Double.compare(this.last_, otherAcc.last_) != 0) 
    5655                        return false; 
Note: See TracChangeset for help on using the changeset viewer.