Move ComponentID to EdgeBasedNodeDataContainer

This commit is contained in:
Michael Krasnyk
2017-05-15 12:15:00 +02:00
committed by Patrick Niklaus
parent 373087d74f
commit 26702920b4
18 changed files with 134 additions and 141 deletions
+7
View File
@@ -147,4 +147,11 @@ struct GeometryID
static_assert(sizeof(SegmentID) == 4, "SegmentID needs to be 4 bytes big");
// Strongly connected component ID of an edge-based node
struct ComponentID
{
std::uint32_t id : 31;
std::uint32_t is_tiny : 1;
};
#endif /* TYPEDEFS_H */