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

A Context manages all other Z3 objects, global configuration options, etc. More...

#include <z3++.h>

Public Member Functions

 context ()
 context (config &c)
 context (context &&other) noexcept
context & operator= (context &&other) noexcept
 ~context ()
 operator Z3_context () const
Z3_error_code check_error () const
 Auxiliary method used to check for API usage errors.
void check_parser_error () const
void set_enable_exceptions (bool f)
 The C++ API uses by defaults exceptions on errors. For applications that don't work well with exceptions (there should be only few) you have the ability to turn off exceptions. The tradeoffs are that applications have to be very careful about using check_error() after calls that may result in an erroneous state.
bool enable_exceptions () const
void set (char const *param, char const *value)
 Update global parameter param with string value.
void set (char const *param, bool value)
 Update global parameter param with Boolean value.
void set (char const *param, int value)
 Update global parameter param with Integer value.
void interrupt ()
 Interrupt the current procedure being executed by any object managed by this context. This is a soft interruption: there is no guarantee the object will actually stop.
symbol str_symbol (char const *s)
 Create a Z3 symbol based on the given string.
symbol int_symbol (int n)
 Create a Z3 symbol based on the given integer.
sort bool_sort ()
 Return the Boolean sort.
sort int_sort ()
 Return the integer sort.
sort real_sort ()
 Return the Real sort.
sort bv_sort (unsigned sz)
 Return the Bit-vector sort of size sz. That is, the sort for bit-vectors of size sz.
sort char_sort ()
 Return the sort for Unicode characters.
sort string_sort ()
 Return the sort for Unicode strings.
sort seq_sort (sort &s)
 Return a sequence sort over base sort s.
sort re_sort (sort &seq_sort)
 Return a regular expression sort over sequences seq_sort.
sort finite_set_sort (sort &s)
 Return a finite set sort over element sort s.
sort array_sort (sort d, sort r)
 Return an array sort for arrays from d to r.
sort array_sort (sort_vector const &d, sort r)
sort fpa_sort (unsigned ebits, unsigned sbits)
 Return a floating point sort. ebits is a number of exponent bits, sbits is a number of significand bits,.
template<size_t precision>
sort fpa_sort ()
 Return a FloatingPoint sort with given precision bitwidth (16, 32, 64 or 128).
sort fpa_rounding_mode_sort ()
 Return a RoundingMode sort.
void set_rounding_mode (rounding_mode rm)
 Sets RoundingMode of FloatingPoints.
sort enumeration_sort (char const *name, unsigned n, char const *const *enum_names, func_decl_vector &cs, func_decl_vector &ts)
 Return an enumeration sort: enum_names[0], ..., enum_names[n-1]. cs and ts are output parameters. The method stores in cs the constants corresponding to the enumerated elements, and in ts the predicates for testing if terms of the enumeration sort correspond to an enumeration.
func_decl tuple_sort (char const *name, unsigned n, char const *const *names, sort const *sorts, func_decl_vector &projs)
 Return a tuple constructor. name is the name of the returned constructor, n are the number of arguments, names and sorts are their projected sorts. projs is an output parameter. It contains the set of projection functions.
sort datatype (symbol const &name, constructors const &cs)
 Create a recursive datatype over a single sort. name is the name of the recursive datatype n - the number of constructors of the datatype cs - the n constructors used to define the datatype.
sort datatype (symbol const &name, sort_vector const &params, constructors const &cs)
 Create a parametric recursive datatype. name is the name of the recursive datatype params - the sort parameters of the datatype cs - the n constructors used to define the datatype References to the datatype and mutually recursive datatypes can be created using datatype_sort.
sort_vector datatypes (unsigned n, symbol const *names, constructor_list *const *cons)
 Create a set of mutually recursive datatypes. n - number of recursive datatypes names - array of names of length n cons - array of constructor lists of length n.
sort datatype_sort (symbol const &name)
 a reference to a recursively defined datatype. Expect that it gets defined as a datatype.
sort datatype_sort (symbol const &name, sort_vector const &params)
 a reference to a recursively defined parametric datatype. Expect that it gets defined as a datatype.
sort uninterpreted_sort (char const *name)
 create an uninterpreted sort with the name given by the string or symbol.
sort uninterpreted_sort (symbol const &name)
func_decl function (symbol const &name, unsigned arity, sort const *domain, sort const &range)
func_decl function (char const *name, unsigned arity, sort const *domain, sort const &range)
func_decl function (symbol const &name, sort_vector const &domain, sort const &range)
func_decl function (char const *name, sort_vector const &domain, sort const &range)
func_decl function (char const *name, sort const &domain, sort const &range)
func_decl function (char const *name, sort const &d1, sort const &d2, sort const &range)
func_decl function (char const *name, sort const &d1, sort const &d2, sort const &d3, sort const &range)
func_decl function (char const *name, sort const &d1, sort const &d2, sort const &d3, sort const &d4, sort const &range)
func_decl function (char const *name, sort const &d1, sort const &d2, sort const &d3, sort const &d4, sort const &d5, sort const &range)
func_decl recfun (symbol const &name, unsigned arity, sort const *domain, sort const &range)
func_decl recfun (symbol const &name, const sort_vector &domain, sort const &range)
func_decl recfun (char const *name, sort_vector const &domain, sort const &range)
func_decl recfun (char const *name, unsigned arity, sort const *domain, sort const &range)
func_decl recfun (char const *name, sort const &domain, sort const &range)
func_decl recfun (char const *name, sort const &d1, sort const &d2, sort const &range)
void recdef (func_decl decl, expr_vector const &args, expr const &body)
 add function definition body to declaration decl. decl needs to be declared using context::recfun.
func_decl user_propagate_function (symbol const &name, sort_vector const &domain, sort const &range)
expr constant (symbol const &name, sort const &s)
 create an uninterpreted constant.
expr constant (char const *name, sort const &s)
expr bool_const (char const *name)
 create uninterpreted constants of a given sort.
expr int_const (char const *name)
expr real_const (char const *name)
expr string_const (char const *name)
expr bv_const (char const *name, unsigned sz)
expr fpa_const (char const *name, unsigned ebits, unsigned sbits)
template<size_t precision>
expr fpa_const (char const *name)
expr variable (unsigned index, sort const &s)
 create a de-Bruijn variable.
expr fpa_rounding_mode ()
expr bool_val (bool b)
expr int_val (int n)
expr int_val (unsigned n)
expr int_val (int64_t n)
expr int_val (uint64_t n)
expr int_val (char const *n)
expr real_val (int n)
expr real_val (unsigned n)
expr real_val (int64_t n)
expr real_val (uint64_t n)
expr real_val (int64_t n, int64_t d)
expr real_val (char const *n)
expr bv_val (int n, unsigned sz)
expr bv_val (unsigned n, unsigned sz)
expr bv_val (int64_t n, unsigned sz)
expr bv_val (uint64_t n, unsigned sz)
expr bv_val (char const *n, unsigned sz)
expr bv_val (unsigned n, bool const *bits)
expr fpa_val (double n)
expr fpa_val (float n)
expr fpa_nan (sort const &s)
expr fpa_inf (sort const &s, bool sgn)
expr string_val (char const *s)
expr string_val (char const *s, unsigned n)
expr string_val (std::string const &s)
expr string_val (std::u32string const &s)
expr num_val (int n, sort const &s)
expr_vector parse_string (char const *s)
 parsing
expr_vector parse_file (char const *file)
expr_vector parse_string (char const *s, sort_vector const &sorts, func_decl_vector const &decls)
expr_vector parse_file (char const *s, sort_vector const &sorts, func_decl_vector const &decls)
template<>
sort fpa_sort ()
template<>
sort fpa_sort ()
template<>
sort fpa_sort ()
template<>
sort fpa_sort ()

Friends

class user_propagator_base

Detailed Description

A Context manages all other Z3 objects, global configuration options, etc.

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

Constructor & Destructor Documentation

◆ context() [1/3]

context ( )
inline

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

215{ config c; init(c); }

◆ context() [2/3]

context ( config & c)
inline

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

216{ init(c); }

◆ context() [3/3]

context ( context && other)
inlinenoexcept

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

219 : m_enable_exceptions(other.m_enable_exceptions),
220 m_rounding_mode(other.m_rounding_mode),
221 m_ctx(other.m_ctx) {
222 other.m_ctx = nullptr;
223 }

◆ ~context()

~context ( )
inline

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

235{ if (m_ctx) Z3_del_context(m_ctx); }
void Z3_API Z3_del_context(Z3_context c)
Delete the given logical context.

Member Function Documentation

◆ array_sort() [1/2]

sort array_sort ( sort d,
sort r )
inline

Return an array sort for arrays from d to r.

Example: Given a context c, c.array_sort(c.int_sort(), c.bool_sort()) is an array sort from integer to Boolean.

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

3727{ Z3_sort s = Z3_mk_array_sort(m_ctx, d, r); check_error(); return sort(*this, s); }
Z3_sort Z3_API Z3_mk_array_sort(Z3_context c, Z3_sort domain, Z3_sort range)
Create an array type.

◆ array_sort() [2/2]

sort array_sort ( sort_vector const & d,
sort r )
inline

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

3728 {
3729 array<Z3_sort> dom(d);
3730 Z3_sort s = Z3_mk_array_sort_n(m_ctx, dom.size(), dom.ptr(), r); check_error(); return sort(*this, s);
3731 }
Z3_sort Z3_API Z3_mk_array_sort_n(Z3_context c, unsigned n, Z3_sort const *domain, Z3_sort range)
Create an array type with N arguments.

◆ bool_const()

expr bool_const ( char const * name)
inline

create uninterpreted constants of a given sort.

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

4007{ return constant(name, bool_sort()); }

◆ bool_sort()

sort bool_sort ( )
inline

Return the Boolean sort.

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

3702{ Z3_sort s = Z3_mk_bool_sort(m_ctx); check_error(); return sort(*this, s); }
Z3_sort Z3_API Z3_mk_bool_sort(Z3_context c)
Create the Boolean type.

Referenced by bool_const().

◆ bool_val()

expr bool_val ( bool b)
inline

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

4030{ return b ? expr(*this, Z3_mk_true(m_ctx)) : expr(*this, Z3_mk_false(m_ctx)); }
Z3_ast Z3_API Z3_mk_true(Z3_context c)
Create an AST node representing true.
Z3_ast Z3_API Z3_mk_false(Z3_context c)
Create an AST node representing false.

Referenced by goal::as_expr(), user_propagator_base::conflict(), user_propagator_base::conflict(), expr::implies, expr::implies, expr::operator&&, expr::operator&&, expr::operator||, expr::operator||, and solver::to_smt2().

◆ bv_const()

expr bv_const ( char const * name,
unsigned sz )
inline

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

4011{ return constant(name, bv_sort(sz)); }

◆ bv_sort()

sort bv_sort ( unsigned sz)
inline

Return the Bit-vector sort of size sz. That is, the sort for bit-vectors of size sz.

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

3705{ Z3_sort s = Z3_mk_bv_sort(m_ctx, sz); check_error(); return sort(*this, s); }
Z3_sort Z3_API Z3_mk_bv_sort(Z3_context c, unsigned sz)
Create a bit-vector type of the given size.

Referenced by bv_const(), bv_val(), bv_val(), bv_val(), bv_val(), and bv_val().

◆ bv_val() [1/6]

expr bv_val ( char const * n,
unsigned sz )
inline

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

4049{ sort s = bv_sort(sz); Z3_ast r = Z3_mk_numeral(m_ctx, n, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_numeral(Z3_context c, Z3_string numeral, Z3_sort ty)
Create a numeral of a given sort.

◆ bv_val() [2/6]

expr bv_val ( int n,
unsigned sz )
inline

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

4045{ sort s = bv_sort(sz); Z3_ast r = Z3_mk_int(m_ctx, n, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_int(Z3_context c, int v, Z3_sort ty)
Create a numeral of an int, bit-vector, or finite-domain sort.

◆ bv_val() [3/6]

expr bv_val ( int64_t n,
unsigned sz )
inline

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

4047{ sort s = bv_sort(sz); Z3_ast r = Z3_mk_int64(m_ctx, n, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_int64(Z3_context c, int64_t v, Z3_sort ty)
Create a numeral of a int, bit-vector, or finite-domain sort.

◆ bv_val() [4/6]

expr bv_val ( uint64_t n,
unsigned sz )
inline

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

4048{ sort s = bv_sort(sz); Z3_ast r = Z3_mk_unsigned_int64(m_ctx, n, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_unsigned_int64(Z3_context c, uint64_t v, Z3_sort ty)
Create a numeral of a int, bit-vector, or finite-domain sort.

◆ bv_val() [5/6]

expr bv_val ( unsigned n,
bool const * bits )
inline

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

4050 {
4051 array<bool> _bits(n);
4052 for (unsigned i = 0; i < n; ++i) _bits[i] = bits[i] ? 1 : 0;
4053 Z3_ast r = Z3_mk_bv_numeral(m_ctx, n, _bits.ptr()); check_error(); return expr(*this, r);
4054 }
Z3_ast Z3_API Z3_mk_bv_numeral(Z3_context c, unsigned sz, bool const *bits)
create a bit-vector numeral from a vector of Booleans.

◆ bv_val() [6/6]

expr bv_val ( unsigned n,
unsigned sz )
inline

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

4046{ sort s = bv_sort(sz); Z3_ast r = Z3_mk_unsigned_int(m_ctx, n, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_unsigned_int(Z3_context c, unsigned v, Z3_sort ty)
Create a numeral of a int, bit-vector, or finite-domain sort.

◆ char_sort()

sort char_sort ( )
inline

Return the sort for Unicode characters.

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

3707{ Z3_sort s = Z3_mk_char_sort(m_ctx); check_error(); return sort(*this, s); }
Z3_sort Z3_API Z3_mk_char_sort(Z3_context c)
Create a sort for unicode characters.

◆ check_error()

Z3_error_code check_error ( ) const
inline

Auxiliary method used to check for API usage errors.

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

241 {
243 if (e != Z3_OK && enable_exceptions())
244 Z3_THROW(exception(Z3_get_error_msg(m_ctx, e)));
245 return e;
246 }
Z3_string Z3_API Z3_get_error_msg(Z3_context c, Z3_error_code err)
Return a string describing the given error code.
Z3_error_code
Z3 error codes (See Z3_get_error_code).
Definition z3_api.h:1388
Z3_error_code Z3_API Z3_get_error_code(Z3_context c)
Return the error code for the last API call.
@ Z3_OK
Definition z3_api.h:1389
#define Z3_THROW(x)
Definition z3++.h:134

Referenced by array_sort(), array_sort(), expr::bit2bool(), bool_sort(), bv_sort(), bv_val(), bv_val(), bv_val(), bv_val(), bv_val(), bv_val(), char_sort(), check_parser_error(), expr::concat, constant(), datatype(), datatype(), datatype_sort(), datatype_sort(), enumeration_sort(), expr::ext_rotate_left(), expr::ext_rotate_right(), expr::extract(), finite_set_sort(), z3::foldl(), z3::foldli(), fpa_inf(), fpa_nan(), fpa_rounding_mode_sort(), fpa_sort(), fpa_val(), fpa_val(), function(), function(), function(), function(), function(), function(), function(), int_sort(), int_symbol(), int_val(), int_val(), int_val(), int_val(), int_val(), z3::map(), z3::mapi(), num_val(), func_decl::operator()(), func_decl::operator()(), func_decl::operator()(), func_decl::operator()(), func_decl::operator()(), func_decl::operator()(), func_decl::operator()(), func_decl::operator()(), func_decl::operator()(), parse_file(), parse_file(), parse_string(), parse_string(), z3::re_diff(), z3::re_intersect(), re_sort(), real_sort(), real_val(), real_val(), real_val(), real_val(), real_val(), real_val(), recfun(), recfun(), expr::repeat(), expr::rotate_left(), expr::rotate_right(), seq_sort(), str_symbol(), string_sort(), string_val(), string_val(), string_val(), string_val(), z3::to_expr(), z3::to_func_decl(), z3::to_sort(), tuple_sort(), user_propagate_function(), and variable().

◆ check_parser_error()

void check_parser_error ( ) const
inline

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

248 {
249 check_error();
250 }

Referenced by solver::from_file(), and solver::from_string().

◆ constant() [1/2]

expr constant ( char const * name,
sort const & s )
inline

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

4001{ return constant(str_symbol(name), s); }

◆ constant() [2/2]

expr constant ( symbol const & name,
sort const & s )
inline

create an uninterpreted constant.

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

3996 {
3997 Z3_ast r = Z3_mk_const(m_ctx, name, s);
3998 check_error();
3999 return expr(*this, r);
4000 }
Z3_ast Z3_API Z3_mk_const(Z3_context c, Z3_symbol s, Z3_sort ty)
Declare and create a constant.

Referenced by bool_const(), bv_const(), constant(), fpa_const(), fpa_const(), int_const(), real_const(), and string_const().

◆ datatype() [1/2]

sort datatype ( symbol const & name,
constructors const & cs )
inline

Create a recursive datatype over a single sort. name is the name of the recursive datatype n - the number of constructors of the datatype cs - the n constructors used to define the datatype.

References to the datatype can be created using datatype_sort.

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

3817 {
3818 array<Z3_constructor> _cs(cs.size());
3819 for (unsigned i = 0; i < cs.size(); ++i) _cs[i] = cs[i];
3820 Z3_sort s = Z3_mk_datatype(*this, name, cs.size(), _cs.ptr());
3821 check_error();
3822 return sort(*this, s);
3823 }
Z3_sort Z3_API Z3_mk_datatype(Z3_context c, Z3_symbol name, unsigned num_constructors, Z3_constructor constructors[])
Create datatype, such as lists, trees, records, enumerations or unions of records....

◆ datatype() [2/2]

sort datatype ( symbol const & name,
sort_vector const & params,
constructors const & cs )
inline

Create a parametric recursive datatype. name is the name of the recursive datatype params - the sort parameters of the datatype cs - the n constructors used to define the datatype References to the datatype and mutually recursive datatypes can be created using datatype_sort.

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

3825 {
3826 array<Z3_sort> _params(params);
3827 array<Z3_constructor> _cs(cs.size());
3828 for (unsigned i = 0; i < cs.size(); ++i)
3829 _cs[i] = cs[i];
3830 Z3_sort s = Z3_mk_polymorphic_datatype(*this, name, _params.size(), _params.ptr(), cs.size(), _cs.ptr());
3831 check_error();
3832 return sort(*this, s);
3833 }
Z3_sort Z3_API Z3_mk_polymorphic_datatype(Z3_context c, Z3_symbol name, unsigned num_parameters, Z3_sort parameters[], unsigned num_constructors, Z3_constructor constructors[])
Create a parametric datatype with explicit type parameters.

◆ datatype_sort() [1/2]

sort datatype_sort ( symbol const & name)
inline

a reference to a recursively defined datatype. Expect that it gets defined as a datatype.

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

3851 {
3852 Z3_sort s = Z3_mk_datatype_sort(*this, name, 0, nullptr);
3853 check_error();
3854 return sort(*this, s);
3855 }
Z3_sort Z3_API Z3_mk_datatype_sort(Z3_context c, Z3_symbol name, unsigned num_params, Z3_sort const params[])
create a forward reference to a recursive datatype being declared. The forward reference can be used ...

◆ datatype_sort() [2/2]

sort datatype_sort ( symbol const & name,
sort_vector const & params )
inline

a reference to a recursively defined parametric datatype. Expect that it gets defined as a datatype.

Parameters
namename of the datatype
paramssort parameters

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

3857 {
3858 array<Z3_sort> _params(params);
3859 Z3_sort s = Z3_mk_datatype_sort(*this, name, _params.size(), _params.ptr());
3860 check_error();
3861 return sort(*this, s);
3862 }

◆ datatypes()

sort_vector datatypes ( unsigned n,
symbol const * names,
constructor_list *const * cons )
inline

Create a set of mutually recursive datatypes. n - number of recursive datatypes names - array of names of length n cons - array of constructor lists of length n.

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

3837 {
3838 sort_vector result(*this);
3839 array<Z3_symbol> _names(n);
3840 array<Z3_sort> _sorts(n);
3841 array<Z3_constructor_list> _cons(n);
3842 for (unsigned i = 0; i < n; ++i)
3843 _names[i] = names[i], _cons[i] = *cons[i];
3844 Z3_mk_datatypes(*this, n, _names.ptr(), _sorts.ptr(), _cons.ptr());
3845 for (unsigned i = 0; i < n; ++i)
3846 result.push_back(sort(*this, _sorts[i]));
3847 return result;
3848 }
void Z3_API Z3_mk_datatypes(Z3_context c, unsigned num_sorts, Z3_symbol const sort_names[], Z3_sort sorts[], Z3_constructor_list constructor_lists[])
Create mutually recursive datatypes.
ast_vector_tpl< sort > sort_vector
Definition z3++.h:78

◆ enable_exceptions()

bool enable_exceptions ( ) const
inline

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

261{ return m_enable_exceptions; }

Referenced by check_error().

◆ enumeration_sort()

sort enumeration_sort ( char const * name,
unsigned n,
char const *const * enum_names,
func_decl_vector & cs,
func_decl_vector & ts )
inline

Return an enumeration sort: enum_names[0], ..., enum_names[n-1]. cs and ts are output parameters. The method stores in cs the constants corresponding to the enumerated elements, and in ts the predicates for testing if terms of the enumeration sort correspond to an enumeration.

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

3732 {
3733 array<Z3_symbol> _enum_names(n);
3734 for (unsigned i = 0; i < n; ++i) { _enum_names[i] = Z3_mk_string_symbol(*this, enum_names[i]); }
3735 array<Z3_func_decl> _cs(n);
3736 array<Z3_func_decl> _ts(n);
3737 Z3_symbol _name = Z3_mk_string_symbol(*this, name);
3738 sort s = to_sort(*this, Z3_mk_enumeration_sort(*this, _name, n, _enum_names.ptr(), _cs.ptr(), _ts.ptr()));
3739 check_error();
3740 for (unsigned i = 0; i < n; ++i) { cs.push_back(func_decl(*this, _cs[i])); ts.push_back(func_decl(*this, _ts[i])); }
3741 return s;
3742 }
Z3_sort Z3_API Z3_mk_enumeration_sort(Z3_context c, Z3_symbol name, unsigned n, Z3_symbol const enum_names[], Z3_func_decl enum_consts[], Z3_func_decl enum_testers[])
Create a enumeration sort.
Z3_symbol Z3_API Z3_mk_string_symbol(Z3_context c, Z3_string s)
Create a Z3 symbol using a C string.
sort to_sort(context &c, Z3_sort s)
Definition z3++.h:2247

◆ finite_set_sort()

sort finite_set_sort ( sort & s)
inline

Return a finite set sort over element sort s.

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

3710{ Z3_sort r = Z3_mk_finite_set_sort(m_ctx, s); check_error(); return sort(*this, r); }
Z3_sort Z3_API Z3_mk_finite_set_sort(Z3_context c, Z3_sort elem_sort)
Create a finite set sort.

◆ fpa_const() [1/2]

template<size_t precision>
expr fpa_const ( char const * name)
inline

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

4015{ return constant(name, fpa_sort<precision>()); }

◆ fpa_const() [2/2]

expr fpa_const ( char const * name,
unsigned ebits,
unsigned sbits )
inline

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

4012{ return constant(name, fpa_sort(ebits, sbits)); }

◆ fpa_inf()

expr fpa_inf ( sort const & s,
bool sgn )
inline

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

4059{ Z3_ast r = Z3_mk_fpa_inf(m_ctx, s, sgn); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_fpa_inf(Z3_context c, Z3_sort s, bool negative)
Create a floating-point infinity of sort s.

◆ fpa_nan()

expr fpa_nan ( sort const & s)
inline

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

4058{ Z3_ast r = Z3_mk_fpa_nan(m_ctx, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_fpa_nan(Z3_context c, Z3_sort s)
Create a floating-point NaN of sort s.

◆ fpa_rounding_mode()

expr fpa_rounding_mode ( )
inline

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

4019 {
4020 switch (m_rounding_mode) {
4021 case RNA: return expr(*this, Z3_mk_fpa_rna(m_ctx));
4022 case RNE: return expr(*this, Z3_mk_fpa_rne(m_ctx));
4023 case RTP: return expr(*this, Z3_mk_fpa_rtp(m_ctx));
4024 case RTN: return expr(*this, Z3_mk_fpa_rtn(m_ctx));
4025 case RTZ: return expr(*this, Z3_mk_fpa_rtz(m_ctx));
4026 default: return expr(*this);
4027 }
4028 }
Z3_ast Z3_API Z3_mk_fpa_rna(Z3_context c)
Create a numeral of RoundingMode sort which represents the NearestTiesToAway rounding mode.
Z3_ast Z3_API Z3_mk_fpa_rtn(Z3_context c)
Create a numeral of RoundingMode sort which represents the TowardNegative rounding mode.
Z3_ast Z3_API Z3_mk_fpa_rtp(Z3_context c)
Create a numeral of RoundingMode sort which represents the TowardPositive rounding mode.
Z3_ast Z3_API Z3_mk_fpa_rtz(Z3_context c)
Create a numeral of RoundingMode sort which represents the TowardZero rounding mode.
Z3_ast Z3_API Z3_mk_fpa_rne(Z3_context c)
Create a numeral of RoundingMode sort which represents the NearestTiesToEven rounding mode.
@ RNE
Definition z3++.h:172
@ RNA
Definition z3++.h:171
@ RTZ
Definition z3++.h:175
@ RTN
Definition z3++.h:174
@ RTP
Definition z3++.h:173

Referenced by expr::fpa_to_fpa, expr::fpa_to_sbv, expr::fpa_to_ubv, expr::operator*, expr::operator+, expr::operator-, expr::operator/, expr::round_fpa_to_closest_integer, expr::sbv_to_fpa, and expr::ubv_to_fpa.

◆ fpa_rounding_mode_sort()

sort fpa_rounding_mode_sort ( )
inline

Return a RoundingMode sort.

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

3725{ Z3_sort r = Z3_mk_fpa_rounding_mode_sort(m_ctx); check_error(); return sort(*this, r); }
Z3_sort Z3_API Z3_mk_fpa_rounding_mode_sort(Z3_context c)
Create the RoundingMode sort.

◆ fpa_sort() [1/6]

template<>
sort fpa_sort ( )
inline

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

3723{ return fpa_sort(15, 113); }

Referenced by fpa_sort().

◆ fpa_sort() [2/6]

template<>
sort fpa_sort ( )
inline

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

3720{ return fpa_sort(11, 53); }

Referenced by fpa_sort().

◆ fpa_sort() [3/6]

template<>
sort fpa_sort ( )
inline

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

3717{ return fpa_sort(8, 24); }

Referenced by fpa_sort().

◆ fpa_sort() [4/6]

template<>
sort fpa_sort ( )
inline

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

3714{ return fpa_sort(5, 11); }

Referenced by fpa_sort().

◆ fpa_sort() [5/6]

template<size_t precision>
sort fpa_sort ( )

Return a FloatingPoint sort with given precision bitwidth (16, 32, 64 or 128).

Referenced by fpa_const(), fpa_val(), and fpa_val().

◆ fpa_sort() [6/6]

sort fpa_sort ( unsigned ebits,
unsigned sbits )
inline

Return a floating point sort. ebits is a number of exponent bits, sbits is a number of significand bits,.

Precondition
where ebits must be larger than 1 and sbits must be larger than 2.

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

3711{ Z3_sort s = Z3_mk_fpa_sort(m_ctx, ebits, sbits); check_error(); return sort(*this, s); }
Z3_sort Z3_API Z3_mk_fpa_sort(Z3_context c, unsigned ebits, unsigned sbits)
Create a FloatingPoint sort.

Referenced by fpa_const().

◆ fpa_val() [1/2]

expr fpa_val ( double n)
inline

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

4056{ sort s = fpa_sort<64>(); Z3_ast r = Z3_mk_fpa_numeral_double(m_ctx, n, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_fpa_numeral_double(Z3_context c, double v, Z3_sort ty)
Create a numeral of FloatingPoint sort from a double.

Referenced by z3::operator!=(), z3::operator!=(), z3::operator==(), and z3::operator==().

◆ fpa_val() [2/2]

expr fpa_val ( float n)
inline

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

4057{ sort s = fpa_sort<32>(); Z3_ast r = Z3_mk_fpa_numeral_float(m_ctx, n, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_fpa_numeral_float(Z3_context c, float v, Z3_sort ty)
Create an expression of FloatingPoint sort from three bit-vector expressions.

◆ function() [1/9]

func_decl function ( char const * name,
sort const & d1,
sort const & d2,
sort const & d3,
sort const & d4,
sort const & d5,
sort const & range )
inline

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

3936 {
3937 check_context(d1, range); check_context(d2, range); check_context(d3, range); check_context(d4, range); check_context(d5, range);
3938 Z3_sort args[5] = { d1, d2, d3, d4, d5 };
3939 Z3_func_decl f = Z3_mk_func_decl(m_ctx, str_symbol(name), 5, args, range);
3940 check_error();
3941 return func_decl(*this, f);
3942 }
Z3_func_decl Z3_API Z3_mk_func_decl(Z3_context c, Z3_symbol s, unsigned domain_size, Z3_sort const domain[], Z3_sort range)
Declare a constant or function.
void check_context(object const &a, object const &b)
Definition z3++.h:548

◆ function() [2/9]

func_decl function ( char const * name,
sort const & d1,
sort const & d2,
sort const & d3,
sort const & d4,
sort const & range )
inline

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

3928 {
3929 check_context(d1, range); check_context(d2, range); check_context(d3, range); check_context(d4, range);
3930 Z3_sort args[4] = { d1, d2, d3, d4 };
3931 Z3_func_decl f = Z3_mk_func_decl(m_ctx, str_symbol(name), 4, args, range);
3932 check_error();
3933 return func_decl(*this, f);
3934 }

◆ function() [3/9]

func_decl function ( char const * name,
sort const & d1,
sort const & d2,
sort const & d3,
sort const & range )
inline

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

3920 {
3921 check_context(d1, range); check_context(d2, range); check_context(d3, range);
3922 Z3_sort args[3] = { d1, d2, d3 };
3923 Z3_func_decl f = Z3_mk_func_decl(m_ctx, str_symbol(name), 3, args, range);
3924 check_error();
3925 return func_decl(*this, f);
3926 }

◆ function() [4/9]

func_decl function ( char const * name,
sort const & d1,
sort const & d2,
sort const & range )
inline

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

3912 {
3913 check_context(d1, range); check_context(d2, range);
3914 Z3_sort args[2] = { d1, d2 };
3915 Z3_func_decl f = Z3_mk_func_decl(m_ctx, str_symbol(name), 2, args, range);
3916 check_error();
3917 return func_decl(*this, f);
3918 }

◆ function() [5/9]

func_decl function ( char const * name,
sort const & domain,
sort const & range )
inline

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

3904 {
3905 check_context(domain, range);
3906 Z3_sort args[1] = { domain };
3907 Z3_func_decl f = Z3_mk_func_decl(m_ctx, str_symbol(name), 1, args, range);
3908 check_error();
3909 return func_decl(*this, f);
3910 }

◆ function() [6/9]

func_decl function ( char const * name,
sort_vector const & domain,
sort const & range )
inline

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

3899 {
3900 return function(range.ctx().str_symbol(name), domain, range);
3901 }
symbol str_symbol(char const *s)
Create a Z3 symbol based on the given string.
Definition z3++.h:3699
context & ctx() const
Definition z3++.h:544
func_decl function(symbol const &name, unsigned arity, sort const *domain, sort const &range)
Definition z3++.h:4152
expr range(expr const &lo, expr const &hi)
Definition z3++.h:4436

◆ function() [7/9]

func_decl function ( char const * name,
unsigned arity,
sort const * domain,
sort const & range )
inline

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

3884 {
3885 return function(range.ctx().str_symbol(name), arity, domain, range);
3886 }

◆ function() [8/9]

func_decl function ( symbol const & name,
sort_vector const & domain,
sort const & range )
inline

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

3888 {
3889 array<Z3_sort> args(domain.size());
3890 for (unsigned i = 0; i < domain.size(); ++i) {
3891 check_context(domain[i], range);
3892 args[i] = domain[i];
3893 }
3894 Z3_func_decl f = Z3_mk_func_decl(m_ctx, name, domain.size(), args.ptr(), range);
3895 check_error();
3896 return func_decl(*this, f);
3897 }

◆ function() [9/9]

func_decl function ( symbol const & name,
unsigned arity,
sort const * domain,
sort const & range )
inline

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

3873 {
3874 array<Z3_sort> args(arity);
3875 for (unsigned i = 0; i < arity; ++i) {
3876 check_context(domain[i], range);
3877 args[i] = domain[i];
3878 }
3879 Z3_func_decl f = Z3_mk_func_decl(m_ctx, name, arity, args.ptr(), range);
3880 check_error();
3881 return func_decl(*this, f);
3882 }

Referenced by function(), and function().

◆ int_const()

expr int_const ( char const * name)
inline

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

4008{ return constant(name, int_sort()); }

◆ int_sort()

sort int_sort ( )
inline

Return the integer sort.

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

3703{ Z3_sort s = Z3_mk_int_sort(m_ctx); check_error(); return sort(*this, s); }
Z3_sort Z3_API Z3_mk_int_sort(Z3_context c)
Create the integer type.

Referenced by int_const(), int_val(), int_val(), int_val(), int_val(), and int_val().

◆ int_symbol()

symbol int_symbol ( int n)
inline

Create a Z3 symbol based on the given integer.

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

3700{ Z3_symbol r = Z3_mk_int_symbol(m_ctx, n); check_error(); return symbol(*this, r); }
Z3_symbol Z3_API Z3_mk_int_symbol(Z3_context c, int i)
Create a Z3 symbol using an integer.

◆ int_val() [1/5]

expr int_val ( char const * n)
inline

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

4036{ Z3_ast r = Z3_mk_numeral(m_ctx, n, int_sort()); check_error(); return expr(*this, r); }

◆ int_val() [2/5]

expr int_val ( int n)
inline

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

4032{ Z3_ast r = Z3_mk_int(m_ctx, n, int_sort()); check_error(); return expr(*this, r); }

Referenced by expr::abs.

◆ int_val() [3/5]

expr int_val ( int64_t n)
inline

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

4034{ Z3_ast r = Z3_mk_int64(m_ctx, n, int_sort()); check_error(); return expr(*this, r); }

◆ int_val() [4/5]

expr int_val ( uint64_t n)
inline

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

4035{ Z3_ast r = Z3_mk_unsigned_int64(m_ctx, n, int_sort()); check_error(); return expr(*this, r); }

◆ int_val() [5/5]

expr int_val ( unsigned n)
inline

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

4033{ Z3_ast r = Z3_mk_unsigned_int(m_ctx, n, int_sort()); check_error(); return expr(*this, r); }

◆ interrupt()

void interrupt ( )
inline

Interrupt the current procedure being executed by any object managed by this context. This is a soft interruption: there is no guarantee the object will actually stop.

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

283{ Z3_interrupt(m_ctx); }
void Z3_API Z3_interrupt(Z3_context c)
Interrupt the execution of a Z3 procedure. This procedure can be used to interrupt: solvers,...

◆ num_val()

◆ operator Z3_context()

operator Z3_context ( ) const
inline

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

236{ return m_ctx; }

◆ operator=()

context & operator= ( context && other)
inlinenoexcept

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

225 {
226 if (this != &other) {
227 if (m_ctx) Z3_del_context(m_ctx);
228 m_enable_exceptions = other.m_enable_exceptions;
229 m_rounding_mode = other.m_rounding_mode;
230 m_ctx = other.m_ctx;
231 other.m_ctx = nullptr;
232 }
233 return *this;
234 }

◆ parse_file() [1/2]

expr_vector parse_file ( char const * file)
inline

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

4453 {
4454 Z3_ast_vector r = Z3_parse_smtlib2_file(*this, s, 0, 0, 0, 0, 0, 0);
4455 check_error();
4456 return expr_vector(*this, r);
4457 }
Z3_ast_vector Z3_API Z3_parse_smtlib2_file(Z3_context c, Z3_string file_name, unsigned num_sorts, Z3_symbol const sort_names[], Z3_sort const sorts[], unsigned num_decls, Z3_symbol const decl_names[], Z3_func_decl const decls[])
Similar to Z3_parse_smtlib2_string, but reads the benchmark from a file.
ast_vector_tpl< expr > expr_vector
Definition z3++.h:77

◆ parse_file() [2/2]

expr_vector parse_file ( char const * s,
sort_vector const & sorts,
func_decl_vector const & decls )
inline

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

4476 {
4477 array<Z3_symbol> sort_names(sorts.size());
4478 array<Z3_symbol> decl_names(decls.size());
4479 array<Z3_sort> sorts1(sorts);
4480 array<Z3_func_decl> decls1(decls);
4481 for (unsigned i = 0; i < sorts.size(); ++i) {
4482 sort_names[i] = sorts[i].name();
4483 }
4484 for (unsigned i = 0; i < decls.size(); ++i) {
4485 decl_names[i] = decls[i].name();
4486 }
4487 Z3_ast_vector r = Z3_parse_smtlib2_file(*this, s, sorts.size(), sort_names.ptr(), sorts1.ptr(), decls.size(), decl_names.ptr(), decls1.ptr());
4488 check_error();
4489 return expr_vector(*this, r);
4490 }

◆ parse_string() [1/2]

expr_vector parse_string ( char const * s)
inline

parsing

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

4447 {
4448 Z3_ast_vector r = Z3_parse_smtlib2_string(*this, s, 0, 0, 0, 0, 0, 0);
4449 check_error();
4450 return expr_vector(*this, r);
4451
4452 }
Z3_ast_vector Z3_API Z3_parse_smtlib2_string(Z3_context c, Z3_string str, unsigned num_sorts, Z3_symbol const sort_names[], Z3_sort const sorts[], unsigned num_decls, Z3_symbol const decl_names[], Z3_func_decl const decls[])
Parse the given string using the SMT-LIB2 parser.

◆ parse_string() [2/2]

expr_vector parse_string ( char const * s,
sort_vector const & sorts,
func_decl_vector const & decls )
inline

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

4459 {
4460 array<Z3_symbol> sort_names(sorts.size());
4461 array<Z3_symbol> decl_names(decls.size());
4462 array<Z3_sort> sorts1(sorts);
4463 array<Z3_func_decl> decls1(decls);
4464 for (unsigned i = 0; i < sorts.size(); ++i) {
4465 sort_names[i] = sorts[i].name();
4466 }
4467 for (unsigned i = 0; i < decls.size(); ++i) {
4468 decl_names[i] = decls[i].name();
4469 }
4470
4471 Z3_ast_vector r = Z3_parse_smtlib2_string(*this, s, sorts.size(), sort_names.ptr(), sorts1.ptr(), decls.size(), decl_names.ptr(), decls1.ptr());
4472 check_error();
4473 return expr_vector(*this, r);
4474 }

◆ re_sort()

sort re_sort ( sort & seq_sort)
inline

Return a regular expression sort over sequences seq_sort.

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

3709{ Z3_sort r = Z3_mk_re_sort(m_ctx, s); check_error(); return sort(*this, r); }
Z3_sort Z3_API Z3_mk_re_sort(Z3_context c, Z3_sort seq)
Create a regular expression sort out of a sequence sort.

◆ real_const()

expr real_const ( char const * name)
inline

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

4009{ return constant(name, real_sort()); }

◆ real_sort()

sort real_sort ( )
inline

Return the Real sort.

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

3704{ Z3_sort s = Z3_mk_real_sort(m_ctx); check_error(); return sort(*this, s); }
Z3_sort Z3_API Z3_mk_real_sort(Z3_context c)
Create the real type.

Referenced by real_const(), real_val(), real_val(), real_val(), real_val(), and real_val().

◆ real_val() [1/6]

expr real_val ( char const * n)
inline

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

4043{ Z3_ast r = Z3_mk_numeral(m_ctx, n, real_sort()); check_error(); return expr(*this, r); }

◆ real_val() [2/6]

expr real_val ( int n)
inline

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

4039{ Z3_ast r = Z3_mk_int(m_ctx, n, real_sort()); check_error(); return expr(*this, r); }

Referenced by expr::abs.

◆ real_val() [3/6]

expr real_val ( int64_t n)
inline

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

4041{ Z3_ast r = Z3_mk_int64(m_ctx, n, real_sort()); check_error(); return expr(*this, r); }

◆ real_val() [4/6]

expr real_val ( int64_t n,
int64_t d )
inline

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

4038{ Z3_ast r = Z3_mk_real_int64(m_ctx, n, d); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_real_int64(Z3_context c, int64_t num, int64_t den)
Create a real from a fraction of int64.

◆ real_val() [5/6]

expr real_val ( uint64_t n)
inline

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

4042{ Z3_ast r = Z3_mk_unsigned_int64(m_ctx, n, real_sort()); check_error(); return expr(*this, r); }

◆ real_val() [6/6]

expr real_val ( unsigned n)
inline

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

4040{ Z3_ast r = Z3_mk_unsigned_int(m_ctx, n, real_sort()); check_error(); return expr(*this, r); }

◆ recdef()

void recdef ( func_decl decl,
expr_vector const & args,
expr const & body )
inline

add function definition body to declaration decl. decl needs to be declared using context::recfun.

Parameters
decl
args
body

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

3982 {
3983 check_context(f, args); check_context(f, body);
3984 array<Z3_ast> vars(args);
3985 Z3_add_rec_def(f.ctx(), f, vars.size(), vars.ptr(), body);
3986 }
void Z3_API Z3_add_rec_def(Z3_context c, Z3_func_decl f, unsigned n, Z3_ast args[], Z3_ast body)
Define the body of a recursive function.

◆ recfun() [1/6]

func_decl recfun ( char const * name,
sort const & d1,
sort const & d2,
sort const & range )
inline

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

3977 {
3978 sort dom[2] = { d1, d2 };
3979 return recfun(str_symbol(name), 2, dom, range);
3980 }
func_decl recfun(symbol const &name, unsigned arity, sort const *domain, sort const &range)
Definition z3++.h:4180

◆ recfun() [2/6]

func_decl recfun ( char const * name,
sort const & domain,
sort const & range )
inline

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

3973 {
3974 return recfun(str_symbol(name), 1, &d1, range);
3975 }

◆ recfun() [3/6]

func_decl recfun ( char const * name,
sort_vector const & domain,
sort const & range )
inline

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

3964 {
3965 return recfun(str_symbol(name), domain, range);
3966
3967 }

◆ recfun() [4/6]

func_decl recfun ( char const * name,
unsigned arity,
sort const * domain,
sort const & range )
inline

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

3969 {
3970 return recfun(str_symbol(name), arity, domain, range);
3971 }

◆ recfun() [5/6]

func_decl recfun ( symbol const & name,
const sort_vector & domain,
sort const & range )
inline

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

3956 {
3957 check_context(domain, range);
3958 array<Z3_sort> domain1(domain);
3959 Z3_func_decl f = Z3_mk_rec_func_decl(m_ctx, name, domain1.size(), domain1.ptr(), range);
3960 check_error();
3961 return func_decl(*this, f);
3962 }
Z3_func_decl Z3_API Z3_mk_rec_func_decl(Z3_context c, Z3_symbol s, unsigned domain_size, Z3_sort const domain[], Z3_sort range)
Declare a recursive function.

◆ recfun() [6/6]

func_decl recfun ( symbol const & name,
unsigned arity,
sort const * domain,
sort const & range )
inline

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

3944 {
3945 array<Z3_sort> args(arity);
3946 for (unsigned i = 0; i < arity; ++i) {
3947 check_context(domain[i], range);
3948 args[i] = domain[i];
3949 }
3950 Z3_func_decl f = Z3_mk_rec_func_decl(m_ctx, name, arity, args.ptr(), range);
3951 check_error();
3952 return func_decl(*this, f);
3953
3954 }

Referenced by recfun(), recfun(), recfun(), and recfun().

◆ seq_sort()

sort seq_sort ( sort & s)
inline

Return a sequence sort over base sort s.

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

3708{ Z3_sort r = Z3_mk_seq_sort(m_ctx, s); check_error(); return sort(*this, r); }
Z3_sort Z3_API Z3_mk_seq_sort(Z3_context c, Z3_sort s)
Create a sequence sort out of the sort for the elements.

◆ set() [1/3]

void set ( char const * param,
bool value )
inline

Update global parameter param with Boolean value.

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

270{ Z3_update_param_value(m_ctx, param, value ? "true" : "false"); }
void Z3_API Z3_update_param_value(Z3_context c, Z3_string param_id, Z3_string param_value)
Set a value of a context parameter.

◆ set() [2/3]

void set ( char const * param,
char const * value )
inline

Update global parameter param with string value.

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

266{ Z3_update_param_value(m_ctx, param, value); }

◆ set() [3/3]

void set ( char const * param,
int value )
inline

Update global parameter param with Integer value.

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

274 {
275 auto str = std::to_string(value);
276 Z3_update_param_value(m_ctx, param, str.c_str());
277 }

◆ set_enable_exceptions()

void set_enable_exceptions ( bool f)
inline

The C++ API uses by defaults exceptions on errors. For applications that don't work well with exceptions (there should be only few) you have the ability to turn off exceptions. The tradeoffs are that applications have to be very careful about using check_error() after calls that may result in an erroneous state.

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

259{ m_enable_exceptions = f; }

◆ set_rounding_mode()

void set_rounding_mode ( rounding_mode rm)
inline

Sets RoundingMode of FloatingPoints.

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

4017{ m_rounding_mode = rm; }

◆ str_symbol()

symbol str_symbol ( char const * s)
inline

Create a Z3 symbol based on the given string.

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

3699{ Z3_symbol r = Z3_mk_string_symbol(m_ctx, s); check_error(); return symbol(*this, r); }

Referenced by constant(), function(), function(), function(), function(), function(), recfun(), recfun(), recfun(), recfun(), and solver::solver().

◆ string_const()

expr string_const ( char const * name)
inline

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

4010{ return constant(name, string_sort()); }

◆ string_sort()

sort string_sort ( )
inline

Return the sort for Unicode strings.

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

3706{ Z3_sort s = Z3_mk_string_sort(m_ctx); check_error(); return sort(*this, s); }
Z3_sort Z3_API Z3_mk_string_sort(Z3_context c)
Create a sort for unicode strings.

Referenced by string_const().

◆ string_val() [1/4]

expr string_val ( char const * s)
inline

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

4062{ Z3_ast r = Z3_mk_string(m_ctx, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_string(Z3_context c, Z3_string s)
Create a string constant out of the string that is passed in The string may contain escape encoding f...

◆ string_val() [2/4]

expr string_val ( char const * s,
unsigned n )
inline

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

4061{ Z3_ast r = Z3_mk_lstring(m_ctx, n, s); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_lstring(Z3_context c, unsigned len, Z3_string s)
Create a string constant out of the string that is passed in It takes the length of the string as wel...

◆ string_val() [3/4]

expr string_val ( std::string const & s)
inline

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

4063{ Z3_ast r = Z3_mk_string(m_ctx, s.c_str()); check_error(); return expr(*this, r); }

◆ string_val() [4/4]

expr string_val ( std::u32string const & s)
inline

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

4064{ Z3_ast r = Z3_mk_u32string(m_ctx, (unsigned)s.size(), (unsigned const*)s.c_str()); check_error(); return expr(*this, r); }
Z3_ast Z3_API Z3_mk_u32string(Z3_context c, unsigned len, unsigned const chars[])
Create a string constant out of the string that is passed in It takes the length of the string as wel...

◆ tuple_sort()

func_decl tuple_sort ( char const * name,
unsigned n,
char const *const * names,
sort const * sorts,
func_decl_vector & projs )
inline

Return a tuple constructor. name is the name of the returned constructor, n are the number of arguments, names and sorts are their projected sorts. projs is an output parameter. It contains the set of projection functions.

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

3743 {
3744 array<Z3_symbol> _names(n);
3745 array<Z3_sort> _sorts(n);
3746 for (unsigned i = 0; i < n; ++i) { _names[i] = Z3_mk_string_symbol(*this, names[i]); _sorts[i] = sorts[i]; }
3747 array<Z3_func_decl> _projs(n);
3748 Z3_symbol _name = Z3_mk_string_symbol(*this, name);
3749 Z3_func_decl tuple;
3750 sort _ignore_s = to_sort(*this, Z3_mk_tuple_sort(*this, _name, n, _names.ptr(), _sorts.ptr(), &tuple, _projs.ptr()));
3751 check_error();
3752 for (unsigned i = 0; i < n; ++i) { projs.push_back(func_decl(*this, _projs[i])); }
3753 return func_decl(*this, tuple);
3754 }
Z3_sort Z3_API Z3_mk_tuple_sort(Z3_context c, Z3_symbol mk_tuple_name, unsigned num_fields, Z3_symbol const field_names[], Z3_sort const field_sorts[], Z3_func_decl *mk_tuple_decl, Z3_func_decl proj_decl[])
Create a tuple type.

◆ uninterpreted_sort() [1/2]

sort uninterpreted_sort ( char const * name)
inline

create an uninterpreted sort with the name given by the string or symbol.

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

3865 {
3866 Z3_symbol _name = Z3_mk_string_symbol(*this, name);
3867 return to_sort(*this, Z3_mk_uninterpreted_sort(*this, _name));
3868 }
Z3_sort Z3_API Z3_mk_uninterpreted_sort(Z3_context c, Z3_symbol s)
Create a free (uninterpreted) type using the given name (symbol).

◆ uninterpreted_sort() [2/2]

sort uninterpreted_sort ( symbol const & name)
inline

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

3869 {
3870 return to_sort(*this, Z3_mk_uninterpreted_sort(*this, name));
3871 }

◆ user_propagate_function()

func_decl user_propagate_function ( symbol const & name,
sort_vector const & domain,
sort const & range )
inline

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

3988 {
3989 check_context(domain, range);
3990 array<Z3_sort> domain1(domain);
3991 Z3_func_decl f = Z3_solver_propagate_declare(range.ctx(), name, domain1.size(), domain1.ptr(), range);
3992 check_error();
3993 return func_decl(*this, f);
3994 }
Z3_func_decl Z3_API Z3_solver_propagate_declare(Z3_context c, Z3_symbol name, unsigned n, Z3_sort *domain, Z3_sort range)

◆ variable()

expr variable ( unsigned index,
sort const & s )
inline

create a de-Bruijn variable.

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

4002 {
4003 Z3_ast r = Z3_mk_bound(m_ctx, idx, s);
4004 check_error();
4005 return expr(*this, r);
4006 }
Z3_ast Z3_API Z3_mk_bound(Z3_context c, unsigned index, Z3_sort ty)
Create a variable.

◆ user_propagator_base

friend class user_propagator_base
friend

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

Referenced by user_propagator_base.