[][src]Enum boolector::option::SolverEngine

pub enum SolverEngine {
    Fun,
    SLS,
    Prop,
    AIGProp,
    Quant,
}

Variants

Fun

Default engine for all combinations of QF_AUFBV; uses lemmas on demand for QF_AUFBV and eager bit-blasting for QF_BV

SLS

Score-based local search QF_BV engine

Prop

Propagation-based local search QF_BV engine

AIGProp

Propagation-based local search QF_BV engine that operates on the bit-blasted formula (the AIG layer)

Quant

Quantifier engine (BV only)

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.