VeloGraphX
High-performance dynamic graph analytics in C++20
Loading...
Searching...
No Matches
types.hpp
Go to the documentation of this file.
1#pragma once
2#include <cstdint>
3
4namespace velographx {
5using VertexId = std::uint32_t;
6using EdgeOffset = std::uint64_t;
7inline constexpr std::uint32_t kUnreachable = UINT32_MAX;
8}
std::uint64_t EdgeOffset
Definition types.hpp:6
constexpr std::uint32_t kUnreachable
Definition types.hpp:7
std::uint32_t VertexId
Definition frontier.hpp:6