covid-sim
Loading...
Searching...
No Matches
Country.h
1#ifndef COVIDSIM_COUNTRY_H_INCLUDED_
2#define COVIDSIM_COUNTRY_H_INCLUDED_
3
4
5const int MAX_HOUSEHOLD_SIZE = 10;
6const int MAX_INTERVENTION_TYPES = 1;
7const int MAX_INTERVENTIONS_PER_ADUNIT = 10;
8
9const int ADUNIT_LOOKUP_SIZE = 1000000;
10const int MAX_COUNTRIES = 100;
11const int NUM_PLACE_TYPES = 4;
12const int MAX_ADUNITS = 3200;
13
14// Maximal absent time - used for array sizing
15const int MAX_ABSENT_TIME = 8;
16
17const int MAX_DIST = 2000;
18
19#endif // COVIDSIM_COUNTRY_H_INCLUDED_