Go to the source code of this file.
|
| | mio |
| | A collection of classes to simplify handling of matrix shapes in meta programming.
|
| |
| | mio::lsecir |
| |
|
| enum class | mio::lsecir::InfectionState {
mio::lsecir::Susceptible = 0
, mio::lsecir::Exposed = 1
, mio::lsecir::InfectedNoSymptoms = 2
, mio::lsecir::InfectedSymptoms = 3
,
mio::lsecir::InfectedSevere = 4
, mio::lsecir::InfectedCritical = 5
, mio::lsecir::Recovered = 6
, mio::lsecir::Dead = 7
,
mio::lsecir::Count = 8
} |
| | The InfectionState enum describes the basic categories for the infection state of persons. More...
|
| |
| enum class | mio::lsecir::InfectionTransition {
mio::lsecir::SusceptibleToExposed = 0
, mio::lsecir::ExposedToInfectedNoSymptoms = 1
, mio::lsecir::InfectedNoSymptomsToInfectedSymptoms = 2
, mio::lsecir::InfectedNoSymptomsToRecovered = 3
,
mio::lsecir::InfectedSymptomsToInfectedSevere = 4
, mio::lsecir::InfectedSymptomsToRecovered = 5
, mio::lsecir::InfectedSevereToInfectedCritical = 6
, mio::lsecir::InfectedSevereToRecovered = 7
,
mio::lsecir::InfectedCriticalToDead = 8
, mio::lsecir::InfectedCriticalToRecovered = 9
, mio::lsecir::Count = 10
} |
| | The InfectionTransition enum describes the possible transitions of the infectious state of persons. More...
|
| |