[][src]Struct poisson::Builder

pub struct Builder<F, V> where
    F: Float,
    V: Vector<F>, 
{ /* fields omitted */ }

Builder for the generator.

Methods

impl<V, F> Builder<F, V> where
    F: Float,
    V: Vector<F>, 
[src]

pub fn with_radius(radius: F, poisson_type: Type) -> Self[src]

New Builder with type of distribution and radius specified. The radius should be ]0, √2 / 2]

pub fn with_relative_radius(relative: F, poisson_type: Type) -> Self[src]

New Builder with type of distribution and relative radius specified. The relative radius should be ]0, 1]

pub fn with_samples(samples: usize, relative: F, poisson_type: Type) -> Self[src]

New Builder with type of distribution, approximate amount of samples and relative radius specified. The amount of samples should be larger than 0. The relative radius should be [0, 1]. For non-perioditic this is supported only for 2, 3 and 4 dimensional generation. For perioditic this is supported up to 8 dimensions.

pub fn radius(&self) -> F[src]

Returns the radius of the generator.

pub fn poisson_type(&self) -> Type[src]

Returns the type of the generator.

pub fn build<R, A>(self, rng: R, _algo: A) -> Generator<F, V, R, A> where
    R: Rng,
    A: Creator<F, V>, 
[src]

Builds generator with random number generator and algorithm specified.

Trait Implementations

impl<F: Default, V: Default> Default for Builder<F, V> where
    F: Float,
    V: Vector<F>, 
[src]

impl<F: Clone, V: Clone> Clone for Builder<F, V> where
    F: Float,
    V: Vector<F>, 
[src]

impl<F: PartialEq, V: PartialEq> PartialEq<Builder<F, V>> for Builder<F, V> where
    F: Float,
    V: Vector<F>, 
[src]

impl<F: Debug, V: Debug> Debug for Builder<F, V> where
    F: Float,
    V: Vector<F>, 
[src]

Auto Trait Implementations

impl<F, V> Sync for Builder<F, V> where
    F: Sync,
    V: Sync

impl<F, V> Send for Builder<F, V> where
    F: Send,
    V: Send

impl<F, V> Unpin for Builder<F, V> where
    F: Unpin,
    V: Unpin

impl<F, V> UnwindSafe for Builder<F, V> where
    F: UnwindSafe,
    V: UnwindSafe

impl<F, V> RefUnwindSafe for Builder<F, V> where
    F: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]