Struct SolverCtx

Source
pub struct SolverCtx {
    pub find_widths: bool,
    pub bitwidth: usize,
    pub additional_decls: Vec<(String, SExpr)>,
    pub additional_assumptions: Vec<SExpr>,
    pub additional_assertions: Vec<SExpr>,
    /* private fields */
}

Fields§

§find_widths: bool§bitwidth: usize§additional_decls: Vec<(String, SExpr)>§additional_assumptions: Vec<SExpr>§additional_assertions: Vec<SExpr>

Implementations§

Source§

impl SolverCtx

Source

pub fn new_fresh_bits(&mut self, width: usize) -> SExpr

Source

pub fn widen_to_register_width( &mut self, tyvar: u32, narrow_width: usize, narrow_decl: SExpr, name: Option<String>, ) -> SExpr

Source

pub fn get_expr_width_var(&self, e: &Expr) -> Option<SExpr>

Source

pub fn vir_to_smt_ty(&self, ty: &Type) -> SExpr

Source

pub fn get_type(&self, x: &Expr) -> Option<&Type>

Source

pub fn get_expr_value(&self, e: &Expr) -> Option<i128>

Source

pub fn static_width(&self, x: &Expr) -> Option<usize>

Source

pub fn assume_same_width(&mut self, x: &Expr, y: &Expr)

Source

pub fn assume_same_width_from_sexpr(&mut self, x: SExpr, y: &Expr)

Source

pub fn assume_comparable_types(&mut self, x: &Expr, y: &Expr)

Source

pub fn vir_expr_to_sexp(&mut self, e: Expr) -> SExpr

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.