Enum rsmt2::Logic[][src]

pub enum Logic {
    QF_UF,
    QF_LIA,
    QF_NIA,
    QF_LRA,
    QF_AUFLIA,
    AUFLIA,
    AUFLIRA,
    AUFNIRA,
    LRA,
    QF_BV,
    QF_UFBV,
    QF_ABV,
    QF_AUFBV,
}

SMT Lib 2 logics, used with Solver::set_logic.

Variants

QF_UF

Quantifier-free uninterpreted functions.

QF_LIA

Quantifier-free linear integer arithmetic.

QF_NIA

Quantifier-free non-linear integer arithmetic.

QF_LRA

Quantifier-free linear real arithmetic.

QF_AUFLIA

Quantifier-free arrays, uninterpreted functions, linear integer arithmetic.

AUFLIA

Arrays, uninterpreted functions, linear integer arithmetic.

AUFLIRA

Arrays, uninterpreted functions, linear integer/real arithmetic.

AUFNIRA

arrays, uninterpreted functions, non-linear integer/real arithmetic.

LRA

Linear real arithmetic.

QF_BV

Quantifier-free fixed-size bitvectors.

QF_UFBV

Quantifier-free uninterpreted functions, fixed-size bitvectors.

QF_ABV

Quantifier-free arrays, fixed-size bitvectors.

QF_AUFBV

Quantifier-free arrays, uninterpreted functions, fixed-size bitvectors.

Implementations

impl Logic[src]

pub fn to_smt2<W: Write>(self, writer: &mut W, _: ()) -> SmtRes<()>[src]

Prints the logic in a writer in SMT Lib 2 format.

Trait Implementations

impl Clone for Logic[src]

impl Copy for Logic[src]

impl Display for Logic[src]

Auto Trait Implementations

impl RefUnwindSafe for Logic

impl Send for Logic

impl Sync for Logic

impl Unpin for Logic

impl UnwindSafe for Logic

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.