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

Legend:

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

    r477 r1396  
    99 
    1010        /** The mean value */ 
    11         protected GSSAccumulator mean; 
     11        protected DCwormsAccumulator mean; 
    1212        /** The standard deviation value */ 
    13         protected GSSAccumulator stdev; 
     13        protected DCwormsAccumulator stdev; 
    1414        /** The minimal value */ 
    15         protected GSSAccumulator max; 
     15        protected DCwormsAccumulator max; 
    1616        /** The maximal value */ 
    17         protected GSSAccumulator min; 
     17        protected DCwormsAccumulator min; 
    1818        /** 
    1919         * @param mean 
     
    2222         * @param min 
    2323         */ 
    24         public StatisticsInfo(GSSAccumulator mean, GSSAccumulator stdev, GSSAccumulator max, GSSAccumulator min) { 
     24        public StatisticsInfo(DCwormsAccumulator mean, DCwormsAccumulator stdev, DCwormsAccumulator max, DCwormsAccumulator min) { 
    2525                this.mean = mean; 
    2626                this.stdev = stdev; 
     
    3131         * @return the maximal value 
    3232         */ 
    33         public GSSAccumulator getMax() { 
     33        public DCwormsAccumulator getMax() { 
    3434                return max; 
    3535        } 
     
    3737         * @return the mean value 
    3838         */ 
    39         public GSSAccumulator getMean() { 
     39        public DCwormsAccumulator getMean() { 
    4040                return mean; 
    4141        } 
     
    4343         * @return the minimal value 
    4444         */ 
    45         public GSSAccumulator getMin() { 
     45        public DCwormsAccumulator getMin() { 
    4646                return min; 
    4747        } 
     
    4949         * @return the standard deviation value 
    5050         */ 
    51         public GSSAccumulator getStdev() { 
     51        public DCwormsAccumulator getStdev() { 
    5252                return stdev; 
    5353        } 
Note: See TracChangeset for help on using the changeset viewer.