[][src]Enum believer::decoders::belief_propagation::BPResult

pub enum BPResult {
    Codeword(Vec<GF2>),
    GotStuck,
    ReachedMaxIter,
}

The possible results of the decoding process.

Codeword(c): The algorithm converge to the codeword c. GotStuck: Some codewords are equally likely and the algorithm can't converge. ReachedMaxIter: Was not able to find a valid codeword in the given number of iterations.

Variants

Codeword(Vec<GF2>)GotStuckReachedMaxIter

Trait Implementations

impl DecodingResult for BPResult[src]

impl Eq for BPResult[src]

impl PartialEq<BPResult> for BPResult[src]

impl Debug for BPResult[src]

Auto Trait Implementations

Blanket Implementations

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

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