[][src]Struct quickbacktrack::EntropySolveSettings

pub struct EntropySolveSettings {
    pub attempts: u64,
    pub noise: f64,
    pub final_attempt: Option<Option<u64>>,
}

Stores settings for entropy solver.

Fields

attempts: u64

The number of solve attempts.

noise: f64

Whether to sample randomly (1) or converge (0).

final_attempt: Option<Option<u64>>

Make one final attempt with maximum iterations setting.

Implementations

impl EntropySolveSettings[src]

pub fn new() -> EntropySolveSettings[src]

Creates new entropy settings.

pub fn set_attempts(&mut self, val: u64)[src]

Sets number of attempts.

pub fn attempts(self, val: u64) -> Self[src]

The number of attempts.

pub fn set_noise(&mut self, val: f64)[src]

Sets the noise (0 = converge, 1 = random sampling).

pub fn noise(self, val: f64) -> Self[src]

The noise (0 = converge, 1 = random sampling).

pub fn set_final_attempt(&mut self, val: Option<Option<u64>>)[src]

Sets one final attempt with maximum iterations setting.

pub fn final_attempt(self, val: Option<Option<u64>>) -> Self[src]

The final attempt with maximum iterations setting.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,