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

io.repseq.gen.dist.IndependentRealModel Maven / Gradle / Ivy

package io.repseq.gen.dist;

import com.fasterxml.jackson.annotation.JsonSubTypes;
import org.apache.commons.math3.random.RandomGenerator;

/**
 * Independent real value distribution.
 */
@JsonSubTypes({
        @JsonSubTypes.Type(value = ParetoModel.class, name = "pareto"),
        @JsonSubTypes.Type(value = FixedRealModel.class, name = "fixed")
})
public interface IndependentRealModel extends Model {
    IndependentRealGenerator create(RandomGenerator random);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy