Z3
Loading...
Searching...
No Matches
expr Class Reference

A Z3 expression is used to represent formulas and terms. For Z3, a formula is any expression of sort Boolean. Every expression has a sort. More...

#include <z3++.h>

Inheritance diagram for expr:

Data Structures

class  iterator

Public Member Functions

 expr (context &c)
 expr (context &c, Z3_ast n)
sort get_sort () const
 Return the sort of this expression.
bool is_bool () const
 Return true if this is a Boolean expression.
bool is_int () const
 Return true if this is an integer expression.
bool is_real () const
 Return true if this is a real expression.
bool is_arith () const
 Return true if this is an integer or real expression.
bool is_bv () const
 Return true if this is a Bit-vector expression.
bool is_array () const
 Return true if this is a Array expression.
bool is_datatype () const
 Return true if this is a Datatype expression.
bool is_relation () const
 Return true if this is a Relation expression.
bool is_seq () const
 Return true if this is a sequence expression.
bool is_re () const
 Return true if this is a regular expression.
bool is_finite_domain () const
 Return true if this is a Finite-domain expression.
bool is_fpa () const
 Return true if this is a FloatingPoint expression. .
bool is_numeral () const
 Return true if this expression is a numeral. Specialized functions also return representations for the numerals as small integers, 64 bit integers or rational or decimal strings.
bool is_numeral_i64 (int64_t &i) const
bool is_numeral_u64 (uint64_t &i) const
bool is_numeral_i (int &i) const
bool is_numeral_u (unsigned &i) const
bool is_numeral (std::string &s) const
bool is_numeral (std::string &s, unsigned precision) const
bool is_numeral (double &d) const
bool as_binary (std::string &s) const
double as_double () const
uint64_t as_uint64 () const
int64_t as_int64 () const
bool is_app () const
 Return true if this expression is an application.
bool is_const () const
 Return true if this expression is a constant (i.e., an application with 0 arguments).
bool is_quantifier () const
 Return true if this expression is a quantifier.
bool is_forall () const
 Return true if this expression is a universal quantifier.
bool is_exists () const
 Return true if this expression is an existential quantifier.
bool is_lambda () const
 Return true if this expression is a lambda expression.
bool is_var () const
 Return true if this expression is a variable.
bool is_algebraic () const
 Return true if expression is an algebraic number.
bool is_well_sorted () const
 Return true if this expression is well sorted (aka type correct).
expr mk_is_inf () const
 Return Boolean expression to test for whether an FP expression is inf.
expr mk_is_nan () const
 Return Boolean expression to test for whether an FP expression is a NaN.
expr mk_is_normal () const
 Return Boolean expression to test for whether an FP expression is a normal.
expr mk_is_subnormal () const
 Return Boolean expression to test for whether an FP expression is a subnormal.
expr mk_is_zero () const
 Return Boolean expression to test for whether an FP expression is a zero.
expr mk_to_ieee_bv () const
 Convert this fpa into an IEEE BV.
expr mk_from_ieee_bv (sort const &s) const
 Convert this IEEE BV into a fpa.
std::string get_decimal_string (int precision) const
 Return string representation of numeral or algebraic number This method assumes the expression is numeral or algebraic.
expr algebraic_lower (unsigned precision) const
expr algebraic_upper (unsigned precision) const
expr_vector algebraic_poly () const
 Return coefficients for p of an algebraic number (root-obj p i).
unsigned algebraic_i () const
 Return i of an algebraic number (root-obj p i).
unsigned id () const
 retrieve unique identifier for expression.
int get_numeral_int () const
 Return int value of numeral, throw if result cannot fit in machine int.
unsigned get_numeral_uint () const
 Return uint value of numeral, throw if result cannot fit in machine uint.
int64_t get_numeral_int64 () const
 Return int64_t value of numeral, throw if result cannot fit in int64_t.
uint64_t get_numeral_uint64 () const
 Return uint64_t value of numeral, throw if result cannot fit in uint64_t.
Z3_lbool bool_value () const
expr numerator () const
expr denominator () const
bool is_string_value () const
 Return true if this expression is a string literal. The string can be accessed using get_string() and get_escaped_string().
std::string get_string () const
 for a string value expression return an escaped string value.
std::u32string get_u32string () const
 for a string value expression return an unespaced string value.
 operator Z3_app () const
func_decl decl () const
 Return the declaration associated with this application. This method assumes the expression is an application.
unsigned num_args () const
 Return the number of arguments in this application. This method assumes the expression is an application.
expr arg (unsigned i) const
 Return the i-th argument of this application. This method assumes the expression is an application.
expr_vector args () const
 Return a vector of all the arguments of this application. This method assumes the expression is an application.
expr update (expr_vector const &args) const
 Update the arguments of this application. Return a new expression with the same function declaration and updated arguments. The number of new arguments must match the current number of arguments.
expr update_field (func_decl const &field_access, expr const &new_value) const
 Update a datatype field. Return a new datatype expression with the specified field updated to the new value. The remaining fields are unchanged.
expr body () const
 Return the 'body' of this quantifier.
bool is_true () const
bool is_false () const
bool is_not () const
bool is_and () const
bool is_or () const
bool is_xor () const
bool is_implies () const
bool is_eq () const
bool is_ite () const
bool is_distinct () const
expr rotate_left (unsigned i) const
expr rotate_right (unsigned i) const
expr ext_rotate_left (expr const &n) const
expr ext_rotate_right (expr const &n) const
expr repeat (unsigned i) const
expr extract (unsigned hi, unsigned lo) const
expr bit2bool (unsigned i) const
unsigned lo () const
unsigned hi () const
expr extract (expr const &offset, expr const &length) const
 sequence and regular expression operations.
expr replace (expr const &src, expr const &dst) const
expr unit () const
expr contains (expr const &s) const
expr at (expr const &index) const
expr nth (expr const &index) const
expr length () const
expr stoi () const
expr itos () const
expr ubvtos () const
expr sbvtos () const
expr char_to_int () const
expr char_to_bv () const
expr char_from_bv () const
expr is_digit () const
expr loop (unsigned lo)
 create a looping regular expression.
expr loop (unsigned lo, unsigned hi)
expr operator[] (expr const &index) const
expr operator[] (expr_vector const &index) const
expr simplify () const
 Return a simplified version of this expression.
expr simplify (params const &p) const
 Return a simplified version of this expression. The parameter p is a set of parameters for the Z3 simplifier.
expr substitute (expr_vector const &src, expr_vector const &dst)
 Apply substitution. Replace src expressions by dst.
expr substitute (expr_vector const &dst)
 Apply substitution. Replace bound variables by expressions.
expr substitute (func_decl_vector const &funs, expr_vector const &bodies)
 Apply function substitution by macro definitions.
iterator begin ()
iterator end ()
Public Member Functions inherited from ast
 ast (context &c)
 ast (context &c, Z3_ast n)
 ast (ast const &s)
 ~ast () override
 operator Z3_ast () const
 operator bool () const
astoperator= (ast const &s)
Z3_ast_kind kind () const
unsigned hash () const
std::string to_string () const
Public Member Functions inherited from object
 object (context &c)
virtual ~object ()=default
contextctx () const
Z3_error_code check_error () const

Friends

expr operator! (expr const &a)
 Return an expression representing not(a).
expr operator&& (expr const &a, expr const &b)
 Return an expression representing a and b.
expr operator&& (expr const &a, bool b)
 Return an expression representing a and b. The C++ Boolean value b is automatically converted into a Z3 Boolean constant.
expr operator&& (bool a, expr const &b)
 Return an expression representing a and b. The C++ Boolean value a is automatically converted into a Z3 Boolean constant.
expr operator|| (expr const &a, expr const &b)
 Return an expression representing a or b.
expr operator|| (expr const &a, bool b)
 Return an expression representing a or b. The C++ Boolean value b is automatically converted into a Z3 Boolean constant.
expr operator|| (bool a, expr const &b)
 Return an expression representing a or b. The C++ Boolean value a is automatically converted into a Z3 Boolean constant.
expr implies (expr const &a, expr const &b)
expr implies (expr const &a, bool b)
expr implies (bool a, expr const &b)
expr mk_or (expr_vector const &args)
expr mk_xor (expr_vector const &args)
expr mk_and (expr_vector const &args)
expr ite (expr const &c, expr const &t, expr const &e)
 Create the if-then-else expression ite(c, t, e).
expr distinct (expr_vector const &args)
expr concat (expr const &a, expr const &b)
expr concat (expr_vector const &args)
expr operator== (expr const &a, expr const &b)
expr operator== (expr const &a, int b)
expr operator== (int a, expr const &b)
expr operator!= (expr const &a, expr const &b)
expr operator!= (expr const &a, int b)
expr operator!= (int a, expr const &b)
expr operator+ (expr const &a, expr const &b)
expr operator+ (expr const &a, int b)
expr operator+ (int a, expr const &b)
expr sum (expr_vector const &args)
expr operator* (expr const &a, expr const &b)
expr operator* (expr const &a, int b)
expr operator* (int a, expr const &b)
expr pw (expr const &a, expr const &b)
expr pw (expr const &a, int b)
expr pw (int a, expr const &b)
expr mod (expr const &a, expr const &b)
expr mod (expr const &a, int b)
expr mod (int a, expr const &b)
expr rem (expr const &a, expr const &b)
expr rem (expr const &a, int b)
expr rem (int a, expr const &b)
expr is_int (expr const &e)
expr operator/ (expr const &a, expr const &b)
expr operator/ (expr const &a, int b)
expr operator/ (int a, expr const &b)
expr operator- (expr const &a)
expr operator- (expr const &a, expr const &b)
expr operator- (expr const &a, int b)
expr operator- (int a, expr const &b)
expr operator<= (expr const &a, expr const &b)
expr operator<= (expr const &a, int b)
expr operator<= (int a, expr const &b)
expr operator>= (expr const &a, expr const &b)
expr operator>= (expr const &a, int b)
expr operator>= (int a, expr const &b)
expr operator< (expr const &a, expr const &b)
expr operator< (expr const &a, int b)
expr operator< (int a, expr const &b)
expr operator> (expr const &a, expr const &b)
expr operator> (expr const &a, int b)
expr operator> (int a, expr const &b)
expr pble (expr_vector const &es, int const *coeffs, int bound)
expr pbge (expr_vector const &es, int const *coeffs, int bound)
expr pbeq (expr_vector const &es, int const *coeffs, int bound)
expr atmost (expr_vector const &es, unsigned bound)
expr atleast (expr_vector const &es, unsigned bound)
expr operator& (expr const &a, expr const &b)
expr operator& (expr const &a, int b)
expr operator& (int a, expr const &b)
expr operator^ (expr const &a, expr const &b)
expr operator^ (expr const &a, int b)
expr operator^ (int a, expr const &b)
expr operator| (expr const &a, expr const &b)
expr operator| (expr const &a, int b)
expr operator| (int a, expr const &b)
expr nand (expr const &a, expr const &b)
expr nor (expr const &a, expr const &b)
expr xnor (expr const &a, expr const &b)
expr min (expr const &a, expr const &b)
expr max (expr const &a, expr const &b)
expr bv2int (expr const &a, bool is_signed)
 bit-vector and integer conversions.
expr int2bv (unsigned n, expr const &a)
expr bvadd_no_overflow (expr const &a, expr const &b, bool is_signed)
 bit-vector overflow/underflow checks
expr bvadd_no_underflow (expr const &a, expr const &b)
expr bvsub_no_overflow (expr const &a, expr const &b)
expr bvsub_no_underflow (expr const &a, expr const &b, bool is_signed)
expr bvsdiv_no_overflow (expr const &a, expr const &b)
expr bvneg_no_overflow (expr const &a)
expr bvmul_no_overflow (expr const &a, expr const &b, bool is_signed)
expr bvmul_no_underflow (expr const &a, expr const &b)
expr bvredor (expr const &a)
expr bvredand (expr const &a)
expr abs (expr const &a)
expr sqrt (expr const &a, expr const &rm)
expr fp_eq (expr const &a, expr const &b)
expr operator~ (expr const &a)
expr fma (expr const &a, expr const &b, expr const &c, expr const &rm)
 FloatingPoint fused multiply-add.
expr fpa_fp (expr const &sgn, expr const &exp, expr const &sig)
 Create an expression of FloatingPoint sort from three bit-vector expressions.
expr fpa_to_sbv (expr const &t, unsigned sz)
 Conversion of a floating-point term into a signed bit-vector.
expr fpa_to_ubv (expr const &t, unsigned sz)
 Conversion of a floating-point term into an unsigned bit-vector.
expr sbv_to_fpa (expr const &t, sort s)
 Conversion of a signed bit-vector term into a floating-point.
expr ubv_to_fpa (expr const &t, sort s)
 Conversion of an unsigned bit-vector term into a floating-point.
expr fpa_to_fpa (expr const &t, sort s)
 Conversion of a floating-point term into another floating-point.
expr round_fpa_to_closest_integer (expr const &t)
 Round a floating-point term into its closest integer.
expr range (expr const &lo, expr const &hi)

Additional Inherited Members

Protected Attributes inherited from ast
Z3_ast m_ast
Protected Attributes inherited from object
contextm_ctx

Detailed Description

A Z3 expression is used to represent formulas and terms. For Z3, a formula is any expression of sort Boolean. Every expression has a sort.

Definition at line 993 of file z3++.h.

Constructor & Destructor Documentation

◆ expr() [1/2]

expr ( context & c)
inline

Definition at line 995 of file z3++.h.

995:ast(c) {}

