Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[format] Unify name from target to destination #588

Merged
merged 2 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/overview/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Glossary of relevant concepts and terms.
edges of each vertex are stored in a separate array.

- **Coordinate List (COO)**: The storage layout the edges of certain vertex type. Corresponding to the unordered
by source vertex id or unordered by target vertex id adjacency list, the edges are stored in a single array and
by source vertex id or unordered by destination vertex id adjacency list, the edges are stored in a single array and
no offsets are stored.

- **Vertex Chunk**: The storage unit of vertex. Each vertex chunk contains a fixed number of vertices and is stored
Expand Down
4 changes: 2 additions & 2 deletions format/enums.proto
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ enum FileType {

enum AdjListType {
UNORDERED_BY_SOURCE = 0;
UNORDERED_BY_TARGET = 1;
UNORDERED_BY_DESTINATION = 1;
ORDERED_BY_SOURCE = 2;
ORDERED_BY_TARGET = 3;
ORDERED_BY_DESTINATION = 3;
};
Loading