Skip to content
This repository was archived by the owner on Jul 7, 2020. It is now read-only.

Add Getters for Width and Depth attributes #144

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,14 @@ public double getConfidence() {
return confidence;
}

public int getDepth() {
return depth;
}

public int getWidth() {
return width;
}

int hash(long item, int i) {
long hash = hashA[i] * item;
// A super fast way of computing x mod 2^p-1
Expand Down