[][src]Struct z3::ast::Array

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

Ast node representing an array value. An array in Z3 is a mapping from indices to values.

Methods

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

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

Create an Array which maps from indices of the domain Sort to values of the range Sort.

All values in the Array will be unconstrained.

pub fn fresh_const(
    ctx: &'ctx Context,
    prefix: &str,
    domain: &Sort<'ctx>,
    range: &Sort<'ctx>
) -> Array<'ctx>
[src]

pub fn const_array(
    ctx: &'ctx Context,
    domain: &Sort<'ctx>,
    val: &Dynamic<'ctx>
) -> Array<'ctx>
[src]

Create a "constant array", that is, an Array initialized so that all of the indices in the domain map to the given value val

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

pub fn select(&self, index: &Dynamic<'ctx>) -> Dynamic<'ctx>[src]

Get the value at a given index in the array.

Note that the index must be of the array's domain sort. The return type will be of the array's range sort.

pub fn store(&self, index: &Dynamic<'ctx>, value: &Dynamic<'ctx>) -> Self[src]

Update the value at a given index in the array.

Note that the index must be of the array's domain sort, and the value must be of the array's range sort.

Trait Implementations

impl<'ctx> Ast<'ctx> for Array<'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> Clone for Array<'ctx>[src]

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

Performs copy-assignment from source. Read more

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

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

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

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

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

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

This method tests for !=.

impl<'ctx> Hash for Array<'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

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

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

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

type Error = String

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'ctx> Unpin for Array<'ctx>

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

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

impl<'ctx> UnwindSafe for Array<'ctx>

impl<'ctx> RefUnwindSafe for Array<'ctx>

Blanket Implementations

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> 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> 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]