blob: 52f6c8aefc692bc925324b869335cb9ef7372be0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.rng.core.source32;
/**
* A fast all-purpose 32-bit generator. For faster generation of {@code float} values try the
* {@link XoRoShiRo64Star} generator.
*
* <p>This is a member of the Xor-Shift-Rotate family of generators. Memory footprint is 64
* bits.</p>
*
* @see <a href="http://xoshiro.di.unimi.it/xoroshiro64starstar.c">Original source code</a>
* @see <a href="http://xoshiro.di.unimi.it/">xorshiro / xoroshiro generators</a>
* @since 1.3
*/
public class XoRoShiRo64StarStar extends AbstractXoRoShiRo64 {
/**
* Creates a new instance.
*
* @param seed Initial seed.
* If the length is larger than 2, only the first 2 elements will
* be used; if smaller, the remaining elements will be automatically
* set. A seed containing all zeros will create a non-functional generator.
*/
public XoRoShiRo64StarStar(int[] seed) {
super(seed);
}
/**
* Creates a new instance using a 2 element seed.
* A seed containing all zeros will create a non-functional generator.
*
* @param seed0 Initial seed element 0.
* @param seed1 Initial seed element 1.
*/
public XoRoShiRo64StarStar(int seed0, int seed1) {
super(seed0, seed1);
}
/** {@inheritDoc} */
@Override
protected int nextOutput() {
return Integer.rotateLeft(state0 * 0x9e3779bb, 5) * 5;
}
}