Skip to main content

Collektive

Aggregate Computing in Kotlin Multiplatform

fun Aggregate<Int>.gradient(distanceSensor: DistanceSensor, source: Boolean): Double =
share(POSITIVE_INFINITY) {
val dist = distances()
when {
source -> 0.0
else -> (it + dist).min(POSITIVE_INFINITY)
}
}

Practical Aggregate Language

TODO

Large-scale Network Simulation

TODO

Kotlin Multiplatform Enabled

TODO