it.unibo.alchemist.model.cognitive.Group.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alchemist-cognitive-agents Show documentation
Show all versions of alchemist-cognitive-agents Show documentation
Abstraction for group of pedestrians capable of influence each other emotionally.
package it.unibo.alchemist.model.cognitive
import it.unibo.alchemist.model.Node
/**
* A group of nodes.
*/
interface Group : MutableList> {
/**
* The list of pedestrians belonging to this group.
*/
val members: List> get() = this
}