Package rinde.sim.pdptw.generator.loc

Examples of rinde.sim.pdptw.generator.loc.NormalLocationsGenerator


  }

  @Parameters
  public static Collection<Object[]> data() {
    return Arrays.asList(new Object[][] { /* */
        { new NormalLocationsGenerator(10, .15, .05) }, /* */
        { new NormalLocationsGenerator(10, .18, .05) }, /* */
        { new NormalLocationsGenerator(5, .15, .05) }, /* */
        { new NormalLocationsGenerator(5, .16, .05) }, /* */
        { new NormalLocationsGenerator(5, .17, .05) }, /* */
        { new NormalLocationsGenerator(5, .18, .05) }, /* */
        { new NormalLocationsGenerator(5, .19, .05) }, /* */
        { new NormalLocationsGenerator(5, .20, .05) }, /* */
        { new NormalLocationsGenerator(5, .15, 1.0) }, /* */
        { new NormalLocationsGenerator(5, .2, .1) }, /* */
        { new NormalLocationsGenerator(5.1, .2, .1) }, /* */
        { new NormalLocationsGenerator(3, .2, 1) } /* */

    });
  }
View Full Code Here


        arrivalTimesGenerator = new PoissonProcessArrivalTimes(
            latestOrderAnnounceTime,
            globalAnnouncementIntensity, ordersPerAnnouncement);
      }
      locationsGenerator =
          new NormalLocationsGenerator(size, .15, .05);
      if (timeWindowGenerator == null) {
        timeWindowGenerator =
            new ProportionateUniformTWGenerator(depotLocation,
                scenarioLength,
                serviceTime * 60000, minimumResponseTime * 60000, vehicleSpeed);
View Full Code Here

TOP

Related Classes of rinde.sim.pdptw.generator.loc.NormalLocationsGenerator

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.