/srv/osrm/osrm-backend/include/extractor/intersection
NameSizeModeActions
constants.hpp13100644editdlrm
coordinate_extractor.hpp111290644editdlrm
have_identical_names.hpp7790644editdlrm
intersection_analysis.hpp51740644editdlrm
intersection_edge.hpp13000644editdlrm
intersection_view.hpp86020644editdlrm
mergable_road_detector.hpp75540644editdlrm
node_based_graph_walker.hpp133920644editdlrm
Edit: /srv/osrm/osrm-backend/include/extractor/intersection/have_identical_names.hpp (779B)
#ifndef OSRM_EXTRACTOR_INTERSECTION_HAVE_IDENTICAL_NAMES_HPP_ #define OSRM_EXTRACTOR_INTERSECTION_HAVE_IDENTICAL_NAMES_HPP_ #include "extractor/name_table.hpp" #include "extractor/suffix_table.hpp" #include "guidance/constants.hpp" namespace osrm::extractor::intersection { // check if two name ids can be seen as identical (in presence of refs/others) // in our case this translates into no name announcement in either direction (lhs->rhs and // rhs->lhs) bool HaveIdenticalNames(const NameID lhs, const NameID rhs, const NameTable &name_table, const SuffixTable &street_name_suffix_table); } // namespace osrm::extractor::intersection #endif /*OSRM_EXTRACTOR_INTERSECTION_HAVE_IDENTICAL_NAMES_HPP_*/