- Timestamp:
- 10/08/12 10:23:45 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/simulator/DataCenterWorkloadSimulator.java
r477 r481 26 26 import simulator.reader.ResourceReader; 27 27 import simulator.stats.AccumulatedStatistics; 28 import simulator.stats.implementation. WormsStatistics;28 import simulator.stats.implementation.DCWormsStatistics; 29 29 import simulator.utils.LogErrStream; 30 30 import simulator.workload.WorkloadLoader; … … 40 40 * {@link #main(String[])} method used to invoke the program. This class also 41 41 * provides second possibility to start the simulator, namely one may use the 42 * {@link #performSimulation(ConfigurationOptions, WormsStatistics)} method.42 * {@link #performSimulation(ConfigurationOptions, DCWormsStatistics)} method. 43 43 * In this case, the input parameter, describing the simulation options, must be 44 44 * earlier prepared. The results of the simulation can be acquired using the … … 269 269 rc.setInitList(null); 270 270 271 WormsUsers wl = newWormsUsers("Users",271 DCWormsUsers wl = new DCWormsUsers("Users", 272 272 rc.getScheduler().get_name(), workload); 273 273 … … 275 275 long stopSimulation = System.currentTimeMillis(); 276 276 277 WormsStatistics stats = newWormsStatistics(simulationIdentifier,277 DCWormsStatistics stats = new DCWormsStatistics(simulationIdentifier, 278 278 options, wl, statsOutputPath, rc); 279 279 accumulatedStatistics.add(stats);
Note: See TracChangeset
for help on using the changeset viewer.