Package ca.eandb.jmist.framework.random

Source Code of ca.eandb.jmist.framework.random.RepeatableRandom

/**
* Java Modular Image Synthesis Toolkit (JMIST)
* Copyright (C) 2008-2013 Bradley W. Kimmel
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
package ca.eandb.jmist.framework.random;

import java.util.ArrayList;
import java.util.List;

import ca.eandb.jmist.framework.Random;
import ca.eandb.util.DoubleArray;

/**
* @author Brad
*
*/
public final class RepeatableRandom implements Random {

  /** Serialization version ID. */
  private static final long serialVersionUID = -6178171395488135601L;

  private final Random inner;

  private final List<DoubleArray> values = new ArrayList<DoubleArray>();

  private int sequence = 0;

  private int position = 0;

  public RepeatableRandom(Random inner) {
    this.inner = inner;
    values.add(new DoubleArray());
  }

  public RepeatableRandom cloneSequence() {
    RepeatableRandom rnd = new RepeatableRandom(
        inner.createCompatibleRandom());
    rnd.values.clear();
    for (DoubleArray seq : values) {
      rnd.values.add(seq.clone());
    }
    return rnd;
  }

  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.Random#createCompatibleRandom()
   */
  public Random createCompatibleRandom() {
    return new RepeatableRandom(inner.createCompatibleRandom());
  }

  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.Random#next()
   */
  public double next() {
    DoubleArray seq = values.get(sequence);
    while (position >= seq.size()) {
      seq.add(inner.next());
    }
    return seq.get(position++);
  }

  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.Random#reset()
   */
  public void reset() {
    sequence = 0;
    position = 0;
  }

  public void truncateAll() {
    truncate();
    values.subList(sequence + 1, values.size()).clear();
  }

  public void truncate() {
    values.get(sequence).resize(position);
  }

  public void mark() {
    if (++sequence >= values.size()) {
      values.add(new DoubleArray());
    }
    position = 0;
  }

  public void mutate() {
    mutate(1.0 / 16.0);
  }

  public void mutate(double width) {
    DoubleArray seq = values.get(sequence);
    for (int i = position, n = seq.size(); i < n; i++) {
      seq.set(i, mutate(seq.get(i), width));
    }
  }

  public void mutate(double width, int n) {
    DoubleArray seq = values.get(sequence);
    for (int i = position, j = 0; j < n && i < seq.size(); i++, j++) {
      seq.set(i, mutate(seq.get(i), width));
    }
  }

//  private double mutate(double x, double width) {
//    x = x + (inner.next() - 0.5) * width;
//    return x - Math.floor(x);
//  }

  private static final double s1 = 32.0;
  private double mutate(double x, double width) {
    final double rnd = inner.next();
    final double dx = width / (1.0 + s1 * Math.abs(2.0 * rnd - 1.0)) -
        width / (1.0 + s1);
    if (rnd < 0.5) {
      double x1 = x + dx;
      return (x1 < 1.0) ? x1 : x1 - 1.0;
    } else {
      double x1 = x - dx;
      return (x1 < 0.0) ? x1 + 1.0 : x1;
    }
  }

  public void clear() {
    values.clear();
    values.add(new DoubleArray());
    sequence = 0;
    position = 0;
  }

}
TOP

Related Classes of ca.eandb.jmist.framework.random.RepeatableRandom

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.