bts classifier
This commit is contained in:
parent
749044ce97
commit
516f04b9c5
9 changed files with 219 additions and 13 deletions
|
|
@ -62,6 +62,7 @@ struct RoutingOpts {
|
|||
double transitionPen;
|
||||
std::string transPenMethod;
|
||||
std::string emPenMethod;
|
||||
std::string statsimiMethod;
|
||||
};
|
||||
|
||||
// _____________________________________________________________________________
|
||||
|
|
@ -82,6 +83,7 @@ inline bool operator==(const RoutingOpts& a, const RoutingOpts& b) {
|
|||
fabs(a.nonStationPen - b.nonStationPen) < 0.01 &&
|
||||
a.transPenMethod == b.transPenMethod &&
|
||||
a.emPenMethod == b.emPenMethod &&
|
||||
a.statsimiMethod == b.statsimiMethod &&
|
||||
a.useStations == b.useStations && a.popReachEdge == b.popReachEdge &&
|
||||
a.noSelfHops == b.noSelfHops;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,7 +47,6 @@ using pfaedle::router::ShapeBuilder;
|
|||
using pfaedle::router::Stats;
|
||||
using pfaedle::router::TripForests;
|
||||
using pfaedle::router::TripTrie;
|
||||
using pfaedle::statsimiclassifier::JaccardClassifier;
|
||||
using pfaedle::trgraph::EdgeGrid;
|
||||
using pfaedle::trgraph::NodeGrid;
|
||||
using util::geo::latLngToWebMerc;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue