You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
## 1. Introduction
6
6
7
-
**CloudSim Plus Automation** is a Java 17+ command line tool based on [CloudSim Plus](http://cloudsimplus.org)
7
+
**CloudSim Plus Automation** is a Java 17+ command line tool based on [CloudSim Plus](https://cloudsimplus.org)
8
8
(and some [CloudReports](https://github.com/thiagotts/CloudReports) classes)
9
9
which is able to read specifications of CloudSim Plus simulation scenarios from a YAML file,
10
10
a very human-readable data format.
@@ -73,7 +73,7 @@ This work contributes to:
73
73
- avoid programming on the creation of CloudSim Plus simulation environments;
74
74
- reduce learning curve on creation of CloudSim Plus simulation scenarios;
75
75
- facilitate and automate CloudSim Plus simulation environments creation;
76
-
- use a humanreadable file format to specify cloud simulation scenarios and speed up such a simulation process phase;
76
+
- use a human-readable file format to specify cloud simulation scenarios and speed up such a simulation process phase;
77
77
- allow reuse, extension and sharing of simulations scenarios.
78
78
79
79
## 2. Requirements
@@ -87,11 +87,11 @@ mvn clean install
87
87
88
88
## 3. Using the command line tool
89
89
90
-
You can simply download the [jar file from the latest release](https://github.com/manoelcampos/cloudsim-plus-automation/releases/latest) and run it in a terminal
90
+
You can simply download the [jar file from the latest release](https://github.com/cloudsimplus/cloudsimplus-automation/releases/latest) and run it in a terminal
91
91
by issuing the following command (check the correct version number of the jar file):
//For each existing scenario, creates and runs it in CloudSim Plus, printing results.
124
-
for (YamlCloudScenario scenario :simulationScenarios) {
124
+
for (YamlCloudScenario scenario :yamlCloudScenariosList) {
125
125
newCloudSimulation(scenario).run();
126
126
}
127
127
} catch (FileNotFoundException|YamlException e) {
128
-
System.err.println("Error when trying to load the simulation scenario from the YAML file: "+e.getMessage());
128
+
System.err.println("Error loading the simulation scenario from the YAML file: "+e.getMessage());
129
129
}
130
130
```
131
131
132
132
## 5. Published Paper
133
133
134
-
For more information, read the paper published on the [Springer Lecture Notes in Computer Science Volume 8662](http://doi.org/10.1007/978-3-319-11167-4_34). Realize the paper is related to an older version of the tool, which is compatible with CloudSim 3.
134
+
For more information, read the paper published on the [Springer Lecture Notes in Computer Science Volume 8662](https://doi.org/10.1007/978-3-319-11167-4_34). Realize the paper is related to an older version of the tool, which is compatible with CloudSim 3.
135
135
The YAML structure has changed since there too, making it simpler and matching the name of entries with CloudSim and CloudSim Plus classes (such as VmAllocationPolicy, VmScheduler, CloudletScheduler). See the last section for more information.
136
136
137
137
**If you are using this work for publishing a paper, please cite our paper above.**
138
138
139
139
## 6. Notice
140
140
141
141
If you are looking for the **CloudSim Automation**,
142
-
which is the version compatible with [CloudSim 4](http://github.com/Cloudslab/cloudsim),
143
-
it is available at [cloudsim-version](https://github.com/manoelcampos/cloudsim-plus-automation/tree/cloudsim-version) branch.
142
+
which is the version compatible with [CloudSim 4](https://github.com/Cloudslab/cloudsim),
143
+
it is available at [cloudsim-version](https://github.com/cloudsimplus/cloudsimplus-automation/tree/cloudsim-version) branch.
0 commit comments