bts classifier

This commit is contained in:
Patrick Brosi 2022-01-13 21:41:52 +01:00
parent 749044ce97
commit 516f04b9c5
9 changed files with 219 additions and 13 deletions

View file

@ -61,6 +61,13 @@ void MotConfigReader::parse(const std::vector<std::string>& paths,
cfg.routingOpts.transPenMethod = "exp";
}
if (p.hasKey(secStr, "station_similarity_classification_method")) {
cfg.routingOpts.statsimiMethod =
p.getStr(secStr, "station_similarity_classification_method");
} else {
cfg.routingOpts.statsimiMethod = "bts";
}
if (p.hasKey(secStr, "routing_use_stations")) {
cfg.routingOpts.useStations = p.getBool(secStr, "routing_use_stations");
} else {