source: DCWoRMS/branches/coolemall/example/tso/RunExperiment.java @ 1336

Revision 1336, 329 bytes checked in by wojtekp, 11 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package tso;
2
3import simulator.DataCenterWorkloadSimulator;
4
5
6public class RunExperiment {
7       
8        public static void main(String args[]){
9                RunExperiment runner = new RunExperiment();
10                runner.run();
11        }
12       
13        public void run(){
14                String args[] = {
15                                "example/tso/tso.properties"
16                                };
17                DataCenterWorkloadSimulator.main(args);
18        }
19
20}
Note: See TracBrowser for help on using the repository browser.