covid-sim
Loading...
Searching...
No Matches
SetupModel.h
1#ifndef COVIDSIM_SETUPMODEL_H_INCLUDED_
2#define COVIDSIM_SETUPMODEL_H_INCLUDED_
3
4void SetupModel(char*, char*, char*, char*);
5void SetupPopulation(char*, char*, char*);
6void SetupAirports(void);
7void AssignHouseholdAges(int, int, int);
8void AssignPeopleToPlaces(void);
9void StratifyPlaces(void);
10void LoadPeopleToPlaces(char*);
11void SavePeopleToPlaces(char*);
12void SaveAgeDistrib(void);
13void 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.
17const int NETWORK_FILE_VERSION = 1;
18
19struct BinFile
20{
21 double x, y, pop;
22 int cnt, ad;
23};
24
25extern char OutFile[1024],OutDensFile[1024];
26
27#endif // COVIDSIM_SETUPMODEL_H_INCLUDED_