Package desmoj.core.dist

Examples of desmoj.core.dist.ContDistExponential


    // this = belongs to this model
    // "TruckArrivalTimeStream" = the name of the stream
    // 3.0 = mean time in minutes between arrival of trucks
    // true = show in report?
    // false = show in trace?
    truckArrivalTime = new ContDistExponential(this, "TruckArrivalTimeStream", 3.0, true, false);

    // necessary because an inter-arrival time can not be negative, but
    // a sample of an exponential distribution can...
    truckArrivalTime.setNonNegative(true);
View Full Code Here


    // this = belongs to this model
    // "TruckArrivalTimeStream" = the name of the stream
    // 3.0 = mean time in minutes between arrival of trucks
    // true = show in report?
    // false = show in trace?
    truckArrivalTime = new ContDistExponential(this, "TruckArrivalTimeStream", 3.0, true, false);

    // necessary because an inter-arrival time can not be negative, but
    // a sample of an exponential distribution can...
    truckArrivalTime.setNonNegative(true);
View Full Code Here

TOP

Related Classes of desmoj.core.dist.ContDistExponential

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.