Referenced by abs, algebraic_lower(), algebraic_upper(), arg(), at(), atleast, atmost, bit2bool(), body(), bv2int, bvadd_no_overflow, bvadd_no_underflow, bvmul_no_overflow, bvmul_no_underflow, bvneg_no_overflow, bvredand, bvredor, bvsdiv_no_overflow, bvsub_no_overflow, bvsub_no_underflow, char_from_bv(), char_to_bv(), char_to_int(), concat, concat, contains(), denominator(), distinct, ext_rotate_left(), ext_rotate_right(), extract(), extract(), fma, fp_eq, fpa_fp, fpa_to_fpa, fpa_to_sbv, fpa_to_ubv, implies, implies, implies, int2bv, is_digit(), is_int, ite, expr::iterator::iterator(), itos(), length(), loop(), loop(), max, min, mk_and, mk_from_ieee_bv(), mk_is_inf(), mk_is_nan(), mk_is_normal(), mk_is_subnormal(), mk_is_zero(), mk_or, mk_to_ieee_bv(), mk_xor, mod, mod, mod, nand, nor, nth(), numerator(), operator!, operator!=, operator!=, operator!=, operator&, operator&, operator&, operator&&, operator&&, operator&&, expr::iterator::operator*(), operator*, operator*, operator*, operator+, operator+, operator+, operator-, operator-, operator-, operator-, operator/, operator/, operator/, operator<, operator<, operator<, operator<=, operator<=, operator<=, operator==, operator==, operator==, operator>, operator>, operator>, operator>=, operator>=, operator>=, operator[](), operator[](), operator^, operator^, operator^, operator|, operator|, operator|, operator||, operator||, operator||, operator~, pbeq, pbge, pble, pw, pw, pw, range, rem, rem, rem, repeat(), replace(), rotate_left(), rotate_right(), round_fpa_to_closest_integer, sbv_to_fpa, sbvtos(), simplify(), simplify(), sqrt, stoi(), substitute(), substitute(), substitute(), sum, ubv_to_fpa, ubvtos(), unit(), update(), update_field(), and xnor.

◆ expr() [2/2]

expr ( context & c,
Z3_ast n )
inline

Definition at line 996 of file z3++.h.

996:ast(c, reinterpret_cast<Z3_ast>(n)) {}

Member Function Documentation

◆ algebraic_i()

unsigned algebraic_i ( ) const
inline

Return i of an algebraic number (root-obj p i).

Definition at line 1229 of file z3++.h.

1229 {
1230 assert(is_algebraic());
1231 unsigned i = Z3_algebraic_get_i(ctx(), m_ast);
1232 check_error();
1233 return i;
1234 }
unsigned Z3_API Z3_algebraic_get_i(Z3_context c, Z3_ast a)
Return which root of the polynomial the algebraic number represents.

◆ algebraic_lower()

expr algebraic_lower ( unsigned precision) const
inline

Retrieve lower and upper bounds for algebraic numerals based on a decimal precision

Definition at line 1202 of file z3++.h.

1202 {
1203 assert(is_algebraic());
1204 Z3_ast r = Z3_get_algebraic_number_lower(ctx(), m_ast, precision);
1205 check_error();
1206 return expr(ctx(), r);
1207 }
Z3_ast Z3_API Z3_get_algebraic_number_lower(Z3_context c, Z3_ast a, unsigned precision)
Return a lower bound for the given real algebraic number. The interval isolating the number is smalle...

◆ algebraic_poly()

expr_vector algebraic_poly ( ) const
inline

Return coefficients for p of an algebraic number (root-obj p i).

Definition at line 1219 of file z3++.h.

1219 {
1220 assert(is_algebraic());
1221 Z3_ast_vector r = Z3_algebraic_get_poly(ctx(), m_ast);
1222 check_error();
1223 return expr_vector(ctx(), r);
1224 }
Z3_ast_vector Z3_API Z3_algebraic_get_poly(Z3_context c, Z3_ast a)
Return the coefficients of the defining polynomial.
ast_vector_tpl< expr > expr_vector
Definition z3++.h:77

◆ algebraic_upper()

expr algebraic_upper ( unsigned precision) const
inline

Definition at line 1209 of file z3++.h.

1209 {
1210 assert(is_algebraic());
1211 Z3_ast r = Z3_get_algebraic_number_upper(ctx(), m_ast, precision);
1212 check_error();
1213 return expr(ctx(), r);
1214 }
Z3_ast Z3_API Z3_get_algebraic_number_upper(Z3_context c, Z3_ast a, unsigned precision)
Return a upper bound for the given real algebraic number. The interval isolating the number is smalle...

◆ arg()

expr arg ( unsigned i) const
inline

Return the i-th argument of this application. This method assumes the expression is an application.

Precondition
is_app()
i < num_args()

Definition at line 1390 of file z3++.h.

