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

com.bnd.math.domain.rand.BooleanDensityUniformDistribution Maven / Gradle / Ivy

The newest version!
package com.bnd.math.domain.rand;

public class BooleanDensityUniformDistribution extends RandomDistribution {

	// Needed for Hibernate only : TODO
	protected void setType(RandomDistributionType type) {
		
	}

	@Override
	public RandomDistributionType getType() {
		return RandomDistributionType.BooleanDensityUniform;
	}

	@Override
	public Class getValueType() {
		return Boolean.class;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy