Zipf randomNumItems = new Zipf(profile.rng,
AuctionMarkConstants.ITEM_MIN_ITEMS_PER_SELLER,
Math.round(AuctionMarkConstants.ITEM_MAX_ITEMS_PER_SELLER * profile.getScaleFactor()),
1.001);
for (long i = 0; i < this.tableSize; i++) {
long num_items = randomNumItems.nextInt();
profile.users_per_item_count.put(num_items);
} // FOR
if (trace.val)
LOG.trace("Users Per Item Count:\n" + profile.users_per_item_count);
this.idGenerator = new UserIdGenerator(profile.users_per_item_count, getNumClients());