it.unibo.jakta.agents.bdi.intentions.IntentionID.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jakta-bdi Show documentation
Show all versions of jakta-bdi Show documentation
A Kotlin internal DSL for the definition of BDI agents
package it.unibo.jakta.agents.bdi.intentions
import java.util.UUID
data class IntentionID(val id: String = generateId()) {
companion object {
private fun generateId(): String = UUID.randomUUID().toString()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy