add gaussian noise parameter

This commit is contained in:
Patrick Brosi 2022-01-09 15:09:41 +01:00
parent 0e5213f049
commit f10397db41
6 changed files with 30 additions and 20 deletions

View file

@ -35,7 +35,8 @@ struct Config {
noTrie(false),
noHopCache(false),
writeStats(false),
gridSize(2000 / util::geo::M_PER_DEG) {}
gridSize(2000 / util::geo::M_PER_DEG),
gaussianNoise(0) {}
std::string dbgOutputPath;
std::string solveMethod;
std::string shapeTripId;
@ -60,6 +61,7 @@ struct Config {
bool noHopCache;
bool writeStats;
double gridSize;
double gaussianNoise;
std::string toString() {
std::stringstream ss;