covid-sim
SetupModel.h
1 #ifndef COVIDSIM_SETUPMODEL_H_INCLUDED_
2 #define COVIDSIM_SETUPMODEL_H_INCLUDED_
3 
4 void SetupModel(char*, char*, char*, char*);
5 void SetupPopulation(char*, char*, char*);
6 void SetupAirports(void);
7 void AssignHouseholdAges(int, int, int);
8 void AssignPeopleToPlaces(void);
9 void StratifyPlaces(void);
10 void LoadPeopleToPlaces(char*);
11 void SavePeopleToPlaces(char*);
12 void SaveAgeDistrib(void);
13 void UpdateProbs(int);
14 
15 // network file format version; update this number when you make changes to the format of the
16 // network file, to ensure old/incompatible files are not loaded.
17 const int NETWORK_FILE_VERSION = 1;
18 
19 struct BinFile
20 {
21  double x, y, pop;
22  int cnt, ad;
23 };
24 
25 extern char OutFile[1024],OutDensFile[1024];
26 
27 #endif // COVIDSIM_SETUPMODEL_H_INCLUDED_