covid-sim
Dist.h
1 #ifndef COVIDSIM_DIST_H_INCLUDED_
2 #define COVIDSIM_DIST_H_INCLUDED_
3 
4 #include "Model.h"
5 extern double sinx[361], cosx[361], asin2sqx[1001];
6 double dist2UTM(double, double, double, double);
7 double dist2(Person*, Person*);
8 double dist2_cc(Cell*, Cell*);
9 double dist2_cc_min(Cell*, Cell*);
10 double dist2_mm(Microcell*, Microcell*);
11 double dist2_raw(double, double, double, double);
12 
13 #endif // COVIDSIM_DIST_H_INCLUDED_
The basic unit of the simulation and is associated to a geographical location.
Definition: Model.h:265
Definition: Model.h:15
Holds microcells.
Definition: Model.h:292