-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Description
Hi,
In this code:
Node(int id, MutableIntList[] connections, TItem item, boolean deleted) {
this.id = id;
this.connections = connections;
this.item = item;
this.deleted = deleted;
}
int maxLevel() {
return this.connections.length - 1;
}
why are you setting maxLevel to the number of connections (neighbors) of the node? The level of the node should be the layer number in which the node is stored. could you explain to me?
and what does this:
private MutableObjectIntMap<TId> lookup;
store? Is there any README explaining the data layout?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels