summaryrefslogtreecommitdiff
path: root/simulator/opendc-experiments
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2020-10-02 00:38:44 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-10-02 20:57:35 +0200
commit76c5d27618181c4ec9cf86085c65b5e69f5f9109 (patch)
treec11446962064b610f0f8373cfdf73debdfc3d9d9 /simulator/opendc-experiments
parent0119ca3b2e05b06f9646149c2d7bfe3d4b57c380 (diff)
Add opendc-simulator-compute module
This change adds an opendc-simulator-compute module which contains interfaces related to simulating compute workloads. For future changes, we intend to decouple the simulation part from the opendc-compute module.
Diffstat (limited to 'simulator/opendc-experiments')
-rw-r--r--simulator/opendc-experiments/opendc-experiments-sc18/build.gradle.kts2
-rw-r--r--simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts2
2 files changed, 2 insertions, 2 deletions
diff --git a/simulator/opendc-experiments/opendc-experiments-sc18/build.gradle.kts b/simulator/opendc-experiments/opendc-experiments-sc18/build.gradle.kts
index 393fd0d0..b12b1ae3 100644
--- a/simulator/opendc-experiments/opendc-experiments-sc18/build.gradle.kts
+++ b/simulator/opendc-experiments/opendc-experiments-sc18/build.gradle.kts
@@ -36,7 +36,7 @@ dependencies {
api(project(":opendc-core"))
implementation(project(":opendc-format"))
implementation(project(":opendc-workflows"))
- implementation(project(":opendc-simulator"))
+ implementation(project(":opendc-simulator:opendc-simulator-core"))
implementation(kotlin("stdlib"))
testImplementation("org.junit.jupiter:junit-jupiter-api:${Library.JUNIT_JUPITER}")
diff --git a/simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts b/simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts
index 4bfe21d2..1a7c2f78 100644
--- a/simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts
+++ b/simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts
@@ -36,7 +36,7 @@ application {
dependencies {
api(project(":opendc-core"))
implementation(project(":opendc-format"))
- implementation(project(":opendc-simulator"))
+ implementation(project(":opendc-simulator:opendc-simulator-core"))
implementation("com.github.ajalt:clikt:2.6.0")
implementation("me.tongfei:progressbar:0.8.1")