Package umontreal.iro.lecuyer.rng

Examples of umontreal.iro.lecuyer.rng.MRG32k3a


    this.group = group;
    this.dist = dist; 
    this.name = name; 
    if(dist!=null)
      distLogger = new SimDistributionLogger(this.dist.getMean());
    rand = new MRG32k3a();
  }
View Full Code Here


  int factor = 1;
  RandomStream streamDemand = null
  RandomVariateGen gen = null
 
  public SimDistribution(int type, double mean, double param) {
    streamDemand = new MRG32k3a();
    this.type = type;
    this.mean = mean;
    this.param = param;
    switch(this.type){
    case POISSON:
View Full Code Here

TOP

Related Classes of umontreal.iro.lecuyer.rng.MRG32k3a

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.