Uses of Interface
org.apache.commons.rng.sampling.distribution.SharedStateLongSampler
-
Packages that use SharedStateLongSampler Package Description org.apache.commons.rng.sampling This package provides sampling utilities.org.apache.commons.rng.sampling.distribution This package contains classes for sampling from statistical distributions. -
-
Uses of SharedStateLongSampler in org.apache.commons.rng.sampling
Classes in org.apache.commons.rng.sampling that implement SharedStateLongSampler Modifier and Type Class Description private static class
CompositeSamplers.SharedStateLongSamplerFactory.CompositeSharedStateLongSampler
A composite long sampler with shared state support.Methods in org.apache.commons.rng.sampling that return SharedStateLongSampler Modifier and Type Method Description SharedStateLongSampler
CompositeSamplers.SharedStateLongSamplerFactory. createSampler(DiscreteSampler discreteSampler, java.util.List<SharedStateLongSampler> samplers)
Methods in org.apache.commons.rng.sampling that return types with arguments of type SharedStateLongSampler Modifier and Type Method Description static CompositeSamplers.Builder<SharedStateLongSampler>
CompositeSamplers. newSharedStateLongSamplerBuilder()
Create a new builder for a compositeSharedStateLongSampler
.Method parameters in org.apache.commons.rng.sampling with type arguments of type SharedStateLongSampler Modifier and Type Method Description SharedStateLongSampler
CompositeSamplers.SharedStateLongSamplerFactory. createSampler(DiscreteSampler discreteSampler, java.util.List<SharedStateLongSampler> samplers)
Constructor parameters in org.apache.commons.rng.sampling with type arguments of type SharedStateLongSampler Constructor Description CompositeSharedStateLongSampler(SharedStateDiscreteSampler discreteSampler, java.util.List<SharedStateLongSampler> samplers)
-
Uses of SharedStateLongSampler in org.apache.commons.rng.sampling.distribution
Classes in org.apache.commons.rng.sampling.distribution that implement SharedStateLongSampler Modifier and Type Class Description class
UniformLongSampler
Discrete uniform distribution sampler generating values of typelong
.private static class
UniformLongSampler.FixedUniformLongSampler
Discrete uniform distribution sampler when the sample value is fixed.private static class
UniformLongSampler.LargeRangeUniformLongSampler
Discrete uniform distribution sampler when the range between lower and upper is too large to fit in a positive long.private static class
UniformLongSampler.OffsetUniformLongSampler
Adds an offset to an underlying discrete sampler.private static class
UniformLongSampler.PowerOf2RangeUniformLongSampler
Discrete uniform distribution sampler when the range is a power of 2 and greater than 1.private static class
UniformLongSampler.SmallRangeUniformLongSampler
Discrete uniform distribution sampler when the range is small enough to fit in a positive long.
-