[][src]Struct z3::ast::Bool

pub struct Bool<'ctx> { /* fields omitted */ }

Ast node representing a boolean value.

Methods

impl<'ctx> Bool<'ctx>[src]

pub fn new_const<S: Into<Symbol>>(ctx: &'ctx Context, name: S) -> Bool<'ctx>[src]

pub fn fresh_const(ctx: &'ctx Context, prefix: &str) -> Bool<'ctx>[src]

pub fn from_bool(ctx: &'ctx Context, b: bool) -> Bool<'ctx>[src]

pub fn as_bool(&self) -> Option<bool>[src]

pub fn translate<'dest_ctx>(&self, dest: &'dest_ctx Context) -> Bool<'dest_ctx>[src]

pub fn ite<T>(&self, a: &T, b: &T) -> T where
    T: Ast<'ctx>, 
[src]

pub fn and(&self, other: &[&Self]) -> Self[src]

pub fn or(&self, other: &[&Self]) -> Self[src]

pub fn xor(&self, other: &Self) -> Self[src]

pub fn not(&self) -> Self[src]

pub fn iff(&self, other: &Self) -> Self[src]

pub fn implies(&self, other: &Self) -> Self[src]

pub fn pb_le(
    &self,
    other: &[&Bool<'ctx>],
    coeffs: Vec<i32>,
    k: i32
) -> Bool<'ctx>
[src]

pub fn pb_ge(
    &self,
    other: &[&Bool<'ctx>],
    coeffs: Vec<i32>,
    k: i32
) -> Bool<'ctx>
[src]

pub fn pb_eq(
    &self,
    other: &[&Bool<'ctx>],
    coeffs: Vec<i32>,
    k: i32
) -> Bool<'ctx>
[src]

Trait Implementations

impl<'ctx> Ast<'ctx> for Bool<'ctx>[src]

fn _eq(&self, other: &Self) -> Bool<'ctx>[src]

Compare this Ast with another Ast, and get a Bool representing the result. Read more

fn distinct(&self, other: &[&Self]) -> Bool<'ctx>[src]

Compare this Ast with a list of other Asts, and get a Bool which is true only if all arguments (including Self) are pairwise distinct. Read more

fn get_sort(&self) -> Sort<'ctx>[src]

Get the Sort of the Ast

fn simplify(&self) -> Self[src]

Simplify the Ast. Returns a new Ast which is equivalent, but simplified using algebraic simplification rules, such as constant propagation. Read more

fn substitute<T: Ast<'ctx>>(&self, substitutions: &[(&T, &T)]) -> Self[src]

Performs substitution on the Ast. The slice substitutions contains a list of pairs with a "from" Ast that will be substituted by a "to" Ast. Read more

impl<'ctx> From<Bool<'ctx>> for Z3_ast[src]

impl<'ctx> From<Bool<'ctx>> for Dynamic<'ctx>[src]

impl<'ctx> Drop for Bool<'ctx>[src]

impl<'ctx> PartialEq<Bool<'ctx>> for Bool<'ctx>[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<'ctx> Clone for Bool<'ctx>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'ctx> Eq for Bool<'ctx>[src]

impl<'ctx> Display for Bool<'ctx>[src]

impl<'ctx> Debug for Bool<'ctx>[src]

impl<'ctx> TryFrom<Dynamic<'ctx>> for Bool<'ctx>[src]

type Error = String

The type returned in the event of a conversion error.

impl<'ctx> Hash for Bool<'ctx>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<'ctx> !Send for Bool<'ctx>

impl<'ctx> Unpin for Bool<'ctx>

impl<'ctx> !Sync for Bool<'ctx>

impl<'ctx> UnwindSafe for Bool<'ctx>

impl<'ctx> RefUnwindSafe for Bool<'ctx>

Blanket Implementations

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.

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

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

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