// starting at the middle of A_ID
// It's kind of lame but it's something for now
long num_a_records = Math.round(MarkovConstants.TABLESIZE_TABLEA * m_scalefactor);
RandomDistribution.Zipf zipf = new RandomDistribution.Zipf(m_rng, 0, (int) num_a_records, 1.001d);
this.rands = new WrappingRandomDistribution[] { new WrappingRandomDistribution(zipf, 0), new WrappingRandomDistribution(zipf, (int) (num_a_records / 2.0)), };
}