1390{ Z3_ast r = Z3_get_app_arg(ctx(), *this, i); check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_get_app_arg(Z3_context c, Z3_app a, unsigned i)
Return the i-th argument of the given application.

Referenced by AstRef::__bool__(), args(), and expr::iterator::operator*().

◆ args()

expr_vector args ( ) const
inline

Return a vector of all the arguments of this application. This method assumes the expression is an application.

Precondition
is_app()

Definition at line 1397 of file z3++.h.

1397 {
1398 expr_vector vec(ctx());
1399 unsigned argCnt = num_args();
1400 for (unsigned i = 0; i < argCnt; ++i)
1401 vec.push_back(arg(i));
1402 return vec;
1403 }

Referenced by concat, distinct, mk_and, mk_or, mk_xor, operator!=, operator&&, operator*, operator+, operator-, operator||, sum, and update().

◆ as_binary()

bool as_binary ( std::string & s) const
inline

Definition at line 1071 of file z3++.h.

1071{ if (!is_numeral()) return false; s = Z3_get_numeral_binary_string(ctx(), m_ast); check_error(); return true; }
Z3_string Z3_API Z3_get_numeral_binary_string(Z3_context c, Z3_ast a)
Return numeral value, as a binary string of a numeric constant term.

◆ as_double()

double as_double ( ) const
inline

Definition at line 1073 of file z3++.h.

1073{ double d = 0; is_numeral(d); return d; }

◆ as_int64()

int64_t as_int64 ( ) const
inline

Definition at line 1075 of file z3++.h.

1075{ int64_t r = 0; is_numeral_i64(r); return r; }

◆ as_uint64()

uint64_t as_uint64 ( ) const
inline

Definition at line 1074 of file z3++.h.

1074{ uint64_t r = 0; is_numeral_u64(r); return r; }

◆ at()

expr at ( expr const & index) const
inline

Definition at line 1693 of file z3++.h.

1693 {
1694 check_context(*this, index);
1695 Z3_ast r = Z3_mk_seq_at(ctx(), *this, index);
1696 check_error();
1697 return expr(ctx(), r);
1698 }
Z3_ast Z3_API Z3_mk_seq_at(Z3_context c, Z3_ast s, Z3_ast index)
Retrieve from s the unit sequence positioned at position index. The sequence is empty if the index is...
void check_context(object const &a, object const &b)
Definition z3++.h:564

◆ begin()

iterator begin ( )
inline

Definition at line 1822 of file z3++.h.

1822{ return iterator(*this, 0); }

◆ bit2bool()

expr bit2bool ( unsigned i) const
inline

Definition at line 1623 of file z3++.h.

1623{ Z3_ast r = Z3_mk_bit2bool(ctx(), i, *this); ctx().check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_mk_bit2bool(Z3_context c, unsigned i, Z3_ast t1)
Extracts the bit at position i of a bit-vector and yields a boolean.

◆ body()

expr body ( ) const
inline

Return the 'body' of this quantifier.

Precondition
is_quantifier()

Definition at line 1431 of file z3++.h.

1431{ assert(is_quantifier()); Z3_ast r = Z3_get_quantifier_body(ctx(), *this); check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_get_quantifier_body(Z3_context c, Z3_ast a)
Return body of quantifier.
is_quantifier(a)
Definition z3py.py:2322

◆ bool_value()

Z3_lbool bool_value ( ) const
inline

Definition at line 1315 of file z3++.h.

1315 {
1316 return Z3_get_bool_value(ctx(), m_ast);
1317 }
Z3_lbool Z3_API Z3_get_bool_value(Z3_context c, Z3_ast a)
Return Z3_L_TRUE if a is true, Z3_L_FALSE if it is false, and Z3_L_UNDEF otherwise.

◆ char_from_bv()

expr char_from_bv ( ) const
inline

Definition at line 1740 of file z3++.h.

1740 {
1741 Z3_ast r = Z3_mk_char_from_bv(ctx(), *this);
1742 check_error();
1743 return expr(ctx(), r);
1744 }
Z3_ast Z3_API Z3_mk_char_from_bv(Z3_context c, Z3_ast bv)
Create a character from a bit-vector (code point).

◆ char_to_bv()

expr char_to_bv ( ) const
inline

Definition at line 1735 of file z3++.h.

1735 {
1736 Z3_ast r = Z3_mk_char_to_bv(ctx(), *this);
1737 check_error();
1738 return expr(ctx(), r);
1739 }
Z3_ast Z3_API Z3_mk_char_to_bv(Z3_context c, Z3_ast ch)
Create a bit-vector (code point) from character.

◆ char_to_int()

expr char_to_int ( ) const
inline

Definition at line 1730 of file z3++.h.

1730 {
1731 Z3_ast r = Z3_mk_char_to_int(ctx(), *this);
1732 check_error();
1733 return expr(ctx(), r);
1734 }
Z3_ast Z3_API Z3_mk_char_to_int(Z3_context c, Z3_ast ch)
Create an integer (code point) from character.

◆ contains()

expr contains ( expr const & s) const
inline

Definition at line 1687 of file z3++.h.

1687 {
1688 check_context(*this, s);
1689 Z3_ast r = Z3_mk_seq_contains(ctx(), *this, s);
1690 check_error();
1691 return expr(ctx(), r);
1692 }
Z3_ast Z3_API Z3_mk_seq_contains(Z3_context c, Z3_ast container, Z3_ast containee)
Check if container contains containee.

◆ decl()

func_decl decl ( ) const
inline

Return the declaration associated with this application. This method assumes the expression is an application.

Precondition
is_app()

Definition at line 1375 of file z3++.h.

1375{ Z3_func_decl f = Z3_get_app_decl(ctx(), *this); check_error(); return func_decl(ctx(), f); }
Z3_func_decl Z3_API Z3_get_app_decl(Z3_context c, Z3_app a)
Return the declaration of a constant or function application.

Referenced by hi(), is_and(), is_distinct(), is_eq(), is_false(), is_implies(), is_ite(), is_not(), is_or(), is_true(), is_xor(), and lo().

◆ denominator()

expr denominator ( ) const
inline

Definition at line 1327 of file z3++.h.

1327 {
1328 assert(is_numeral());
1329 Z3_ast r = Z3_get_denominator(ctx(), m_ast);
1330 check_error();
1331 return expr(ctx(),r);
1332 }
Z3_ast Z3_API Z3_get_denominator(Z3_context c, Z3_ast a)
Return the denominator (as a numeral AST) of a numeral AST of sort Real.

◆ end()

iterator end ( )
inline

Definition at line 1823 of file z3++.h.

1823{ return iterator(*this, is_app() ? num_args() : 0); }
is_app(a)
Definition z3py.py:1374

◆ ext_rotate_left()

expr ext_rotate_left ( expr const & n) const
inline

Definition at line 1610 of file z3++.h.

1610{ Z3_ast r = Z3_mk_ext_rotate_left(ctx(), *this, n); ctx().check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_mk_ext_rotate_left(Z3_context c, Z3_ast t1, Z3_ast t2)
Rotate bits of t1 to the left t2 times.

◆ ext_rotate_right()

expr ext_rotate_right ( expr const & n) const
inline

Definition at line 1611 of file z3++.h.

1611{ Z3_ast r = Z3_mk_ext_rotate_right(ctx(), *this, n); ctx().check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_mk_ext_rotate_right(Z3_context c, Z3_ast t1, Z3_ast t2)
Rotate bits of t1 to the right t2 times.

◆ extract() [1/2]

expr extract ( expr const & offset,
expr const & length ) const
inline

sequence and regular expression operations.

  • is overloaded as sequence concatenation and regular expression union. concat is overloaded to handle sequences and regular expressions

Definition at line 1672 of file z3++.h.

1672 {
1673 check_context(*this, offset); check_context(offset, length);
1674 Z3_ast r = Z3_mk_seq_extract(ctx(), *this, offset, length); check_error(); return expr(ctx(), r);
1675 }
Z3_ast Z3_API Z3_mk_seq_extract(Z3_context c, Z3_ast s, Z3_ast offset, Z3_ast length)
Extract subsequence starting at offset of length.

◆ extract() [2/2]

expr extract ( unsigned hi,
unsigned lo ) const
inline

Definition at line 1622 of file z3++.h.

1622{ Z3_ast r = Z3_mk_extract(ctx(), hi, lo, *this); ctx().check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_mk_extract(Z3_context c, unsigned high, unsigned low, Z3_ast t1)
Extract the bits high down to low from a bit-vector of size m to yield a new bit-vector of size n,...

◆ get_decimal_string()

std::string get_decimal_string ( int precision) const
inline

Return string representation of numeral or algebraic number This method assumes the expression is numeral or algebraic.

Precondition
is_numeral() || is_algebraic()

Definition at line 1194 of file z3++.h.

1194 {
1195 assert(is_numeral() || is_algebraic());
1196 return std::string(Z3_get_numeral_decimal_string(ctx(), m_ast, precision));
1197 }
Z3_string Z3_API Z3_get_numeral_decimal_string(Z3_context c, Z3_ast a, unsigned precision)
Return numeral as a string in decimal notation. The result has at most precision decimal places.

◆ get_numeral_int()

int get_numeral_int ( ) const
inline

Return int value of numeral, throw if result cannot fit in machine int.

It only makes sense to use this function if the caller can ensure that the result is an integer or if exceptions are enabled. If exceptions are disabled, then use the is_numeral_i function.

Precondition
is_numeral()

Definition at line 1251 of file z3++.h.

1251 {
1252 int result = 0;
1253 if (!is_numeral_i(result)) {
1254 assert(ctx().enable_exceptions());
1255 if (!ctx().enable_exceptions()) return 0;
1256 Z3_THROW(exception("numeral does not fit in machine int"));
1257 }
1258 return result;
1259 }
#define Z3_THROW(x)
Definition z3++.h:134

◆ get_numeral_int64()

int64_t get_numeral_int64 ( ) const
inline

Return int64_t value of numeral, throw if result cannot fit in int64_t.

Precondition
is_numeral()

Definition at line 1287 of file z3++.h.

1287 {
1288 assert(is_numeral());
1289 int64_t result = 0;
1290 if (!is_numeral_i64(result)) {
1291 assert(ctx().enable_exceptions());
1292 if (!ctx().enable_exceptions()) return 0;
1293 Z3_THROW(exception("numeral does not fit in machine int64_t"));
1294 }
1295 return result;
1296 }

◆ get_numeral_uint()

unsigned get_numeral_uint ( ) const
inline

Return uint value of numeral, throw if result cannot fit in machine uint.

It only makes sense to use this function if the caller can ensure that the result is an integer or if exceptions are enabled. If exceptions are disabled, then use the is_numeral_u function.

Precondition
is_numeral()

Definition at line 1270 of file z3++.h.

1270 {
1271 assert(is_numeral());
1272 unsigned result = 0;
1273 if (!is_numeral_u(result)) {
1274 assert(ctx().enable_exceptions());
1275 if (!ctx().enable_exceptions()) return 0;
1276 Z3_THROW(exception("numeral does not fit in machine uint"));
1277 }
1278 return result;
1279 }

◆ get_numeral_uint64()

uint64_t get_numeral_uint64 ( ) const
inline

Return uint64_t value of numeral, throw if result cannot fit in uint64_t.

Precondition
is_numeral()

Definition at line 1304 of file z3++.h.

1304 {
1305 assert(is_numeral());
1306 uint64_t result = 0;
1307 if (!is_numeral_u64(result)) {
1308 assert(ctx().enable_exceptions());
1309 if (!ctx().enable_exceptions()) return 0;
1310 Z3_THROW(exception("numeral does not fit in machine uint64_t"));
1311 }
1312 return result;
1313 }

◆ get_sort()

◆ get_string()

std::string get_string ( ) const
inline

for a string value expression return an escaped string value.

Precondition
expression is for a string value.

Definition at line 1346 of file z3++.h.

1346 {
1347 assert(is_string_value());
1348 char const* s = Z3_get_string(ctx(), m_ast);
1349 check_error();
1350 return std::string(s);
1351 }
Z3_string Z3_API Z3_get_string(Z3_context c, Z3_ast s)
Retrieve the string constant stored in s. Characters outside the basic printable ASCII range are esca...
bool is_string_value(Any a)
Definition z3py.py:11742

◆ get_u32string()

std::u32string get_u32string ( ) const
inline

for a string value expression return an unespaced string value.

Precondition
expression is for a string value.

Definition at line 1358 of file z3++.h.

1358 {
1359 assert(is_string_value());
1360 unsigned n = Z3_get_string_length(ctx(), m_ast);
1361 std::u32string s;
1362 s.resize(n);
1363 Z3_get_string_contents(ctx(), m_ast, n, (unsigned*)s.data());
1364 return s;
1365 }
void Z3_API Z3_get_string_contents(Z3_context c, Z3_ast s, unsigned length, unsigned contents[])
Retrieve the unescaped string constant stored in s.
unsigned Z3_API Z3_get_string_length(Z3_context c, Z3_ast s)
Retrieve the length of the unescaped string constant stored in s.

◆ hi()

unsigned hi ( ) const
inline

Definition at line 1625 of file z3++.h.

1625{ assert (is_app() && Z3_get_decl_num_parameters(ctx(), decl()) == 2); return static_cast<unsigned>(Z3_get_decl_int_parameter(ctx(), decl(), 0)); }
unsigned Z3_API Z3_get_decl_num_parameters(Z3_context c, Z3_func_decl d)
Return the number of parameters associated with a declaration.
int Z3_API Z3_get_decl_int_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the integer value associated with an integer parameter.

Referenced by extract(), loop(), and range.

◆ id()

unsigned id ( ) const
inline

retrieve unique identifier for expression.

Definition at line 1239 of file z3++.h.

1239{ unsigned r = Z3_get_ast_id(ctx(), m_ast); check_error(); return r; }
unsigned Z3_API Z3_get_ast_id(Z3_context c, Z3_ast t)
Return a unique identifier for t. The identifier is unique up to structural equality....

◆ is_algebraic()

bool is_algebraic ( ) const
inline

Return true if expression is an algebraic number.

Definition at line 1111 of file z3++.h.

1111{ return Z3_is_algebraic_number(ctx(), m_ast); }
bool Z3_API Z3_is_algebraic_number(Z3_context c, Z3_ast a)
Return true if the given AST is a real algebraic number.

Referenced by algebraic_i(), algebraic_lower(), algebraic_poly(), algebraic_upper(), and get_decimal_string().

◆ is_and()

bool is_and ( ) const
inline

Definition at line 1500 of file z3++.h.

1500{ return is_app() && Z3_OP_AND == decl().decl_kind(); }
@ Z3_OP_AND
Definition z3_api.h:995

◆ is_app()

bool is_app ( ) const
inline

Return true if this expression is an application.

Definition at line 1081 of file z3++.h.

1081{ return kind() == Z3_APP_AST || kind() == Z3_NUMERAL_AST; }
@ Z3_APP_AST
Definition z3_api.h:144
@ Z3_NUMERAL_AST
Definition z3_api.h:143

Referenced by end(), hi(), is_and(), is_const(), is_distinct(), is_eq(), is_false(), is_implies(), is_ite(), is_not(), is_or(), is_true(), is_xor(), lo(), and operator Z3_app().

◆ is_arith()

bool is_arith ( ) const
inline

Return true if this is an integer or real expression.

Definition at line 1018 of file z3++.h.

1018{ return get_sort().is_arith(); }

Referenced by max, min, operator!=, operator!=, operator*, operator+, operator-, operator-, operator/, operator<, operator<=, operator==, operator==, operator>, and operator>=.

◆ is_array()

bool is_array ( ) const
inline

Return true if this is a Array expression.

Definition at line 1026 of file z3++.h.

1026{ return get_sort().is_array(); }

Referenced by operator[]().

◆ is_bool()

bool is_bool ( ) const
inline

Return true if this is a Boolean expression.

Definition at line 1006 of file z3++.h.

1006{ return get_sort().is_bool(); }

Referenced by optimize::add(), optimize::add(), optimize::add(), solver::add(), solver::add(), optimize::add_soft(), optimize::add_soft(), implies, ite, nand, nor, operator!, operator&, operator&&, operator^, operator|, operator||, and xnor.

◆ is_bv()

bool is_bv ( ) const
inline

Return true if this is a Bit-vector expression.

Definition at line 1022 of file z3++.h.

1022{ return get_sort().is_bv(); }

Referenced by bvredand, bvredor, fpa_fp, max, min, mk_from_ieee_bv(), mod, operator!=, operator!=, operator*, operator+, operator-, operator-, operator/, operator<, operator<=, operator==, operator==, operator>, operator>=, sbv_to_fpa, and ubv_to_fpa.

◆ is_const()

bool is_const ( ) const
inline

Return true if this expression is a constant (i.e., an application with 0 arguments).

Definition at line 1085 of file z3++.h.

1085{ return is_app() && num_args() == 0; }

Referenced by solver::add().

◆ is_datatype()

bool is_datatype ( ) const
inline

Return true if this is a Datatype expression.

Definition at line 1030 of file z3++.h.

1030{ return get_sort().is_datatype(); }

Referenced by update_field().

◆ is_digit()

expr is_digit ( ) const
inline

Definition at line 1745 of file z3++.h.

1745 {
1746 Z3_ast r = Z3_mk_char_is_digit(ctx(), *this);
1747 check_error();
1748 return expr(ctx(), r);
1749 }
Z3_ast Z3_API Z3_mk_char_is_digit(Z3_context c, Z3_ast ch)
Create a check if the character is a digit.

◆ is_distinct()

bool is_distinct ( ) const
inline

Definition at line 1506 of file z3++.h.

1506{ return is_app() && Z3_OP_DISTINCT == decl().decl_kind(); }
@ Z3_OP_DISTINCT
Definition z3_api.h:993

◆ is_eq()

bool is_eq ( ) const
inline

Definition at line 1504 of file z3++.h.

1504{ return is_app() && Z3_OP_EQ == decl().decl_kind(); }
@ Z3_OP_EQ
Definition z3_api.h:992

◆ is_exists()

bool is_exists ( ) const
inline

Return true if this expression is an existential quantifier.

Definition at line 1098 of file z3++.h.

1098{ return Z3_is_quantifier_exists(ctx(), m_ast); }
bool Z3_API Z3_is_quantifier_exists(Z3_context c, Z3_ast a)
Determine if ast is an existential quantifier.

◆ is_false()

bool is_false ( ) const
inline

Definition at line 1498 of file z3++.h.

1498{ return is_app() && Z3_OP_FALSE == decl().decl_kind(); }
@ Z3_OP_FALSE
Definition z3_api.h:991

◆ is_finite_domain()

bool is_finite_domain ( ) const
inline

Return true if this is a Finite-domain expression.

Remarks
Finite-domain is special kind of interpreted sort: is_bool(), is_bv() and is_finite_domain() are mutually exclusive.

Definition at line 1052 of file z3++.h.

1052{ return get_sort().is_finite_domain(); }

◆ is_forall()

bool is_forall ( ) const
inline

Return true if this expression is a universal quantifier.

Definition at line 1094 of file z3++.h.

1094{ return Z3_is_quantifier_forall(ctx(), m_ast); }
bool Z3_API Z3_is_quantifier_forall(Z3_context c, Z3_ast a)
Determine if an ast is a universal quantifier.

◆ is_fpa()

◆ is_implies()

bool is_implies ( ) const
inline

Definition at line 1503 of file z3++.h.

1503{ return is_app() && Z3_OP_IMPLIES == decl().decl_kind(); }
@ Z3_OP_IMPLIES
Definition z3_api.h:1000

◆ is_int()

bool is_int ( ) const
inline

Return true if this is an integer expression.

Definition at line 1010 of file z3++.h.

1010{ return get_sort().is_int(); }

Referenced by abs.

◆ is_ite()

bool is_ite ( ) const
inline

Definition at line 1505 of file z3++.h.

1505{ return is_app() && Z3_OP_ITE == decl().decl_kind(); }
@ Z3_OP_ITE
Definition z3_api.h:994

◆ is_lambda()

bool is_lambda ( ) const
inline

Return true if this expression is a lambda expression.

Definition at line 1102 of file z3++.h.

1102{ return Z3_is_lambda(ctx(), m_ast); }
bool Z3_API Z3_is_lambda(Z3_context c, Z3_ast a)
Determine if ast is a lambda expression.

◆ is_not()

bool is_not ( ) const
inline

Definition at line 1499 of file z3++.h.

1499{ return is_app() && Z3_OP_NOT == decl().decl_kind(); }
@ Z3_OP_NOT
Definition z3_api.h:999

◆ is_numeral() [1/4]

bool is_numeral ( ) const
inline

Return true if this expression is a numeral. Specialized functions also return representations for the numerals as small integers, 64 bit integers or rational or decimal strings.

Definition at line 1063 of file z3++.h.

1063{ return kind() == Z3_NUMERAL_AST; }

Referenced by as_binary(), as_double(), denominator(), get_decimal_string(), get_numeral_int64(), get_numeral_uint(), get_numeral_uint64(), and numerator().

◆ is_numeral() [2/4]

bool is_numeral ( double & d) const
inline

Definition at line 1070 of file z3++.h.

1070{ if (!is_numeral()) return false; d = Z3_get_numeral_double(ctx(), m_ast); check_error(); return true; }
double Z3_API Z3_get_numeral_double(Z3_context c, Z3_ast a)
Return numeral as a double.

Referenced by is_numeral().

◆ is_numeral() [3/4]

bool is_numeral ( std::string & s) const
inline

Definition at line 1068 of file z3++.h.

1068{ if (!is_numeral()) return false; s = Z3_get_numeral_string(ctx(), m_ast); check_error(); return true; }
Z3_string Z3_API Z3_get_numeral_string(Z3_context c, Z3_ast a)
Return numeral value, as a decimal string of a numeric constant term.

Referenced by is_numeral().

◆ is_numeral() [4/4]

bool is_numeral ( std::string & s,
unsigned precision ) const
inline

Definition at line 1069 of file z3++.h.

1069{ if (!is_numeral()) return false; s = Z3_get_numeral_decimal_string(ctx(), m_ast, precision); check_error(); return true; }

Referenced by is_numeral().

◆ is_numeral_i()

bool is_numeral_i ( int & i) const
inline

Definition at line 1066 of file z3++.h.

1066{ bool r = Z3_get_numeral_int(ctx(), m_ast, &i); check_error(); return r;}
bool Z3_API Z3_get_numeral_int(Z3_context c, Z3_ast v, int *i)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine int....

Referenced by get_numeral_int().

◆ is_numeral_i64()

bool is_numeral_i64 ( int64_t & i) const
inline

Definition at line 1064 of file z3++.h.

1064{ bool r = Z3_get_numeral_int64(ctx(), m_ast, &i); check_error(); return r;}
bool Z3_API Z3_get_numeral_int64(Z3_context c, Z3_ast v, int64_t *i)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine int64_t int....

Referenced by as_int64(), and get_numeral_int64().

◆ is_numeral_u()

bool is_numeral_u ( unsigned & i) const
inline

Definition at line 1067 of file z3++.h.

1067{ bool r = Z3_get_numeral_uint(ctx(), m_ast, &i); check_error(); return r;}
bool Z3_API Z3_get_numeral_uint(Z3_context c, Z3_ast v, unsigned *u)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine unsigned int....

Referenced by get_numeral_uint().

◆ is_numeral_u64()

bool is_numeral_u64 ( uint64_t & i) const
inline

Definition at line 1065 of file z3++.h.

1065{ bool r = Z3_get_numeral_uint64(ctx(), m_ast, &i); check_error(); return r;}
bool Z3_API Z3_get_numeral_uint64(Z3_context c, Z3_ast v, uint64_t *u)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine uint64_t int....

Referenced by as_uint64(), and get_numeral_uint64().

◆ is_or()

bool is_or ( ) const
inline

Definition at line 1501 of file z3++.h.

1501{ return is_app() && Z3_OP_OR == decl().decl_kind(); }
@ Z3_OP_OR
Definition z3_api.h:996

◆ is_quantifier()

bool is_quantifier ( ) const
inline

Return true if this expression is a quantifier.

Definition at line 1089 of file z3++.h.

1089{ return kind() == Z3_QUANTIFIER_AST; }
@ Z3_QUANTIFIER_AST
Definition z3_api.h:146

Referenced by body().

◆ is_re()

bool is_re ( ) const
inline

Return true if this is a regular expression.

Definition at line 1042 of file z3++.h.

1042{ return get_sort().is_re(); }

Referenced by operator+.

◆ is_real()

bool is_real ( ) const
inline

Return true if this is a real expression.

Definition at line 1014 of file z3++.h.

1014{ return get_sort().is_real(); }

Referenced by abs.

◆ is_relation()

bool is_relation ( ) const
inline

Return true if this is a Relation expression.

Definition at line 1034 of file z3++.h.

1034{ return get_sort().is_relation(); }

◆ is_seq()

bool is_seq ( ) const
inline

Return true if this is a sequence expression.

Definition at line 1038 of file z3++.h.

1038{ return get_sort().is_seq(); }

Referenced by operator+, and operator[]().

◆ is_string_value()

bool is_string_value ( ) const
inline

Return true if this expression is a string literal. The string can be accessed using get_string() and get_escaped_string().

Definition at line 1339 of file z3++.h.

1339{ return Z3_is_string(ctx(), m_ast); }
bool Z3_API Z3_is_string(Z3_context c, Z3_ast s)
Determine if s is a string constant.

Referenced by get_string(), and get_u32string().

◆ is_true()

bool is_true ( ) const
inline

Definition at line 1497 of file z3++.h.

1497{ return is_app() && Z3_OP_TRUE == decl().decl_kind(); }
@ Z3_OP_TRUE
Definition z3_api.h:990

◆ is_var()

bool is_var ( ) const
inline

Return true if this expression is a variable.

Definition at line 1107 of file z3++.h.

1107{ return kind() == Z3_VAR_AST; }
@ Z3_VAR_AST
Definition z3_api.h:145

◆ is_well_sorted()

bool is_well_sorted ( ) const
inline

Return true if this expression is well sorted (aka type correct).

Definition at line 1116 of file z3++.h.

1116{ bool r = Z3_is_well_sorted(ctx(), m_ast); check_error(); return r; }
bool Z3_API Z3_is_well_sorted(Z3_context c, Z3_ast t)
Return true if the given expression t is well sorted.

◆ is_xor()

bool is_xor ( ) const
inline

Definition at line 1502 of file z3++.h.

1502{ return is_app() && Z3_OP_XOR == decl().decl_kind(); }
@ Z3_OP_XOR
Definition z3_api.h:998

◆ itos()

expr itos ( ) const
inline

Definition at line 1715 of file z3++.h.

1715 {
1716 Z3_ast r = Z3_mk_int_to_str(ctx(), *this);
1717 check_error();
1718 return expr(ctx(), r);
1719 }
Z3_ast Z3_API Z3_mk_int_to_str(Z3_context c, Z3_ast s)
Integer to string conversion.

◆ length()

expr length ( ) const
inline

Definition at line 1705 of file z3++.h.

1705 {
1706 Z3_ast r = Z3_mk_seq_length(ctx(), *this);
1707 check_error();
1708 return expr(ctx(), r);
1709 }
Z3_ast Z3_API Z3_mk_seq_length(Z3_context c, Z3_ast s)
Return the length of the sequence s.

Referenced by extract().

◆ lo()

unsigned lo ( ) const
inline

Definition at line 1624 of file z3++.h.

1624{ assert (is_app() && Z3_get_decl_num_parameters(ctx(), decl()) == 2); return static_cast<unsigned>(Z3_get_decl_int_parameter(ctx(), decl(), 1)); }

Referenced by extract(), loop(), loop(), and range.

◆ loop() [1/2]

expr loop ( unsigned lo)
inline

create a looping regular expression.

Definition at line 1755 of file z3++.h.

1755 {
1756 Z3_ast r = Z3_mk_re_loop(ctx(), m_ast, lo, 0);
1757 check_error();
1758 return expr(ctx(), r);
1759 }
Z3_ast Z3_API Z3_mk_re_loop(Z3_context c, Z3_ast r, unsigned lo, unsigned hi)
Create a regular expression loop. The supplied regular expression r is repeated between lo and hi tim...

◆ loop() [2/2]

expr loop ( unsigned lo,
unsigned hi )
inline

Definition at line 1760 of file z3++.h.

1760 {
1761 Z3_ast r = Z3_mk_re_loop(ctx(), m_ast, lo, hi);
1762 check_error();
1763 return expr(ctx(), r);
1764 }

◆ mk_from_ieee_bv()

expr mk_from_ieee_bv ( sort const & s) const
inline

Convert this IEEE BV into a fpa.

Definition at line 1181 of file z3++.h.

1181 {
1182 assert(is_bv());
1183 Z3_ast r = Z3_mk_fpa_to_fp_bv(ctx(), m_ast, s);
1184 check_error();
1185 return expr(ctx(), r);
1186 }
Z3_ast Z3_API Z3_mk_fpa_to_fp_bv(Z3_context c, Z3_ast bv, Z3_sort s)
Conversion of a single IEEE 754-2008 bit-vector into a floating-point number.
is_bv(a)
Definition z3py.py:4117

◆ mk_is_inf()

expr mk_is_inf ( ) const
inline

Return Boolean expression to test for whether an FP expression is inf.

Definition at line 1121 of file z3++.h.

1121 {
1122 assert(is_fpa());
1123 Z3_ast r = Z3_mk_fpa_is_infinite(ctx(), m_ast);
1124 check_error();
1125 return expr(ctx(), r);
1126 }
Z3_ast Z3_API Z3_mk_fpa_is_infinite(Z3_context c, Z3_ast t)
Predicate indicating whether t is a floating-point number representing +oo or -oo.

◆ mk_is_nan()

expr mk_is_nan ( ) const
inline

Return Boolean expression to test for whether an FP expression is a NaN.

Definition at line 1131 of file z3++.h.

1131 {
1132 assert(is_fpa());
1133 Z3_ast r = Z3_mk_fpa_is_nan(ctx(), m_ast);
1134 check_error();
1135 return expr(ctx(), r);
1136 }
Z3_ast Z3_API Z3_mk_fpa_is_nan(Z3_context c, Z3_ast t)
Predicate indicating whether t is a NaN.

◆ mk_is_normal()

expr mk_is_normal ( ) const
inline

Return Boolean expression to test for whether an FP expression is a normal.

Definition at line 1141 of file z3++.h.

1141 {
1142 assert(is_fpa());
1143 Z3_ast r = Z3_mk_fpa_is_normal(ctx(), m_ast);
1144 check_error();
1145 return expr(ctx(), r);
1146 }
Z3_ast Z3_API Z3_mk_fpa_is_normal(Z3_context c, Z3_ast t)
Predicate indicating whether t is a normal floating-point number.

◆ mk_is_subnormal()

expr mk_is_subnormal ( ) const
inline

Return Boolean expression to test for whether an FP expression is a subnormal.

Definition at line 1151 of file z3++.h.

1151 {
1152 assert(is_fpa());
1153 Z3_ast r = Z3_mk_fpa_is_subnormal(ctx(), m_ast);
1154 check_error();
1155 return expr(ctx(), r);
1156 }
Z3_ast Z3_API Z3_mk_fpa_is_subnormal(Z3_context c, Z3_ast t)
Predicate indicating whether t is a subnormal floating-point number.

◆ mk_is_zero()

expr mk_is_zero ( ) const
inline

Return Boolean expression to test for whether an FP expression is a zero.

Definition at line 1161 of file z3++.h.

1161 {
1162 assert(is_fpa());
1163 Z3_ast r = Z3_mk_fpa_is_zero(ctx(), m_ast);
1164 check_error();
1165 return expr(ctx(), r);
1166 }
Z3_ast Z3_API Z3_mk_fpa_is_zero(Z3_context c, Z3_ast t)
Predicate indicating whether t is a floating-point number with zero value, i.e., +zero or -zero.

◆ mk_to_ieee_bv()

expr mk_to_ieee_bv ( ) const
inline

Convert this fpa into an IEEE BV.

Definition at line 1171 of file z3++.h.

1171 {
1172 assert(is_fpa());
1173 Z3_ast r = Z3_mk_fpa_to_ieee_bv(ctx(), m_ast);
1174 check_error();
1175 return expr(ctx(), r);
1176 }
Z3_ast Z3_API Z3_mk_fpa_to_ieee_bv(Z3_context c, Z3_ast t)
Conversion of a floating-point term into a bit-vector term in IEEE 754-2008 format.

◆ nth()

expr nth ( expr const & index) const
inline

Definition at line 1699 of file z3++.h.

1699 {
1700 check_context(*this, index);
1701 Z3_ast r = Z3_mk_seq_nth(ctx(), *this, index);
1702 check_error();
1703 return expr(ctx(), r);
1704 }
Z3_ast Z3_API Z3_mk_seq_nth(Z3_context c, Z3_ast s, Z3_ast index)
Retrieve from s the element positioned at position index. The function is under-specified if the inde...

Referenced by operator[]().

◆ num_args()

unsigned num_args ( ) const
inline

Return the number of arguments in this application. This method assumes the expression is an application.

Precondition
is_app()

Definition at line 1382 of file z3++.h.

1382{ unsigned r = Z3_get_app_num_args(ctx(), *this); check_error(); return r; }
unsigned Z3_API Z3_get_app_num_args(Z3_context c, Z3_app a)
Return the number of argument of an application. If t is an constant, then the number of arguments is...

Referenced by AstRef::__bool__(), args(), end(), and is_const().

◆ numerator()

expr numerator ( ) const
inline

Definition at line 1319 of file z3++.h.

1319 {
1320 assert(is_numeral());
1321 Z3_ast r = Z3_get_numerator(ctx(), m_ast);
1322 check_error();
1323 return expr(ctx(),r);
1324 }
Z3_ast Z3_API Z3_get_numerator(Z3_context c, Z3_ast a)
Return the numerator (as a numeral AST) of a numeral AST of sort Real.

◆ operator Z3_app()

operator Z3_app ( ) const
inline

Definition at line 1367 of file z3++.h.

1367{ assert(is_app()); return reinterpret_cast<Z3_app>(m_ast); }

◆ operator[]() [1/2]

expr operator[] ( expr const & index) const
inline

index operator defined on arrays and sequences.

Definition at line 1769 of file z3++.h.

1769 {
1770 assert(is_array() || is_seq());
1771 if (is_array()) {
1772 return select(*this, index);
1773 }
1774 return nth(index);
1775 }
expr select(expr const &a, expr const &i)
forward declarations
Definition z3++.h:4324
bool is_array(Any a)
Definition z3py.py:4846
is_seq(a)
Definition z3py.py:11724

◆ operator[]() [2/2]

expr operator[] ( expr_vector const & index) const
inline

Definition at line 1777 of file z3++.h.

1777 {
1778 return select(*this, index);
1779 }

◆ repeat()

expr repeat ( unsigned i) const
inline

Definition at line 1612 of file z3++.h.

1612{ Z3_ast r = Z3_mk_repeat(ctx(), i, *this); ctx().check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_mk_repeat(Z3_context c, unsigned i, Z3_ast t1)
Repeat the given bit-vector up length i.

◆ replace()

expr replace ( expr const & src,
expr const & dst ) const
inline

Definition at line 1676 of file z3++.h.

1676 {
1677 check_context(*this, src); check_context(src, dst);
1678 Z3_ast r = Z3_mk_seq_replace(ctx(), *this, src, dst);
1679 check_error();
1680 return expr(ctx(), r);
1681 }
Z3_ast Z3_API Z3_mk_seq_replace(Z3_context c, Z3_ast s, Z3_ast src, Z3_ast dst)
Replace the first occurrence of src with dst in s.

◆ rotate_left()

expr rotate_left ( unsigned i) const
inline

Definition at line 1608 of file z3++.h.

1608{ Z3_ast r = Z3_mk_rotate_left(ctx(), i, *this); ctx().check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_mk_rotate_left(Z3_context c, unsigned i, Z3_ast t1)
Rotate bits of t1 to the left i times.

◆ rotate_right()

expr rotate_right ( unsigned i) const
inline

Definition at line 1609 of file z3++.h.

1609{ Z3_ast r = Z3_mk_rotate_right(ctx(), i, *this); ctx().check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_mk_rotate_right(Z3_context c, unsigned i, Z3_ast t1)
Rotate bits of t1 to the right i times.

◆ sbvtos()

expr sbvtos ( ) const
inline

Definition at line 1725 of file z3++.h.

1725 {
1726 Z3_ast r = Z3_mk_sbv_to_str(ctx(), *this);
1727 check_error();
1728 return expr(ctx(), r);
1729 }
Z3_ast Z3_API Z3_mk_sbv_to_str(Z3_context c, Z3_ast s)
Signed bit-vector to string conversion.

◆ simplify() [1/2]

expr simplify ( ) const
inline

Return a simplified version of this expression.

Definition at line 1784 of file z3++.h.

1784{ Z3_ast r = Z3_simplify(ctx(), m_ast); check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_simplify(Z3_context c, Z3_ast a)
Interface to simplifier.

◆ simplify() [2/2]

expr simplify ( params const & p) const
inline

Return a simplified version of this expression. The parameter p is a set of parameters for the Z3 simplifier.

Definition at line 1788 of file z3++.h.

1788{ Z3_ast r = Z3_simplify_ex(ctx(), m_ast, p); check_error(); return expr(ctx(), r); }
Z3_ast Z3_API Z3_simplify_ex(Z3_context c, Z3_ast a, Z3_params p)
Interface to simplifier.

◆ stoi()

expr stoi ( ) const
inline

Definition at line 1710 of file z3++.h.

1710 {
1711 Z3_ast r = Z3_mk_str_to_int(ctx(), *this);
1712 check_error();
1713 return expr(ctx(), r);
1714 }
Z3_ast Z3_API Z3_mk_str_to_int(Z3_context c, Z3_ast s)
Convert string to integer.

◆ substitute() [1/3]

expr substitute ( expr_vector const & dst)
inline

Apply substitution. Replace bound variables by expressions.

Definition at line 4673 of file z3++.h.

4673 {
4674 array<Z3_ast> _dst(dst.size());
4675 for (unsigned i = 0; i < dst.size(); ++i) {
4676 _dst[i] = dst[i];
4677 }
4678 Z3_ast r = Z3_substitute_vars(ctx(), m_ast, dst.size(), _dst.ptr());
4679 check_error();
4680 return expr(ctx(), r);
4681 }
Z3_ast Z3_API Z3_substitute_vars(Z3_context c, Z3_ast a, unsigned num_exprs, Z3_ast const to[])
Substitute the variables in a with the expressions in to. For every i smaller than num_exprs,...

◆ substitute() [2/3]

expr substitute ( expr_vector const & src,
expr_vector const & dst )
inline

Apply substitution. Replace src expressions by dst.

Definition at line 4660 of file z3++.h.

4660 {
4661 assert(src.size() == dst.size());
4662 array<Z3_ast> _src(src.size());
4663 array<Z3_ast> _dst(dst.size());
4664 for (unsigned i = 0; i < src.size(); ++i) {
4665 _src[i] = src[i];
4666 _dst[i] = dst[i];
4667 }
4668 Z3_ast r = Z3_substitute(ctx(), m_ast, src.size(), _src.ptr(), _dst.ptr());
4669 check_error();
4670 return expr(ctx(), r);
4671 }
Z3_ast Z3_API Z3_substitute(Z3_context c, Z3_ast a, unsigned num_exprs, Z3_ast const from[], Z3_ast const to[])
Substitute every occurrence of from[i] in a with to[i], for i smaller than num_exprs....

◆ substitute() [3/3]

expr substitute ( func_decl_vector const & funs,
expr_vector const & bodies )
inline

Apply function substitution by macro definitions.

Definition at line 4683 of file z3++.h.

4683 {
4684 array<Z3_ast> _dst(dst.size());
4685 array<Z3_func_decl> _funs(funs.size());
4686 if (dst.size() != funs.size()) {
4687 Z3_THROW(exception("length of argument lists don't align"));
4688 return expr(ctx(), nullptr);
4689 }
4690 for (unsigned i = 0; i < dst.size(); ++i) {
4691 _dst[i] = dst[i];
4692 _funs[i] = funs[i];
4693 }
4694 Z3_ast r = Z3_substitute_funs(ctx(), m_ast, dst.size(), _funs.ptr(), _dst.ptr());
4695 check_error();
4696 return expr(ctx(), r);
4697 }
Z3_ast Z3_API Z3_substitute_funs(Z3_context c, Z3_ast a, unsigned num_funs, Z3_func_decl const from[], Z3_ast const to[])
Substitute functions in from with new expressions in to.

◆ ubvtos()

expr ubvtos ( ) const
inline

Definition at line 1720 of file z3++.h.

1720 {
1721 Z3_ast r = Z3_mk_ubv_to_str(ctx(), *this);
1722 check_error();
1723 return expr(ctx(), r);
1724 }
Z3_ast Z3_API Z3_mk_ubv_to_str(Z3_context c, Z3_ast s)
Unsigned bit-vector to string conversion.

◆ unit()

expr unit ( ) const
inline

Definition at line 1682 of file z3++.h.

1682 {
1683 Z3_ast r = Z3_mk_seq_unit(ctx(), *this);
1684 check_error();
1685 return expr(ctx(), r);
1686 }
Z3_ast Z3_API Z3_mk_seq_unit(Z3_context c, Z3_ast a)
Create a unit sequence of a.

◆ update()

expr update ( expr_vector const & args) const
inline

Update the arguments of this application. Return a new expression with the same function declaration and updated arguments. The number of new arguments must match the current number of arguments.

Precondition
is_app()
args.size() == num_args()

Definition at line 4699 of file z3++.h.

4699 {
4700 array<Z3_ast> _args(args.size());
4701 for (unsigned i = 0; i < args.size(); ++i) {
4702 _args[i] = args[i];
4703 }
4704 Z3_ast r = Z3_update_term(ctx(), m_ast, args.size(), _args.ptr());
4705 check_error();
4706 return expr(ctx(), r);
4707 }
Z3_ast Z3_API Z3_update_term(Z3_context c, Z3_ast a, unsigned num_args, Z3_ast const args[])
Update the arguments of term a using the arguments args. The number of arguments num_args should coin...

◆ update_field()

expr update_field ( func_decl const & field_access,
expr const & new_value ) const
inline

Update a datatype field. Return a new datatype expression with the specified field updated to the new value. The remaining fields are unchanged.

Precondition
is_datatype()
Parameters
field_accessThe accessor function declaration for the field to update
new_valueThe new value for the field

Definition at line 4709 of file z3++.h.

4709 {
4710 assert(is_datatype());
4711 Z3_ast r = Z3_datatype_update_field(ctx(), field_access, m_ast, new_value);
4712 check_error();
4713 return expr(ctx(), r);
4714 }
Z3_ast Z3_API Z3_datatype_update_field(Z3_context c, Z3_func_decl field_access, Z3_ast t, Z3_ast value)
Update record field with a value.

◆ abs

expr abs ( expr const & a)
friend

Definition at line 2200 of file z3++.h.

2200 {
2201 Z3_ast r;
2202 if (a.is_int()) {
2203 expr zero = a.ctx().int_val(0);
2204 expr ge = a >= zero;
2205 expr na = -a;
2206 r = Z3_mk_ite(a.ctx(), ge, a, na);
2207 }
2208 else if (a.is_real()) {
2209 expr zero = a.ctx().real_val(0);
2210 expr ge = a >= zero;
2211 expr na = -a;
2212 r = Z3_mk_ite(a.ctx(), ge, a, na);
2213 }
2214 else {
2215 r = Z3_mk_fpa_abs(a.ctx(), a);
2216 }
2217 a.check_error();
2218 return expr(a.ctx(), r);
2219 }
Z3_ast Z3_API Z3_mk_ite(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_ast t3)
Create an AST node representing an if-then-else: ite(t1, t2, t3).
Z3_ast Z3_API Z3_mk_fpa_abs(Z3_context c, Z3_ast t)
Floating-point absolute value.

◆ atleast

expr atleast ( expr_vector const & es,
unsigned bound )
friend

Definition at line 2656 of file z3++.h.

2656 {
2657 assert(es.size() > 0);
2658 context& ctx = es[0u].ctx();
2659 array<Z3_ast> _es(es);
2660 Z3_ast r = Z3_mk_atleast(ctx, _es.size(), _es.ptr(), bound);
2661 ctx.check_error();
2662 return expr(ctx, r);
2663 }
Z3_ast Z3_API Z3_mk_atleast(Z3_context c, unsigned num_args, Z3_ast const args[], unsigned k)
Pseudo-Boolean relations.

◆ atmost

expr atmost ( expr_vector const & es,
unsigned bound )
friend

Definition at line 2648 of file z3++.h.

2648 {
2649 assert(es.size() > 0);
2650 context& ctx = es[0u].ctx();
2651 array<Z3_ast> _es(es);
2652 Z3_ast r = Z3_mk_atmost(ctx, _es.size(), _es.ptr(), bound);
2653 ctx.check_error();
2654 return expr(ctx, r);
2655 }
Z3_ast Z3_API Z3_mk_atmost(Z3_context c, unsigned num_args, Z3_ast const args[], unsigned k)
Pseudo-Boolean relations.

◆ bv2int

expr bv2int ( expr const & a,
bool is_signed )
friend

bit-vector and integer conversions.

Definition at line 2446 of file z3++.h.

2446{ Z3_ast r = Z3_mk_bv2int(a.ctx(), a, is_signed); a.check_error(); return expr(a.ctx(), r); }
Z3_ast Z3_API Z3_mk_bv2int(Z3_context c, Z3_ast t1, bool is_signed)
Create an integer from the bit-vector argument t1. If is_signed is false, then the bit-vector t1 is t...

◆ bvadd_no_overflow

expr bvadd_no_overflow ( expr const & a,
expr const & b,
bool is_signed )
friend

bit-vector overflow/underflow checks

Definition at line 2452 of file z3++.h.

2452 {
2453 check_context(a, b); Z3_ast r = Z3_mk_bvadd_no_overflow(a.ctx(), a, b, is_signed); a.check_error(); return expr(a.ctx(), r);
2454 }
Z3_ast Z3_API Z3_mk_bvadd_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed)
Create a predicate that checks that the bit-wise addition of t1 and t2 does not overflow.

◆ bvadd_no_underflow

expr bvadd_no_underflow ( expr const & a,
expr const & b )
friend

Definition at line 2455 of file z3++.h.

2455 {
2456 check_context(a, b); Z3_ast r = Z3_mk_bvadd_no_underflow(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r);
2457 }
Z3_ast Z3_API Z3_mk_bvadd_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2)
Create a predicate that checks that the bit-wise signed addition of t1 and t2 does not underflow.

◆ bvmul_no_overflow

expr bvmul_no_overflow ( expr const & a,
expr const & b,
bool is_signed )
friend

Definition at line 2470 of file z3++.h.

2470 {
2471 check_context(a, b); Z3_ast r = Z3_mk_bvmul_no_overflow(a.ctx(), a, b, is_signed); a.check_error(); return expr(a.ctx(), r);
2472 }
Z3_ast Z3_API Z3_mk_bvmul_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed)
Create a predicate that checks that the bit-wise multiplication of t1 and t2 does not overflow.

◆ bvmul_no_underflow

expr bvmul_no_underflow ( expr const & a,
expr const & b )
friend

Definition at line 2473 of file z3++.h.

2473 {
2474 check_context(a, b); Z3_ast r = Z3_mk_bvmul_no_underflow(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r);
2475 }
Z3_ast Z3_API Z3_mk_bvmul_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2)
Create a predicate that checks that the bit-wise signed multiplication of t1 and t2 does not underflo...

◆ bvneg_no_overflow

expr bvneg_no_overflow ( expr const & a)
friend

Definition at line 2467 of file z3++.h.

2467 {
2468 Z3_ast r = Z3_mk_bvneg_no_overflow(a.ctx(), a); a.check_error(); return expr(a.ctx(), r);
2469 }
Z3_ast Z3_API Z3_mk_bvneg_no_overflow(Z3_context c, Z3_ast t1)
Check that bit-wise negation does not overflow when t1 is interpreted as a signed bit-vector.

◆ bvredand

expr bvredand ( expr const & a)
friend

Definition at line 2194 of file z3++.h.

2194 {
2195 assert(a.is_bv());
2196 Z3_ast r = Z3_mk_bvredand(a.ctx(), a);
2197 a.check_error();
2198 return expr(a.ctx(), r);
2199 }
Z3_ast Z3_API Z3_mk_bvredand(Z3_context c, Z3_ast t1)
Take conjunction of bits in vector, return vector of length 1.

◆ bvredor

expr bvredor ( expr const & a)
friend

Definition at line 2188 of file z3++.h.

2188 {
2189 assert(a.is_bv());
2190 Z3_ast r = Z3_mk_bvredor(a.ctx(), a);
2191 a.check_error();
2192 return expr(a.ctx(), r);
2193 }
Z3_ast Z3_API Z3_mk_bvredor(Z3_context c, Z3_ast t1)
Take disjunction of bits in vector, return vector of length 1.

◆ bvsdiv_no_overflow

expr bvsdiv_no_overflow ( expr const & a,
expr const & b )
friend

Definition at line 2464 of file z3++.h.

2464 {
2465 check_context(a, b); Z3_ast r = Z3_mk_bvsdiv_no_overflow(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r);
2466 }
Z3_ast Z3_API Z3_mk_bvsdiv_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2)
Create a predicate that checks that the bit-wise signed division of t1 and t2 does not overflow.

◆ bvsub_no_overflow

expr bvsub_no_overflow ( expr const & a,
expr const & b )
friend

Definition at line 2458 of file z3++.h.

2458 {
2459 check_context(a, b); Z3_ast r = Z3_mk_bvsub_no_overflow(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r);
2460 }
Z3_ast Z3_API Z3_mk_bvsub_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2)
Create a predicate that checks that the bit-wise signed subtraction of t1 and t2 does not overflow.

◆ bvsub_no_underflow

expr bvsub_no_underflow ( expr const & a,
expr const & b,
bool is_signed )
friend

Definition at line 2461 of file z3++.h.

2461 {
2462 check_context(a, b); Z3_ast r = Z3_mk_bvsub_no_underflow(a.ctx(), a, b, is_signed); a.check_error(); return expr(a.ctx(), r);
2463 }
Z3_ast Z3_API Z3_mk_bvsub_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed)
Create a predicate that checks that the bit-wise subtraction of t1 and t2 does not underflow.

◆ concat [1/2]

expr concat ( expr const & a,
expr const & b )
friend

Definition at line 2682 of file z3++.h.

2682 {
2683 check_context(a, b);
2684 Z3_ast r;
2685 if (Z3_is_seq_sort(a.ctx(), a.get_sort())) {
2686 Z3_ast _args[2] = { a, b };
2687 r = Z3_mk_seq_concat(a.ctx(), 2, _args);
2688 }
2689 else if (Z3_is_re_sort(a.ctx(), a.get_sort())) {
2690 Z3_ast _args[2] = { a, b };
2691 r = Z3_mk_re_concat(a.ctx(), 2, _args);
2692 }
2693 else {
2694 r = Z3_mk_concat(a.ctx(), a, b);
2695 }
2696 a.ctx().check_error();
2697 return expr(a.ctx(), r);
2698 }
bool Z3_API Z3_is_seq_sort(Z3_context c, Z3_sort s)
Check if s is a sequence sort.
Z3_ast Z3_API Z3_mk_seq_concat(Z3_context c, unsigned n, Z3_ast const args[])
Concatenate sequences.
Z3_ast Z3_API Z3_mk_re_concat(Z3_context c, unsigned n, Z3_ast const args[])
Create the concatenation of the regular languages.
Z3_ast Z3_API Z3_mk_concat(Z3_context c, Z3_ast t1, Z3_ast t2)
Concatenate the given bit-vectors.
bool Z3_API Z3_is_re_sort(Z3_context c, Z3_sort s)
Check if s is a regular expression sort.

◆ concat [2/2]

expr concat ( expr_vector const & args)
friend

Definition at line 2700 of file z3++.h.

2700 {
2701 Z3_ast r;
2702 assert(args.size() > 0);
2703 if (args.size() == 1) {
2704 return args[0u];
2705 }
2706 context& ctx = args[0u].ctx();
2707 array<Z3_ast> _args(args);
2708 if (Z3_is_seq_sort(ctx, args[0u].get_sort())) {
2709 r = Z3_mk_seq_concat(ctx, _args.size(), _args.ptr());
2710 }
2711 else if (Z3_is_re_sort(ctx, args[0u].get_sort())) {
2712 r = Z3_mk_re_concat(ctx, _args.size(), _args.ptr());
2713 }
2714 else {
2715 r = _args[args.size()-1];
2716 for (unsigned i = args.size()-1; i > 0; ) {
2717 --i;
2718 r = Z3_mk_concat(ctx, _args[i], r);
2719 ctx.check_error();
2720 }
2721 }
2722 ctx.check_error();
2723 return expr(ctx, r);
2724 }

◆ distinct

expr distinct ( expr_vector const & args)
friend

Definition at line 2673 of file z3++.h.

2673 {
2674 assert(args.size() > 0);
2675 context& ctx = args[0u].ctx();
2676 array<Z3_ast> _args(args);
2677 Z3_ast r = Z3_mk_distinct(ctx, _args.size(), _args.ptr());
2678 ctx.check_error();
2679 return expr(ctx, r);
2680 }
Z3_ast Z3_API Z3_mk_distinct(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing distinct(args[0], ..., args[num_args-1]).

◆ fma

expr fma ( expr const & a,
expr const & b,
expr const & c,
expr const & rm )
friend

FloatingPoint fused multiply-add.

Definition at line 2236 of file z3++.h.

2236 {
2237 check_context(a, b); check_context(a, c); check_context(a, rm);
2238 assert(a.is_fpa() && b.is_fpa() && c.is_fpa());
2239 Z3_ast r = Z3_mk_fpa_fma(a.ctx(), rm, a, b, c);
2240 a.check_error();
2241 return expr(a.ctx(), r);
2242 }
Z3_ast Z3_API Z3_mk_fpa_fma(Z3_context c, Z3_ast rm, Z3_ast t1, Z3_ast t2, Z3_ast t3)
Floating-point fused multiply-add.

◆ fp_eq

expr fp_eq ( expr const & a,
expr const & b )
friend

Definition at line 2227 of file z3++.h.

2227 {
2228 check_context(a, b);
2229 assert(a.is_fpa());
2230 Z3_ast r = Z3_mk_fpa_eq(a.ctx(), a, b);
2231 a.check_error();
2232 return expr(a.ctx(), r);
2233 }
Z3_ast Z3_API Z3_mk_fpa_eq(Z3_context c, Z3_ast t1, Z3_ast t2)
Floating-point equality.

◆ fpa_fp

expr fpa_fp ( expr const & sgn,
expr const & exp,
expr const & sig )
friend

Create an expression of FloatingPoint sort from three bit-vector expressions.

Definition at line 2244 of file z3++.h.

2244 {
2245 check_context(sgn, exp); check_context(exp, sig);
2246 assert(sgn.is_bv() && exp.is_bv() && sig.is_bv());
2247 Z3_ast r = Z3_mk_fpa_fp(sgn.ctx(), sgn, exp, sig);
2248 sgn.check_error();
2249 return expr(sgn.ctx(), r);
2250 }

◆ fpa_to_fpa

expr fpa_to_fpa ( expr const & t,
sort s )
friend

Conversion of a floating-point term into another floating-point.

Definition at line 2280 of file z3++.h.

2280 {
2281 assert(t.is_fpa());
2282 Z3_ast r = Z3_mk_fpa_to_fp_float(t.ctx(), t.ctx().fpa_rounding_mode(), t, s);
2283 t.check_error();
2284 return expr(t.ctx(), r);
2285 }
Z3_ast Z3_API Z3_mk_fpa_to_fp_float(Z3_context c, Z3_ast rm, Z3_ast t, Z3_sort s)
Conversion of a FloatingPoint term into another term of different FloatingPoint sort.

◆ fpa_to_sbv

expr fpa_to_sbv ( expr const & t,
unsigned sz )
friend

Conversion of a floating-point term into a signed bit-vector.

Definition at line 2252 of file z3++.h.

2252 {
2253 assert(t.is_fpa());
2254 Z3_ast r = Z3_mk_fpa_to_sbv(t.ctx(), t.ctx().fpa_rounding_mode(), t, sz);
2255 t.check_error();
2256 return expr(t.ctx(), r);
2257 }
Z3_ast Z3_API Z3_mk_fpa_to_sbv(Z3_context c, Z3_ast rm, Z3_ast t, unsigned sz)
Conversion of a floating-point term into a signed bit-vector.

◆ fpa_to_ubv

expr fpa_to_ubv ( expr const & t,
unsigned sz )
friend

Conversion of a floating-point term into an unsigned bit-vector.

Definition at line 2259 of file z3++.h.

2259 {
2260 assert(t.is_fpa());
2261 Z3_ast r = Z3_mk_fpa_to_ubv(t.ctx(), t.ctx().fpa_rounding_mode(), t, sz);
2262 t.check_error();
2263 return expr(t.ctx(), r);
2264 }
Z3_ast Z3_API Z3_mk_fpa_to_ubv(Z3_context c, Z3_ast rm, Z3_ast t, unsigned sz)
Conversion of a floating-point term into an unsigned bit-vector.

◆ implies [1/3]

expr implies ( bool a,
expr const & b )
friend

Definition at line 1839 of file z3++.h.

1839{ return implies(b.ctx().bool_val(a), b); }
expr implies(expr const &a, expr const &b)
Definition z3++.h:1834

◆ implies [2/3]

expr implies ( expr const & a,
bool b )
friend

Definition at line 1838 of file z3++.h.

1838{ return implies(a, a.ctx().bool_val(b)); }

◆ implies [3/3]

expr implies ( expr const & a,
expr const & b )
friend

Definition at line 1834 of file z3++.h.

1834 {
1835 assert(a.is_bool() && b.is_bool());
1837 }
Z3_ast Z3_API Z3_mk_implies(Z3_context c, Z3_ast t1, Z3_ast t2)
Create an AST node representing t1 implies t2.
#define _Z3_MK_BIN_(a, b, binop)
Definition z3++.h:1827

◆ int2bv

expr int2bv ( unsigned n,
expr const & a )
friend

Definition at line 2447 of file z3++.h.

2447{ Z3_ast r = Z3_mk_int2bv(a.ctx(), n, a); a.check_error(); return expr(a.ctx(), r); }
Z3_ast Z3_API Z3_mk_int2bv(Z3_context c, unsigned n, Z3_ast t1)
Create an n bit bit-vector from the integer argument t1.

◆ is_int

expr is_int ( expr const & e)
friend

Definition at line 1882 of file z3++.h.

1882{ _Z3_MK_UN_(e, Z3_mk_is_int); }
Z3_ast Z3_API Z3_mk_is_int(Z3_context c, Z3_ast t1)
Check if a real number is an integer.
#define _Z3_MK_UN_(a, mkun)
Definition z3++.h:1874

◆ ite

expr ite ( expr const & c,
expr const & t,
expr const & e )
friend

Create the if-then-else expression ite(c, t, e).

Precondition
c.is_bool()

Definition at line 2299 of file z3++.h.

2299 {
2300 check_context(c, t); check_context(c, e);
2301 assert(c.is_bool());
2302 Z3_ast r = Z3_mk_ite(c.ctx(), c, t, e);
2303 c.check_error();
2304 return expr(c.ctx(), r);
2305 }

◆ max

expr max ( expr const & a,
expr const & b )
friend

Definition at line 2172 of file z3++.h.

2172 {
2173 check_context(a, b);
2174 Z3_ast r;
2175 if (a.is_arith()) {
2176 r = Z3_mk_ite(a.ctx(), Z3_mk_ge(a.ctx(), a, b), a, b);
2177 }
2178 else if (a.is_bv()) {
2179 r = Z3_mk_ite(a.ctx(), Z3_mk_bvuge(a.ctx(), a, b), a, b);
2180 }
2181 else {
2182 assert(a.is_fpa());
2183 r = Z3_mk_fpa_max(a.ctx(), a, b);
2184 }
2185 a.check_error();
2186 return expr(a.ctx(), r);
2187 }
Z3_ast Z3_API Z3_mk_ge(Z3_context c, Z3_ast t1, Z3_ast t2)
Create greater than or equal to.
Z3_ast Z3_API Z3_mk_fpa_max(Z3_context c, Z3_ast t1, Z3_ast t2)
Maximum of floating-point numbers.
Z3_ast Z3_API Z3_mk_bvuge(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned greater than or equal to.

◆ min

expr min ( expr const & a,
expr const & b )
friend

Definition at line 2156 of file z3++.h.

2156 {
2157 check_context(a, b);
2158 Z3_ast r;
2159 if (a.is_arith()) {
2160 r = Z3_mk_ite(a.ctx(), Z3_mk_ge(a.ctx(), a, b), b, a);
2161 }
2162 else if (a.is_bv()) {
2163 r = Z3_mk_ite(a.ctx(), Z3_mk_bvuge(a.ctx(), a, b), b, a);
2164 }
2165 else {
2166 assert(a.is_fpa());
2167 r = Z3_mk_fpa_min(a.ctx(), a, b);
2168 }
2169 a.check_error();
2170 return expr(a.ctx(), r);
2171 }
Z3_ast Z3_API Z3_mk_fpa_min(Z3_context c, Z3_ast t1, Z3_ast t2)
Minimum of floating-point numbers.

◆ mk_and

expr mk_and ( expr_vector const & args)
friend

Definition at line 2760 of file z3++.h.

2760 {
2761 array<Z3_ast> _args(args);
2762 Z3_ast r = Z3_mk_and(args.ctx(), _args.size(), _args.ptr());
2763 args.check_error();
2764 return expr(args.ctx(), r);
2765 }
Z3_ast Z3_API Z3_mk_and(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] and ... and args[num_args-1].

◆ mk_or

expr mk_or ( expr_vector const & args)
friend

Definition at line 2754 of file z3++.h.

2754 {
2755 array<Z3_ast> _args(args);
2756 Z3_ast r = Z3_mk_or(args.ctx(), _args.size(), _args.ptr());
2757 args.check_error();
2758 return expr(args.ctx(), r);
2759 }
Z3_ast Z3_API Z3_mk_or(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] or ... or args[num_args-1].

◆ mk_xor

expr mk_xor ( expr_vector const & args)
friend

Definition at line 2766 of file z3++.h.

2766 {
2767 if (args.empty())
2768 return args.ctx().bool_val(false);
2769 expr r = args[0u];
2770 for (unsigned i = 1; i < args.size(); ++i)
2771 r = r ^ args[i];
2772 return r;
2773 }

◆ mod [1/3]

expr mod ( expr const & a,
expr const & b )
friend

Definition at line 1846 of file z3++.h.

1846 {
1847 if (a.is_bv()) {
1848 _Z3_MK_BIN_(a, b, Z3_mk_bvsmod);
1849 }
1850 else {
1851 _Z3_MK_BIN_(a, b, Z3_mk_mod);
1852 }
1853 }
Z3_ast Z3_API Z3_mk_mod(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 mod arg2.
Z3_ast Z3_API Z3_mk_bvsmod(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed remainder (sign follows divisor).

◆ mod [2/3]

expr mod ( expr const & a,
int b )
friend

Definition at line 1854 of file z3++.h.

1854{ return mod(a, a.ctx().num_val(b, a.get_sort())); }
expr mod(expr const &a, expr const &b)
Definition z3++.h:1846

◆ mod [3/3]

expr mod ( int a,
expr const & b )
friend

Definition at line 1855 of file z3++.h.

1855{ return mod(b.ctx().num_val(a, b.get_sort()), b); }

◆ nand

expr nand ( expr const & a,
expr const & b )
friend

Definition at line 2153 of file z3++.h.

2153{ if (a.is_bool()) return !(a && b); check_context(a, b); Z3_ast r = Z3_mk_bvnand(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r); }
Z3_ast Z3_API Z3_mk_bvnand(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise nand.

◆ nor

expr nor ( expr const & a,
expr const & b )
friend

Definition at line 2154 of file z3++.h.

2154{ if (a.is_bool()) return !(a || b); check_context(a, b); Z3_ast r = Z3_mk_bvnor(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r); }
Z3_ast Z3_API Z3_mk_bvnor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise nor.

◆ operator!

expr operator! ( expr const & a)
friend

Return an expression representing not(a).

Precondition
a.is_bool()

Definition at line 1880 of file z3++.h.

1880{ assert(a.is_bool()); _Z3_MK_UN_(a, Z3_mk_not); }
Z3_ast Z3_API Z3_mk_not(Z3_context c, Z3_ast a)
Create an AST node representing not(a).

◆ operator!= [1/3]

expr operator!= ( expr const & a,
expr const & b )
friend

Definition at line 1922 of file z3++.h.

1922 {
1923 check_context(a, b);
1924 Z3_ast args[2] = { a, b };
1925 Z3_ast r = Z3_mk_distinct(a.ctx(), 2, args);
1926 a.check_error();
1927 return expr(a.ctx(), r);
1928 }

◆ operator!= [2/3]

expr operator!= ( expr const & a,
int b )
friend

Definition at line 1929 of file z3++.h.

1929{ assert(a.is_arith() || a.is_bv() || a.is_fpa()); return a != a.ctx().num_val(b, a.get_sort()); }

◆ operator!= [3/3]

expr operator!= ( int a,
expr const & b )
friend

Definition at line 1930 of file z3++.h.

1930{ assert(b.is_arith() || b.is_bv() || b.is_fpa()); return b.ctx().num_val(a, b.get_sort()) != b; }

◆ operator& [1/3]

expr operator& ( expr const & a,
expr const & b )
friend

Definition at line 2141 of file z3++.h.

2141{ if (a.is_bool()) return a && b; check_context(a, b); Z3_ast r = Z3_mk_bvand(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r); }
Z3_ast Z3_API Z3_mk_bvand(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise and.

◆ operator& [2/3]

expr operator& ( expr const & a,
int b )
friend

Definition at line 2142 of file z3++.h.

2142{ return a & a.ctx().num_val(b, a.get_sort()); }

◆ operator& [3/3]

expr operator& ( int a,
expr const & b )
friend

Definition at line 2143 of file z3++.h.

2143{ return b.ctx().num_val(a, b.get_sort()) & b; }

◆ operator&& [1/3]

expr operator&& ( bool a,
expr const & b )
friend

Return an expression representing a and b. The C++ Boolean value a is automatically converted into a Z3 Boolean constant.

Precondition
b.is_bool()

Definition at line 1896 of file z3++.h.

1896{ return b.ctx().bool_val(a) && b; }

◆ operator&& [2/3]

expr operator&& ( expr const & a,
bool b )
friend

Return an expression representing a and b. The C++ Boolean value b is automatically converted into a Z3 Boolean constant.

Precondition
a.is_bool()

Definition at line 1895 of file z3++.h.

1895{ return a && a.ctx().bool_val(b); }

◆ operator&& [3/3]

expr operator&& ( expr const & a,
expr const & b )
friend

Return an expression representing a and b.

Precondition
a.is_bool()
b.is_bool()

Definition at line 1886 of file z3++.h.

1886 {
1887 check_context(a, b);
1888 assert(a.is_bool() && b.is_bool());
1889 Z3_ast args[2] = { a, b };
1890 Z3_ast r = Z3_mk_and(a.ctx(), 2, args);
1891 a.check_error();
1892 return expr(a.ctx(), r);
1893 }

◆ operator* [1/3]

expr operator* ( expr const & a,
expr const & b )
friend

Definition at line 1964 of file z3++.h.

1964 {
1965 check_context(a, b);
1966 Z3_ast r = 0;
1967 if (a.is_arith() && b.is_arith()) {
1968 Z3_ast args[2] = { a, b };
1969 r = Z3_mk_mul(a.ctx(), 2, args);
1970 }
1971 else if (a.is_bv() && b.is_bv()) {
1972 r = Z3_mk_bvmul(a.ctx(), a, b);
1973 }
1974 else if (a.is_fpa() && b.is_fpa()) {
1975 r = Z3_mk_fpa_mul(a.ctx(), a.ctx().fpa_rounding_mode(), a, b);
1976 }
1977 else {
1978 // operator is not supported by given arguments.
1979 assert(false);
1980 }
1981 a.check_error();
1982 return expr(a.ctx(), r);
1983 }
Z3_ast Z3_API Z3_mk_mul(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] * ... * args[num_args-1].
Z3_ast Z3_API Z3_mk_bvmul(Z3_context c, Z3_ast t1, Z3_ast t2)
Standard two's complement multiplication.
Z3_ast Z3_API Z3_mk_fpa_mul(Z3_context c, Z3_ast rm, Z3_ast t1, Z3_ast t2)
Floating-point multiplication.

◆ operator* [2/3]

expr operator* ( expr const & a,
int b )
friend

Definition at line 1984 of file z3++.h.

1984{ return a * a.ctx().num_val(b, a.get_sort()); }

◆ operator* [3/3]

expr operator* ( int a,
expr const & b )
friend

Definition at line 1985 of file z3++.h.

1985{ return b.ctx().num_val(a, b.get_sort()) * b; }

◆ operator+ [1/3]

expr operator+ ( expr const & a,
expr const & b )
friend

Definition at line 1934 of file z3++.h.

1934 {
1935 check_context(a, b);
1936 Z3_ast r = 0;
1937 if (a.is_arith() && b.is_arith()) {
1938 Z3_ast args[2] = { a, b };
1939 r = Z3_mk_add(a.ctx(), 2, args);
1940 }
1941 else if (a.is_bv() && b.is_bv()) {
1942 r = Z3_mk_bvadd(a.ctx(), a, b);
1943 }
1944 else if (a.is_seq() && b.is_seq()) {
1945 return concat(a, b);
1946 }
1947 else if (a.is_re() && b.is_re()) {
1948 Z3_ast _args[2] = { a, b };
1949 r = Z3_mk_re_union(a.ctx(), 2, _args);
1950 }
1951 else if (a.is_fpa() && b.is_fpa()) {
1952 r = Z3_mk_fpa_add(a.ctx(), a.ctx().fpa_rounding_mode(), a, b);
1953 }
1954 else {
1955 // operator is not supported by given arguments.
1956 assert(false);
1957 }
1958 a.check_error();
1959 return expr(a.ctx(), r);
1960 }
Z3_ast Z3_API Z3_mk_re_union(Z3_context c, unsigned n, Z3_ast const args[])
Create the union of the regular languages.
Z3_ast Z3_API Z3_mk_bvadd(Z3_context c, Z3_ast t1, Z3_ast t2)
Standard two's complement addition.
Z3_ast Z3_API Z3_mk_fpa_add(Z3_context c, Z3_ast rm, Z3_ast t1, Z3_ast t2)
Floating-point addition.
Z3_ast Z3_API Z3_mk_add(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] + ... + args[num_args-1].
expr concat(expr const &a, expr const &b)
Definition z3++.h:2682

◆ operator+ [2/3]

expr operator+ ( expr const & a,
int b )
friend

Definition at line 1961 of file z3++.h.

1961{ return a + a.ctx().num_val(b, a.get_sort()); }

◆ operator+ [3/3]

expr operator+ ( int a,
expr const & b )
friend

Definition at line 1962 of file z3++.h.

1962{ return b.ctx().num_val(a, b.get_sort()) + b; }

◆ operator- [1/4]

expr operator- ( expr const & a)
friend

Definition at line 2030 of file z3++.h.

2030 {
2031 Z3_ast r = 0;
2032 if (a.is_arith()) {
2033 r = Z3_mk_unary_minus(a.ctx(), a);
2034 }
2035 else if (a.is_bv()) {
2036 r = Z3_mk_bvneg(a.ctx(), a);
2037 }
2038 else if (a.is_fpa()) {
2039 r = Z3_mk_fpa_neg(a.ctx(), a);
2040 }
2041 else {
2042 // operator is not supported by given arguments.
2043 assert(false);
2044 }
2045 a.check_error();
2046 return expr(a.ctx(), r);
2047 }
Z3_ast Z3_API Z3_mk_unary_minus(Z3_context c, Z3_ast arg)
Create an AST node representing - arg.
Z3_ast Z3_API Z3_mk_fpa_neg(Z3_context c, Z3_ast t)
Floating-point negation.
Z3_ast Z3_API Z3_mk_bvneg(Z3_context c, Z3_ast t1)
Standard two's complement unary minus.

◆ operator- [2/4]

expr operator- ( expr const & a,
expr const & b )
friend

Definition at line 2049 of file z3++.h.

2049 {
2050 check_context(a, b);
2051 Z3_ast r = 0;
2052 if (a.is_arith() && b.is_arith()) {
2053 Z3_ast args[2] = { a, b };
2054 r = Z3_mk_sub(a.ctx(), 2, args);
2055 }
2056 else if (a.is_bv() && b.is_bv()) {
2057 r = Z3_mk_bvsub(a.ctx(), a, b);
2058 }
2059 else if (a.is_fpa() && b.is_fpa()) {
2060 r = Z3_mk_fpa_sub(a.ctx(), a.ctx().fpa_rounding_mode(), a, b);
2061 }
2062 else {
2063 // operator is not supported by given arguments.
2064 assert(false);
2065 }
2066 a.check_error();
2067 return expr(a.ctx(), r);
2068 }
Z3_ast Z3_API Z3_mk_fpa_sub(Z3_context c, Z3_ast rm, Z3_ast t1, Z3_ast t2)
Floating-point subtraction.
Z3_ast Z3_API Z3_mk_bvsub(Z3_context c, Z3_ast t1, Z3_ast t2)
Standard two's complement subtraction.
Z3_ast Z3_API Z3_mk_sub(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] - ... - args[num_args - 1].

◆ operator- [3/4]

expr operator- ( expr const & a,
int b )
friend

Definition at line 2069 of file z3++.h.

2069{ return a - a.ctx().num_val(b, a.get_sort()); }

◆ operator- [4/4]

expr operator- ( int a,
expr const & b )
friend

Definition at line 2070 of file z3++.h.

2070{ return b.ctx().num_val(a, b.get_sort()) - b; }

◆ operator/ [1/3]

expr operator/ ( expr const & a,
expr const & b )
friend

Definition at line 2008 of file z3++.h.

2008 {
2009 check_context(a, b);
2010 Z3_ast r = 0;
2011 if (a.is_arith() && b.is_arith()) {
2012 r = Z3_mk_div(a.ctx(), a, b);
2013 }
2014 else if (a.is_bv() && b.is_bv()) {
2015 r = Z3_mk_bvsdiv(a.ctx(), a, b);
2016 }
2017 else if (a.is_fpa() && b.is_fpa()) {
2018 r = Z3_mk_fpa_div(a.ctx(), a.ctx().fpa_rounding_mode(), a, b);
2019 }
2020 else {
2021 // operator is not supported by given arguments.
2022 assert(false);
2023 }
2024 a.check_error();
2025 return expr(a.ctx(), r);
2026 }
Z3_ast Z3_API Z3_mk_div(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 div arg2.
Z3_ast Z3_API Z3_mk_bvsdiv(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed division.
Z3_ast Z3_API Z3_mk_fpa_div(Z3_context c, Z3_ast rm, Z3_ast t1, Z3_ast t2)
Floating-point division.

◆ operator/ [2/3]

expr operator/ ( expr const & a,
int b )
friend

Definition at line 2027 of file z3++.h.

2027{ return a / a.ctx().num_val(b, a.get_sort()); }

◆ operator/ [3/3]

expr operator/ ( int a,
expr const & b )
friend

Definition at line 2028 of file z3++.h.

2028{ return b.ctx().num_val(a, b.get_sort()) / b; }

◆ operator< [1/3]

expr operator< ( expr const & a,
expr const & b )
friend

Definition at line 2097 of file z3++.h.

2097 {
2098 check_context(a, b);
2099 Z3_ast r = 0;
2100 if (a.is_arith() && b.is_arith()) {
2101 r = Z3_mk_lt(a.ctx(), a, b);
2102 }
2103 else if (a.is_bv() && b.is_bv()) {
2104 r = Z3_mk_bvslt(a.ctx(), a, b);
2105 }
2106 else if (a.is_fpa() && b.is_fpa()) {
2107 r = Z3_mk_fpa_lt(a.ctx(), a, b);
2108 }
2109 else {
2110 // operator is not supported by given arguments.
2111 assert(false);
2112 }
2113 a.check_error();
2114 return expr(a.ctx(), r);
2115 }
Z3_ast Z3_API Z3_mk_bvslt(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed less than.
Z3_ast Z3_API Z3_mk_lt(Z3_context c, Z3_ast t1, Z3_ast t2)
Create less than.
Z3_ast Z3_API Z3_mk_fpa_lt(Z3_context c, Z3_ast t1, Z3_ast t2)
Floating-point less than.

◆ operator< [2/3]

expr operator< ( expr const & a,
int b )
friend

Definition at line 2116 of file z3++.h.

2116{ return a < a.ctx().num_val(b, a.get_sort()); }

◆ operator< [3/3]

expr operator< ( int a,
expr const & b )
friend

Definition at line 2117 of file z3++.h.

2117{ return b.ctx().num_val(a, b.get_sort()) < b; }

◆ operator<= [1/3]

expr operator<= ( expr const & a,
expr const & b )
friend

Definition at line 2072 of file z3++.h.

2072 {
2073 check_context(a, b);
2074 Z3_ast r = 0;
2075 if (a.is_arith() && b.is_arith()) {
2076 r = Z3_mk_le(a.ctx(), a, b);
2077 }
2078 else if (a.is_bv() && b.is_bv()) {
2079 r = Z3_mk_bvsle(a.ctx(), a, b);
2080 }
2081 else if (a.is_fpa() && b.is_fpa()) {
2082 r = Z3_mk_fpa_leq(a.ctx(), a, b);
2083 }
2084 else {
2085 // operator is not supported by given arguments.
2086 assert(false);
2087 }
2088 a.check_error();
2089 return expr(a.ctx(), r);
2090 }
Z3_ast Z3_API Z3_mk_bvsle(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed less than or equal to.
Z3_ast Z3_API Z3_mk_le(Z3_context c, Z3_ast t1, Z3_ast t2)
Create less than or equal to.
Z3_ast Z3_API Z3_mk_fpa_leq(Z3_context c, Z3_ast t1, Z3_ast t2)
Floating-point less than or equal.

◆ operator<= [2/3]

expr operator<= ( expr const & a,
int b )
friend

Definition at line 2091 of file z3++.h.

2091{ return a <= a.ctx().num_val(b, a.get_sort()); }

◆ operator<= [3/3]

expr operator<= ( int a,
expr const & b )
friend

Definition at line 2092 of file z3++.h.

2092{ return b.ctx().num_val(a, b.get_sort()) <= b; }

◆ operator== [1/3]

expr operator== ( expr const & a,
expr const & b )
friend

Definition at line 1911 of file z3++.h.

1911 {
1912 check_context(a, b);
1913 Z3_ast r = Z3_mk_eq(a.ctx(), a, b);
1914 a.check_error();
1915 return expr(a.ctx(), r);
1916 }
Z3_ast Z3_API Z3_mk_eq(Z3_context c, Z3_ast l, Z3_ast r)
Create an AST node representing l = r.

◆ operator== [2/3]

expr operator== ( expr const & a,
int b )
friend

Definition at line 1917 of file z3++.h.

1917{ assert(a.is_arith() || a.is_bv() || a.is_fpa()); return a == a.ctx().num_val(b, a.get_sort()); }

◆ operator== [3/3]

expr operator== ( int a,
expr const & b )
friend

Definition at line 1918 of file z3++.h.

1918{ assert(b.is_arith() || b.is_bv() || b.is_fpa()); return b.ctx().num_val(a, b.get_sort()) == b; }

◆ operator> [1/3]

expr operator> ( expr const & a,
expr const & b )
friend

Definition at line 2119 of file z3++.h.

2119 {
2120 check_context(a, b);
2121 Z3_ast r = 0;
2122 if (a.is_arith() && b.is_arith()) {
2123 r = Z3_mk_gt(a.ctx(), a, b);
2124 }
2125 else if (a.is_bv() && b.is_bv()) {
2126 r = Z3_mk_bvsgt(a.ctx(), a, b);
2127 }
2128 else if (a.is_fpa() && b.is_fpa()) {
2129 r = Z3_mk_fpa_gt(a.ctx(), a, b);
2130 }
2131 else {
2132 // operator is not supported by given arguments.
2133 assert(false);
2134 }
2135 a.check_error();
2136 return expr(a.ctx(), r);
2137 }
Z3_ast Z3_API Z3_mk_bvsgt(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed greater than.
Z3_ast Z3_API Z3_mk_fpa_gt(Z3_context c, Z3_ast t1, Z3_ast t2)
Floating-point greater than.
Z3_ast Z3_API Z3_mk_gt(Z3_context c, Z3_ast t1, Z3_ast t2)
Create greater than.

◆ operator> [2/3]

expr operator> ( expr const & a,
int b )
friend

Definition at line 2138 of file z3++.h.

2138{ return a > a.ctx().num_val(b, a.get_sort()); }

◆ operator> [3/3]

expr operator> ( int a,
expr const & b )
friend

Definition at line 2139 of file z3++.h.

2139{ return b.ctx().num_val(a, b.get_sort()) > b; }

◆ operator>= [1/3]

expr operator>= ( expr const & a,
expr const & b )
friend

Definition at line 1988 of file z3++.h.

1988 {
1989 check_context(a, b);
1990 Z3_ast r = 0;
1991 if (a.is_arith() && b.is_arith()) {
1992 r = Z3_mk_ge(a.ctx(), a, b);
1993 }
1994 else if (a.is_bv() && b.is_bv()) {
1995 r = Z3_mk_bvsge(a.ctx(), a, b);
1996 }
1997 else if (a.is_fpa() && b.is_fpa()) {
1998 r = Z3_mk_fpa_geq(a.ctx(), a, b);
1999 }
2000 else {
2001 // operator is not supported by given arguments.
2002 assert(false);
2003 }
2004 a.check_error();
2005 return expr(a.ctx(), r);
2006 }
Z3_ast Z3_API Z3_mk_bvsge(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed greater than or equal to.
Z3_ast Z3_API Z3_mk_fpa_geq(Z3_context c, Z3_ast t1, Z3_ast t2)
Floating-point greater than or equal.

◆ operator>= [2/3]

expr operator>= ( expr const & a,
int b )
friend

Definition at line 2094 of file z3++.h.

2094{ return a >= a.ctx().num_val(b, a.get_sort()); }

◆ operator>= [3/3]

expr operator>= ( int a,
expr const & b )
friend

Definition at line 2095 of file z3++.h.

2095{ return b.ctx().num_val(a, b.get_sort()) >= b; }

◆ operator^ [1/3]

expr operator^ ( expr const & a,
expr const & b )
friend

Definition at line 2145 of file z3++.h.

2145{ check_context(a, b); Z3_ast r = a.is_bool() ? Z3_mk_xor(a.ctx(), a, b) : Z3_mk_bvxor(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r); }
Z3_ast Z3_API Z3_mk_bvxor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise exclusive-or.
Z3_ast Z3_API Z3_mk_xor(Z3_context c, Z3_ast t1, Z3_ast t2)
Create an AST node representing t1 xor t2.

◆ operator^ [2/3]

expr operator^ ( expr const & a,
int b )
friend

Definition at line 2146 of file z3++.h.

2146{ return a ^ a.ctx().num_val(b, a.get_sort()); }

◆ operator^ [3/3]

expr operator^ ( int a,
expr const & b )
friend

Definition at line 2147 of file z3++.h.

2147{ return b.ctx().num_val(a, b.get_sort()) ^ b; }

◆ operator| [1/3]

expr operator| ( expr const & a,
expr const & b )
friend

Definition at line 2149 of file z3++.h.

2149{ if (a.is_bool()) return a || b; check_context(a, b); Z3_ast r = Z3_mk_bvor(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r); }
Z3_ast Z3_API Z3_mk_bvor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise or.

◆ operator| [2/3]

expr operator| ( expr const & a,
int b )
friend

Definition at line 2150 of file z3++.h.

2150{ return a | a.ctx().num_val(b, a.get_sort()); }

◆ operator| [3/3]

expr operator| ( int a,
expr const & b )
friend

Definition at line 2151 of file z3++.h.

2151{ return b.ctx().num_val(a, b.get_sort()) | b; }

◆ operator|| [1/3]

expr operator|| ( bool a,
expr const & b )
friend

Return an expression representing a or b. The C++ Boolean value a is automatically converted into a Z3 Boolean constant.

Precondition
b.is_bool()

Definition at line 1909 of file z3++.h.

1909{ return b.ctx().bool_val(a) || b; }

◆ operator|| [2/3]

expr operator|| ( expr const & a,
bool b )
friend

Return an expression representing a or b. The C++ Boolean value b is automatically converted into a Z3 Boolean constant.

Precondition
a.is_bool()

Definition at line 1907 of file z3++.h.

1907{ return a || a.ctx().bool_val(b); }

◆ operator|| [3/3]

expr operator|| ( expr const & a,
expr const & b )
friend

Return an expression representing a or b.

Precondition
a.is_bool()
b.is_bool()

Definition at line 1898 of file z3++.h.

1898 {
1899 check_context(a, b);
1900 assert(a.is_bool() && b.is_bool());
1901 Z3_ast args[2] = { a, b };
1902 Z3_ast r = Z3_mk_or(a.ctx(), 2, args);
1903 a.check_error();
1904 return expr(a.ctx(), r);
1905 }

◆ operator~

expr operator~ ( expr const & a)
friend

Definition at line 2234 of file z3++.h.

2234{ Z3_ast r = Z3_mk_bvnot(a.ctx(), a); return expr(a.ctx(), r); }
Z3_ast Z3_API Z3_mk_bvnot(Z3_context c, Z3_ast t1)
Bitwise negation.

◆ pbeq

expr pbeq ( expr_vector const & es,
int const * coeffs,
int bound )
friend

Definition at line 2640 of file z3++.h.

2640 {
2641 assert(es.size() > 0);
2642 context& ctx = es[0u].ctx();
2643 array<Z3_ast> _es(es);
2644 Z3_ast r = Z3_mk_pbeq(ctx, _es.size(), _es.ptr(), coeffs, bound);
2645 ctx.check_error();
2646 return expr(ctx, r);
2647 }
Z3_ast Z3_API Z3_mk_pbeq(Z3_context c, unsigned num_args, Z3_ast const args[], int const coeffs[], int k)
Pseudo-Boolean relations.

◆ pbge

expr pbge ( expr_vector const & es,
int const * coeffs,
int bound )
friend

Definition at line 2632 of file z3++.h.

2632 {
2633 assert(es.size() > 0);
2634 context& ctx = es[0u].ctx();
2635 array<Z3_ast> _es(es);
2636 Z3_ast r = Z3_mk_pbge(ctx, _es.size(), _es.ptr(), coeffs, bound);
2637 ctx.check_error();
2638 return expr(ctx, r);
2639 }
Z3_ast Z3_API Z3_mk_pbge(Z3_context c, unsigned num_args, Z3_ast const args[], int const coeffs[], int k)
Pseudo-Boolean relations.

◆ pble

expr pble ( expr_vector const & es,
int const * coeffs,
int bound )
friend

Definition at line 2624 of file z3++.h.

2624 {
2625 assert(es.size() > 0);
2626 context& ctx = es[0u].ctx();
2627 array<Z3_ast> _es(es);
2628 Z3_ast r = Z3_mk_pble(ctx, _es.size(), _es.ptr(), coeffs, bound);
2629 ctx.check_error();
2630 return expr(ctx, r);
2631 }
Z3_ast Z3_API Z3_mk_pble(Z3_context c, unsigned num_args, Z3_ast const args[], int const coeffs[], int k)
Pseudo-Boolean relations.

◆ pw [1/3]

expr pw ( expr const & a,
expr const & b )
friend

Definition at line 1842 of file z3++.h.

1842{ _Z3_MK_BIN_(a, b, Z3_mk_power); }
Z3_ast Z3_API Z3_mk_power(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 ^ arg2.

◆ pw [2/3]

expr pw ( expr const & a,
int b )
friend

Definition at line 1843 of file z3++.h.

1843{ return pw(a, a.ctx().num_val(b, a.get_sort())); }
expr pw(expr const &a, expr const &b)
Definition z3++.h:1842

◆ pw [3/3]

expr pw ( int a,
expr const & b )
friend

Definition at line 1844 of file z3++.h.

1844{ return pw(b.ctx().num_val(a, b.get_sort()), b); }

◆ range

expr range ( expr const & lo,
expr const & hi )
friend

Definition at line 4567 of file z3++.h.

4567 {
4568 check_context(lo, hi);
4569 Z3_ast r = Z3_mk_re_range(lo.ctx(), lo, hi);
4570 lo.check_error();
4571 return expr(lo.ctx(), r);
4572 }
Z3_ast Z3_API Z3_mk_re_range(Z3_context c, Z3_ast lo, Z3_ast hi)
Create the range regular expression over two sequences of length 1.

◆ rem [1/3]

expr rem ( expr const & a,
expr const & b )
friend

Definition at line 1862 of file z3++.h.

1862 {
1863 if (a.is_fpa() && b.is_fpa()) {
1865 } else {
1866 _Z3_MK_BIN_(a, b, Z3_mk_rem);
1867 }
1868 }
Z3_ast Z3_API Z3_mk_fpa_rem(Z3_context c, Z3_ast t1, Z3_ast t2)
Floating-point remainder.
Z3_ast Z3_API Z3_mk_rem(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 rem arg2.

◆ rem [2/3]

expr rem ( expr const & a,
int b )
friend

Definition at line 1869 of file z3++.h.

1869{ return rem(a, a.ctx().num_val(b, a.get_sort())); }
expr rem(expr const &a, expr const &b)
Definition z3++.h:1862

◆ rem [3/3]

expr rem ( int a,
expr const & b )
friend

Definition at line 1870 of file z3++.h.

1870{ return rem(b.ctx().num_val(a, b.get_sort()), b); }

◆ round_fpa_to_closest_integer

expr round_fpa_to_closest_integer ( expr const & t)
friend

Round a floating-point term into its closest integer.

Definition at line 2287 of file z3++.h.

2287 {
2288 assert(t.is_fpa());
2289 Z3_ast r = Z3_mk_fpa_round_to_integral(t.ctx(), t.ctx().fpa_rounding_mode(), t);
2290 t.check_error();
2291 return expr(t.ctx(), r);
2292 }
Z3_ast Z3_API Z3_mk_fpa_round_to_integral(Z3_context c, Z3_ast rm, Z3_ast t)
Floating-point roundToIntegral. Rounds a floating-point number to the closest integer,...

◆ sbv_to_fpa

expr sbv_to_fpa ( expr const & t,
sort s )
friend

Conversion of a signed bit-vector term into a floating-point.

Definition at line 2266 of file z3++.h.

2266 {
2267 assert(t.is_bv());
2268 Z3_ast r = Z3_mk_fpa_to_fp_signed(t.ctx(), t.ctx().fpa_rounding_mode(), t, s);
2269 t.check_error();
2270 return expr(t.ctx(), r);
2271 }
Z3_ast Z3_API Z3_mk_fpa_to_fp_signed(Z3_context c, Z3_ast rm, Z3_ast t, Z3_sort s)
Conversion of a 2's complement signed bit-vector term into a term of FloatingPoint sort.

◆ sqrt

expr sqrt ( expr const & a,
expr const & rm )
friend

Definition at line 2220 of file z3++.h.

2220 {
2221 check_context(a, rm);
2222 assert(a.is_fpa());
2223 Z3_ast r = Z3_mk_fpa_sqrt(a.ctx(), rm, a);
2224 a.check_error();
2225 return expr(a.ctx(), r);
2226 }
Z3_ast Z3_API Z3_mk_fpa_sqrt(Z3_context c, Z3_ast rm, Z3_ast t)
Floating-point square root.

◆ sum

expr sum ( expr_vector const & args)
friend

Definition at line 2664 of file z3++.h.

2664 {
2665 assert(args.size() > 0);
2666 context& ctx = args[0u].ctx();
2667 array<Z3_ast> _args(args);
2668 Z3_ast r = Z3_mk_add(ctx, _args.size(), _args.ptr());
2669 ctx.check_error();
2670 return expr(ctx, r);
2671 }

◆ ubv_to_fpa

expr ubv_to_fpa ( expr const & t,
sort s )
friend

Conversion of an unsigned bit-vector term into a floating-point.

Definition at line 2273 of file z3++.h.

2273 {
2274 assert(t.is_bv());
2275 Z3_ast r = Z3_mk_fpa_to_fp_unsigned(t.ctx(), t.ctx().fpa_rounding_mode(), t, s);
2276 t.check_error();
2277 return expr(t.ctx(), r);
2278 }
Z3_ast Z3_API Z3_mk_fpa_to_fp_unsigned(Z3_context c, Z3_ast rm, Z3_ast t, Z3_sort s)
Conversion of a 2's complement unsigned bit-vector term into a term of FloatingPoint sort.

◆ xnor

expr xnor ( expr const & a,
expr const & b )
friend

Definition at line 2155 of file z3++.h.

2155{ if (a.is_bool()) return !(a ^ b); check_context(a, b); Z3_ast r = Z3_mk_bvxnor(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r); }
Z3_ast Z3_API Z3_mk_bvxnor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise xnor.