Package InfoCollection

Examples of InfoCollection.StoppingRule


    // Use a fixed stopping rule, that stops after 20 measurements.
    // More sophisticated stopping rules may also be used.
    // A simulation sampling rule is a combination of allocation
    // and stopping rule.
    StoppingRule stop = new FixedStop(20);

    // Initialize a random number generator
    Random rnd;
    try { rnd = new Random(); }
    catch(Exception e) {
View Full Code Here

TOP

Related Classes of InfoCollection.StoppingRule

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.