#ifndef OSRM_EXTRACTOR_TRAFFIC_SIGNALS_HPP #define OSRM_EXTRACTOR_TRAFFIC_SIGNALS_HPP #include "util/typedefs.hpp" #include #include namespace osrm { namespace extractor { struct TrafficSignals { std::unordered_set bidirectional_nodes; std::unordered_set, boost::hash>> unidirectional_segments; inline bool HasSignal(NodeID from, NodeID to) const { return bidirectional_nodes.count(to) > 0 || unidirectional_segments.count({from, to}) > 0; } }; } // namespace extractor } // namespace osrm #endif // OSRM_EXTRACTOR_TRAFFIC_SIGNALS_HPP