2018-03-21 14:17:24 -04:00
|
|
|
#ifndef OSRM_EXTRACTOR_COMPRESSED_NODE_BASED_GRAPH_EDGE_HPP
|
|
|
|
#define OSRM_EXTRACTOR_COMPRESSED_NODE_BASED_GRAPH_EDGE_HPP
|
|
|
|
|
|
|
|
#include "util/typedefs.hpp"
|
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::extractor
|
2018-03-21 14:17:24 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
// We encode the cnbg graph only using its topology as edge list
|
|
|
|
struct CompressedNodeBasedGraphEdge
|
|
|
|
{
|
|
|
|
NodeID source;
|
|
|
|
NodeID target;
|
|
|
|
};
|
2020-11-26 10:21:39 -05:00
|
|
|
} // namespace osrm
|
2018-03-21 14:17:24 -04:00
|
|
|
|
|
|
|
#endif // OSRM_EXTRACTOR_COMPRESSED_NODE_BASED_GRAPH_EDGE_HPP
|