init(start, end, uniqueness, DEFAULT_MOTIF_BUFFER_SIZE);
}
public void init(int start, int end, double uniqueness, int motifBytes) {
if (start < 0 || start >= 256) {
throw new LinkBenchConfigError("start " + start +
" out of range [0,255]");
}
if (end < 0 || end >= 256) {
throw new LinkBenchConfigError("endbyte " + end +
" out of range [0,255]");
}
if (start >= end) {
throw new LinkBenchConfigError("startByte " + start
+ " >= endByte " + end);
}
this.start = (byte)start;
this.range = end - start + 1;
this.uniqueness = uniqueness;