All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jasima.core.random.RandomFactoryOld Maven / Gradle / Ivy

/*******************************************************************************
 * This file is part of jasima, v1.3, the Java simulator for manufacturing and 
 * logistics.
 *  
 * Copyright (c) 2015 		jasima solutions UG
 * Copyright (c) 2010-2015 Torsten Hildebrandt and jasima contributors
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 *******************************************************************************/
package jasima.core.random;

import jasima.core.simulation.Simulation.SimMsgCategory;

import java.util.Random;

/**
 * Use {@link RandomFactory} instead.
 * 
 * @author Torsten Hildebrandt
 * @version 
 *          "$Id: RandomFactoryOld.java 753 2015-07-27 15:29:49Z [email protected] $"
 * @deprecated Use {@link RandomFactory} instead.
 */
@Deprecated
public class RandomFactoryOld extends RandomFactory {

	private static final long serialVersionUID = 8632388217395455449L;

	private static final int SEED_TAB_SIZE = 509;

	private Random seedStream = new Random(5787905968364136369L);
	private long[] seeds = null;

	protected RandomFactoryOld() {
		super();
	}

	@Override
	protected long getSeed(final String name) {
		if (seeds == null) {
			seeds = new long[SEED_TAB_SIZE];
			for (int i = 0; i < seeds.length; i++) {
				do {
					seeds[i] = seedStream.nextLong();
				} while (seeds[i] == 0);
			}
		}

		int idx = Math.abs(name.hashCode() % seeds.length);

		long res = seeds[idx];
		seeds[idx] = 0;

		if (res == 0) {
			if (getSim() != null)
				getSim().print(
						SimMsgCategory.WARN,
						"Collision for random stream name '%s', if possible use unique stream names to avoid problems with comparability/reproducability of results.",
						name);
			res = seedStream.nextLong();
		}

		return res;
	}

	public void setSeed(long seed) {
		seedStream.setSeed(seed);
		seeds = null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy