- Timestamp:
- 06/26/14 14:18:01 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/simulator/stats/StatisticsInfo.java
r477 r1396 9 9 10 10 /** The mean value */ 11 protected GSSAccumulator mean;11 protected DCwormsAccumulator mean; 12 12 /** The standard deviation value */ 13 protected GSSAccumulator stdev;13 protected DCwormsAccumulator stdev; 14 14 /** The minimal value */ 15 protected GSSAccumulator max;15 protected DCwormsAccumulator max; 16 16 /** The maximal value */ 17 protected GSSAccumulator min;17 protected DCwormsAccumulator min; 18 18 /** 19 19 * @param mean … … 22 22 * @param min 23 23 */ 24 public StatisticsInfo( GSSAccumulator mean, GSSAccumulator stdev, GSSAccumulator max, GSSAccumulator min) {24 public StatisticsInfo(DCwormsAccumulator mean, DCwormsAccumulator stdev, DCwormsAccumulator max, DCwormsAccumulator min) { 25 25 this.mean = mean; 26 26 this.stdev = stdev; … … 31 31 * @return the maximal value 32 32 */ 33 public GSSAccumulator getMax() {33 public DCwormsAccumulator getMax() { 34 34 return max; 35 35 } … … 37 37 * @return the mean value 38 38 */ 39 public GSSAccumulator getMean() {39 public DCwormsAccumulator getMean() { 40 40 return mean; 41 41 } … … 43 43 * @return the minimal value 44 44 */ 45 public GSSAccumulator getMin() {45 public DCwormsAccumulator getMin() { 46 46 return min; 47 47 } … … 49 49 * @return the standard deviation value 50 50 */ 51 public GSSAccumulator getStdev() {51 public DCwormsAccumulator getStdev() { 52 52 return stdev; 53 53 }
Note: See TracChangeset
for help on using the changeset viewer.