All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rinde.sim.pdptw.generator.times.ArrivalTimesGenerator Maven / Gradle / Ivy

The newest version!
package rinde.sim.pdptw.generator.times;

import org.apache.commons.math3.random.RandomGenerator;

import com.google.common.collect.ImmutableList;

public interface ArrivalTimesGenerator {
  /**
   * 
   * @param rng
   * @return An immutable list of arrival times in ascending order, may contain
   *         duplicates.
   */
  ImmutableList generate(RandomGenerator rng);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy