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

net.jqwik.engine.properties.arbitraries.randomized.BiasedRandomDistribution Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
package net.jqwik.engine.properties.arbitraries.randomized;

import java.math.*;

import net.jqwik.api.*;

public class BiasedRandomDistribution implements RandomDistribution {
	@Override
	public RandomNumericGenerator createGenerator(int genSize, BigInteger min, BigInteger max, BigInteger center) {
		return new BiasedNumericGenerator(genSize, min, max, center);
	}

	@Override
	public String toString() {
		return "BiasedDistribution";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy