[][src]Struct splr::eliminator::Eliminator

pub struct Eliminator {
    pub enable: bool,
    pub eliminate_combination_limit: usize,
    pub eliminate_grow_limit: usize,
    pub eliminate_loop_limit: usize,
    pub subsume_literal_limit: usize,
    pub subsume_loop_limit: usize,
    // some fields omitted
}

Literal eliminator

Fields

enable: booleliminate_combination_limit: usize

0 for no limit Stop elimination if a generated resolvent is larger than this 0 means no limit.

eliminate_grow_limit: usize

Stop elimination if the increase of clauses is over this

eliminate_loop_limit: usizesubsume_literal_limit: usize

Stop subsumption if the size of a clause is over this

subsume_loop_limit: usize

Trait Implementations

impl EliminatorIF for Eliminator[src]

impl Default for Eliminator[src]

impl Debug for Eliminator[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]