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);
}