Skip to content

Commit 2605ac9

Browse files
author
Moritz Groß
committed
started this project initially not as a Gradle-Project.
I copied my progress so far into this project, hence no commits prior to this one.
0 parents  commit 2605ac9

File tree

75 files changed

+2646690
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2646690
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
### Gradle ###
2+
/build/
3+
.gradle
4+
5+
### IntelliJ ###
6+
/.idea/

README.MD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Test

build.gradle.kts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2+
3+
plugins {
4+
kotlin("jvm") version "1.6.20"
5+
application
6+
}
7+
8+
group = "me.moritz"
9+
version = "1.0-SNAPSHOT"
10+
11+
repositories {
12+
mavenCentral()
13+
}
14+
15+
dependencies {
16+
testImplementation(kotlin("test"))
17+
}
18+
19+
tasks.test {
20+
useJUnitPlatform()
21+
}
22+
23+
tasks.withType<KotlinCompile> {
24+
kotlinOptions.jvmTarget = "1.8"
25+
}
26+
27+
application {
28+
mainClass.set("MainKt")
29+
}

data/graphs/CustomTree.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
1 2
2+
1 3
3+
2 4
4+
2 5
5+
3 6
6+
3 7
7+
4 8
8+
4 9
9+
5 10
10+
5 11
11+
6 13
12+
7 14
13+
9 15
14+
9 16
15+
10 17
16+
11 18
17+
14 19
18+
15 20

data/graphs/badGraph.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
1 1
2+
1 2
3+
1 2
4+
1 3
5+
1 4
6+
1 5
7+
1 6
8+
1 7
9+
1 8
10+
1 9
11+
1 10
12+
1 11
13+
1 12
14+
1 13
15+
1 14
16+
1 15
17+
1 16
18+
1 17
19+
1 18
20+
1 19
21+
1 20

0 commit comments

Comments
 (0)