Preconditions.checkNotNull(bytes);
Preconditions.checkArgument(numPostings > 0);
Preconditions.checkArgument(collectionSize > 0);
bytesIn = new ByteArrayInputStream(bytes);
bitsIn = new BitInputStream(bytesIn);
innerNumPostings = numPostings;
innerCollectionSize = collectionSize;
innerGolombParam = (int) Math.ceil(0.69 * ((float) innerCollectionSize)
/ (float) innerNumPostings);
postingsList = list;