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