Struct z3::Sort

source ·
pub struct Sort<'ctx> { /* private fields */ }
Expand description

Sorts represent the various ‘types’ of Asts.

Implementations§

source§

impl<'ctx> Sort<'ctx>

source

pub fn uninterpreted(ctx: &'ctx Context, name: Symbol) -> Sort<'ctx>

source

pub fn bool(ctx: &'ctx Context) -> Sort<'ctx>

source

pub fn int(ctx: &'ctx Context) -> Sort<'ctx>

source

pub fn real(ctx: &'ctx Context) -> Sort<'ctx>

source

pub fn float(ctx: &'ctx Context, ebits: u32, sbits: u32) -> Sort<'ctx>

source

pub fn float32(ctx: &'ctx Context) -> Sort<'ctx>

source

pub fn double(ctx: &'ctx Context) -> Sort<'ctx>

source

pub fn string(ctx: &'ctx Context) -> Sort<'ctx>

source

pub fn bitvector(ctx: &'ctx Context, sz: u32) -> Sort<'ctx>

source

pub fn array( ctx: &'ctx Context, domain: &Sort<'ctx>, range: &Sort<'ctx> ) -> Sort<'ctx>

source

pub fn set(ctx: &'ctx Context, elt: &Sort<'ctx>) -> Sort<'ctx>

source

pub fn enumeration( ctx: &'ctx Context, name: Symbol, enum_names: &[Symbol] ) -> (Sort<'ctx>, Vec<FuncDecl<'ctx>>, Vec<FuncDecl<'ctx>>)

Create an enumeration sort.

Creates a Z3 enumeration sort with the given name. The enum variants will have the names in enum_names. Three things are returned:

  • the created Sort,
  • constants to create the variants,
  • and testers to check if a value is equal to a variant.
Examples
let (colors, color_consts, color_testers) = Sort::enumeration(
    &ctx,
    "Color".into(),
    &[
        "Red".into(),
        "Green".into(),
        "Blue".into(),
    ],
);

let red_const = color_consts[0].apply(&[]);
let red_tester = &color_testers[0];
let eq = red_tester.apply(&[&red_const]);

assert_eq!(solver.check(), SatResult::Sat);
let model = solver.get_model().unwrap();;

assert!(model.eval(&eq, true).unwrap().as_bool().unwrap().as_bool().unwrap());
source

pub fn kind(&self) -> SortKind

source

pub fn float_exponent_size(&self) -> Option<u32>

Returns Some(e) where e is the number of exponent bits if the sort is a FloatingPoint and None otherwise.

source

pub fn float_significand_size(&self) -> Option<u32>

Returns Some(s) where s is the number of significand bits if the sort is a FloatingPoint and None otherwise.

source

pub fn is_array(&self) -> bool

Return if this Sort is for an Array or a Set.

Examples
let bool_sort = Sort::bool(&ctx);
let int_sort = Sort::int(&ctx);
let array_sort = Sort::array(&ctx, &int_sort, &bool_sort);
let set_sort = Sort::set(&ctx, &int_sort);
assert!(array_sort.is_array());
assert!(set_sort.is_array());
assert!(!int_sort.is_array());
assert!(!bool_sort.is_array());
source

pub fn array_domain(&self) -> Option<Sort<'_>>

Return the Sort of the domain for Arrays of this Sort.

If this Sort is an Array or Set, it has a domain sort, so return it. If this is not an Array or Set Sort, return None.

Examples
let bool_sort = Sort::bool(&ctx);
let int_sort = Sort::int(&ctx);
let array_sort = Sort::array(&ctx, &int_sort, &bool_sort);
let set_sort = Sort::set(&ctx, &int_sort);
assert_eq!(array_sort.array_domain().unwrap(), int_sort);
assert_eq!(set_sort.array_domain().unwrap(), int_sort);
assert!(int_sort.array_domain().is_none());
assert!(bool_sort.array_domain().is_none());
source

pub fn array_range(&self) -> Option<Sort<'_>>

Return the Sort of the range for Arrays of this Sort.

If this Sort is an Array it has a range sort, so return it. If this Sort is a Set, it has an implied range sort of Bool. If this is not an Array or Set Sort, return None.

Examples
let bool_sort = Sort::bool(&ctx);
let int_sort = Sort::int(&ctx);
let array_sort = Sort::array(&ctx, &int_sort, &bool_sort);
let set_sort = Sort::set(&ctx, &int_sort);
assert_eq!(array_sort.array_range().unwrap(), bool_sort);
assert_eq!(set_sort.array_range().unwrap(), bool_sort);
assert!(int_sort.array_range().is_none());
assert!(bool_sort.array_range().is_none());

Trait Implementations§

source§

impl<'ctx> Clone for Sort<'ctx>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'ctx> Debug for Sort<'ctx>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'ctx> Display for Sort<'ctx>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'ctx> Drop for Sort<'ctx>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'ctx> PartialEq<Sort<'ctx>> for Sort<'ctx>

source§

fn eq(&self, other: &Sort<'ctx>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'ctx> Eq for Sort<'ctx>

Auto Trait Implementations§

§

impl<'ctx> RefUnwindSafe for Sort<'ctx>

§

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

§

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

§

impl<'ctx> Unpin for Sort<'ctx>

§

impl<'ctx> UnwindSafe for Sort<'ctx>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.