Examples of MRG32k3a


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

Examples of umontreal.iro.lecuyer.rng.MRG32k3a

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