Package edu.cornell.lassp.houle.RngPack

Examples of edu.cornell.lassp.houle.RngPack.Ranmar


        } else if (generatorClassValue.equals("Ranecu")) {
            _randomNumberGenerator = new Ranecu((int) seedValue);
        } else if (generatorClassValue.equals("Ranlux")) {
            _randomNumberGenerator = new Ranlux((int) seedValue);
        } else if (generatorClassValue.equals("Ranmar")) {
            _randomNumberGenerator = new Ranmar((int) seedValue);
        }

        // In the base class, if _random is null, then initialize()
        // will re-run this method. We don't want this, so even though
        // we don't need it, we create an instance of Random.
View Full Code Here

TOP

Related Classes of edu.cornell.lassp.houle.RngPack.Ranmar

Copyright © 2018 www.massapicom. 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.