All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.unibo.jakta.agents.fsm.time.SimulatedTime.kt Maven / Gradle / Ivy

The newest version!
package it.unibo.jakta.agents.fsm.time

data class SimulatedTime(val value: Double) : Time {
    override fun compareTo(other: Time): Int = when (other) {
        is SimulatedTime -> value.compareTo(other.value)
        else -> throw IllegalArgumentException("Cannot compare SimulatedTime with $other")
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy