Example usage for org.apache.commons.math3.random RandomGeneratorFactory convertToLong

List of usage examples for org.apache.commons.math3.random RandomGeneratorFactory convertToLong

Introduction

In this page you can find the example usage for org.apache.commons.math3.random RandomGeneratorFactory convertToLong.

Prototype

public static long convertToLong(int[] seed) 

Source Link

Document

Converts seed from one representation to another.

Usage

From source file:msi.gama.util.random.GamaRNG.java

@Override
public void setSeed(int[] seed) {
    setSeed(RandomGeneratorFactory.convertToLong(seed));
}