186a02acfd
Also reduce the cache-thrashing by deconstructing the tree's nodes into arrays.
18 lines
195 B
Groovy
18 lines
195 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.trove
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|