Examples of RNGPeriod


Examples of org.jamesii.core.math.random.generators.RNGPeriod

    assertEquals(420, p.getExponent());
  }

  /** Tests the {@link RNGPeriod#compareTo(RNGPeriod)} method. */
  public void testCompareTo() {
    RNGPeriod p1 = new RNGPeriod(1, 2, 10);
    RNGPeriod p2 = new RNGPeriod(1.2, 2, 10);
    assertTrue(p1.compareTo(p2) < 0);

    p1.setMultiplier(1.4);
    assertTrue(p1.compareTo(p2) > 0);

    p1.setMultiplier(1);
    p1.setBase(3);
    p2.setMultiplier(1);
    assertTrue(p1.compareTo(p2) > 0);

    p2.setBase(3);
    p2.setExponent(11);
    assertTrue(p1.compareTo(p2) < 0);

    p1 = new RNGPeriod(2, 19937);
    p2 = new RNGPeriod(4.3, 10, 6001);
    assertTrue(p1.compareTo(p2) > 0);

    p2.setMultiplier(4.4);
    assertTrue(p1.compareTo(p2) < 0);
  }
View Full Code Here

Examples of org.jamesii.core.math.random.generators.RNGPeriod

*/
public class TestRNGPeriod extends TestCase {

  /** Tests the constructor. */
  public void testConstructor() {
    RNGPeriod p = new RNGPeriod(2, 20);
    assertEquals(1.0, p.getMultiplier());
    assertEquals(2, p.getBase());
    assertEquals(20, p.getExponent());

    p = new RNGPeriod(3.14, 2, 20);
    assertEquals(3.14, p.getMultiplier(), 0.001);
    assertEquals(2, p.getBase());
    assertEquals(20, p.getExponent());
  }
View Full Code Here

Examples of org.jamesii.core.math.random.generators.RNGPeriod

    assertEquals(20, p.getExponent());
  }

  /** Tests the setter methods. */
  public void testSetters() {
    RNGPeriod p = new RNGPeriod(1, 1);
    assertEquals(1.0, p.getMultiplier());
    assertEquals(1, p.getBase());
    assertEquals(1, p.getExponent());

    p.setMultiplier(3.14);
    assertEquals(3.14, p.getMultiplier(), 0.001);
    assertEquals(1, p.getBase());
    assertEquals(1, p.getExponent());

    p.setBase(42);
    assertEquals(3.14, p.getMultiplier(), 0.001);
    assertEquals(42, p.getBase());
    assertEquals(1, p.getExponent());

    p.setExponent(420);
    assertEquals(3.14, p.getMultiplier(), 0.001);
    assertEquals(42, p.getBase());
    assertEquals(420, p.getExponent());
  }
View Full Code Here

Examples of org.jamesii.core.math.random.generators.RNGPeriod

   */
  public PeriodControlledGenerator(IRandom controlledPRNG) {
    super();
    this.controlledPRNG = controlledPRNG;

    RNGPeriod per = controlledPRNG.getInfo().getPeriod();

    period = new BigInteger(Integer.valueOf(per.getBase()).toString());

    period = period.pow(per.getExponent());

    period =
        period.multiply(new BigInteger(Double.valueOf(per.getMultiplier())
            .toString()));

    // we should use the root here, but half is a first step ;-)
    period_barrier = period.divide(BigInteger.ONE.add(BigInteger.ONE));

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.