infection_state.h Source File

CPP API: infection_state.h Source File
ode_mseirs4/infection_state.h
Go to the documentation of this file.
1 /*
2 * Copyright (C) 2020-2026 MEmilio
3 *
4 * Authors: Henrik Zunker
5 *
6 * Contact: Martin J. Kuehn <Martin.Kuehn@DLR.de>
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20 #ifndef ODE_MSEIRS4_INFECTION_STATE_H
21 #define ODE_MSEIRS4_INFECTION_STATE_H
22 
23 namespace mio
24 {
25 namespace omseirs4
26 {
27 enum class InfectionState
28 {
29  MaternalImmune = 0,
30  S1,
31  S2,
32  S3,
33  S4,
34  E1,
35  E2,
36  E3,
37  E4,
38  I1,
39  I2,
40  I3,
41  I4,
42  R1,
43  R2,
44  R3,
45  R4,
46  Count
47 };
48 
49 } // namespace omseirs4
50 } // namespace mio
51 
52 #endif // ODE_MSEIRS4_INFECTION_STATE_H
InfectionState
Definition: ode_mseirs4/infection_state.h:28
A collection of classes to simplify handling of matrix shapes in meta programming.
Definition: models/abm/analyze_result.h:30