io.rainfall.generator.SequencesGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rainfall-core Show documentation
Show all versions of rainfall-core Show documentation
Rainfall-core is the core of the Rainfall framework
package io.rainfall.generator;
import io.rainfall.SequenceGenerator;
import io.rainfall.generator.sequence.Distribution;
/**
* @author Aurelien Broszniowski
*/
public class SequencesGenerator {
public static SequenceGenerator sequentially() {
return new IterationSequenceGenerator();
}
public static SequenceGenerator atRandom(Distribution distribution, long min, long max, long width) {
return new RandomSequenceGenerator(distribution, min, max, width);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy