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

it.unibo.alchemist.model.cognitive.impact.individual.ComplianceSpec.kt Maven / Gradle / Ivy

There is a newer version: 35.0.0
Show newest version
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()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy