it.unibo.alchemist.model.cognitive.impact.individual.ComplianceSpec.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.impact.individual
import com.uchuhimo.konf.ConfigSpec
/**
* A specification of the parameters regarding compliance to load from a config file.
*/
object ComplianceSpec : ConfigSpec() {
/**
* Compliance of a male child.
*/
val childMale by required()
/**
* Compliance of a male adult.
*/
val adultMale by required()
/**
* Compliance of a male elderly.
*/
val elderlyMale by required()
/**
* Compliance of a female child.
*/
val childFemale by required()
/**
* Compliance of a female adult.
*/
val adultFemale by required()
/**
* Compliance of a female elderly.
*/
val elderlyFemale by required()
}