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

There is a newer version: 0.11.106
Show 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 - 2024 Weber Informatics LLC | Privacy Policy