+The symptom status module controls the progression of illness in infected individuals. `SymptomStatus` takes 1 of 6 values: `NoSymptoms` (the default), `Mild`, `Severe`, `Critical`, `Resolved`, or `Dead`. The progression to worse symptoms is a nested hierarchy: Individuals must pass through the mild state to reach severe, mild and severe states to reach critical, and so on. Consequently, probabilities are defined conditional on being in the previous state (e.g., probability of developing critical illness *given that the infected person has already developed severe illness*). However, the process of symptom resolution is not nested; individuals transition directly from the mild, severe, or critical states to the resolved state. Mild, severe, and critical are necessarily transitory states. All infected persons either remain in the `NoSymptoms` state (i.e., their infection was asymptomatic) or end up in the resolved or dead states. In addition to the conditional probabilities of progression, each transition is parameterized with a negative binomial delay distribution (parameters $\mu$ and $\sigma$).
0 commit comments