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 | 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 ¶ms, 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 ¶ms) |
| 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 |
A Context manages all other Z3 objects, global configuration options, etc.
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 3682 of file z3++.h.
|
inline |
Definition at line 3683 of file z3++.h.
create uninterpreted constants of a given sort.
Definition at line 3962 of file z3++.h.
|
inline |
Return the Boolean sort.
Definition at line 3658 of file z3++.h.
Referenced by context::bool_const().
|
inline |
Definition at line 3985 of file z3++.h.
Referenced by goal::as_expr(), user_propagator_base::conflict(), user_propagator_base::conflict(), and solver::to_smt2().
Definition at line 3966 of file z3++.h.
|
inline |
Return the Bit-vector sort of size sz. That is, the sort for bit-vectors of size sz.
Definition at line 3661 of file z3++.h.
Referenced by context::bv_const(), context::bv_val(), context::bv_val(), context::bv_val(), context::bv_val(), and context::bv_val().
Definition at line 4004 of file z3++.h.
|
inline |
Definition at line 4002 of file z3++.h.
Definition at line 4003 of file z3++.h.
|
inline |
Definition at line 4001 of file z3++.h.
|
inline |
|
inline |
Auxiliary method used to check for API usage errors.
Definition at line 241 of file z3++.h.
Referenced by context::array_sort(), context::array_sort(), expr::bit2bool(), context::bool_sort(), context::bv_sort(), context::bv_val(), context::bv_val(), context::bv_val(), context::bv_val(), context::bv_val(), context::bv_val(), context::char_sort(), object::check_error(), context::check_parser_error(), context::constant(), context::datatype(), context::datatype(), context::datatype_sort(), context::datatype_sort(), context::enumeration_sort(), expr::extract(), z3::foldl(), z3::foldli(), context::fpa_inf(), context::fpa_nan(), context::fpa_rounding_mode_sort(), context::fpa_sort(), context::fpa_val(), context::fpa_val(), context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), context::int_sort(), context::int_symbol(), context::int_val(), context::int_val(), context::int_val(), context::int_val(), context::int_val(), z3::map(), z3::mapi(), context::num_val(), on_clause::on_clause(), 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()(), context::parse_file(), context::parse_file(), context::parse_string(), context::parse_string(), z3::re_diff(), z3::re_intersect(), context::re_sort(), context::real_sort(), context::real_val(), context::real_val(), context::real_val(), context::real_val(), context::real_val(), context::real_val(), context::recfun(), context::recfun(), expr::repeat(), expr::rotate_left(), expr::rotate_right(), context::seq_sort(), context::str_symbol(), context::string_sort(), context::string_val(), context::string_val(), context::string_val(), context::string_val(), z3::to_expr(), z3::to_func_decl(), z3::to_sort(), context::tuple_sort(), context::user_propagate_function(), and context::variable().
|
inline |
Definition at line 248 of file z3++.h.
Referenced by solver::from_file(), and solver::from_string().
Definition at line 3956 of file z3++.h.
create an uninterpreted constant.
Definition at line 3951 of file z3++.h.
Referenced by context::bool_const(), context::bv_const(), context::constant(), context::fpa_const(), context::fpa_const(), context::int_const(), context::real_const(), and context::string_const().
|
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 3772 of file z3++.h.
|
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 3780 of file z3++.h.
a reference to a recursively defined datatype. Expect that it gets defined as a datatype.
Definition at line 3806 of file z3++.h.
|
inline |
a reference to a recursively defined parametric datatype. Expect that it gets defined as a datatype.
| name | name of the datatype |
| params | sort parameters |
|
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 3790 of file z3++.h.
|
inline |
Definition at line 261 of file z3++.h.
Referenced by context::check_error().
|
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 3687 of file z3++.h.
|
inline |
Definition at line 3974 of file z3++.h.
|
inline |
Return a FloatingPoint sort with given precision bitwidth (16, 32, 64 or 128).
Referenced by context::fpa_const().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Return a floating point sort. ebits is a number of exponent bits, sbits is a number of significand bits,.
Definition at line 3666 of file z3++.h.
|
inline |
Definition at line 4011 of file z3++.h.
Definition at line 4012 of file z3++.h.
|
inline |
Definition at line 3891 of file z3++.h.
|
inline |
Definition at line 3883 of file z3++.h.
|
inline |
Definition at line 3875 of file z3++.h.
|
inline |
Definition at line 3867 of file z3++.h.
Definition at line 3859 of file z3++.h.
Definition at line 3854 of file z3++.h.
Definition at line 3843 of file z3++.h.
|
inline |
Definition at line 3828 of file z3++.h.
Referenced by z3::function(), z3::function(), z3::function(), z3::function(), z3::function(), context::function(), z3::function(), context::function(), z3::function(), z3::function(), and z3::function().
|
inline |
Return the integer sort.
Definition at line 3659 of file z3++.h.
Referenced by context::int_const(), context::int_val(), context::int_val(), context::int_val(), context::int_val(), and context::int_val().
|
inline |
|
inline |
Definition at line 3990 of file z3++.h.
|
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.
Definition at line 4021 of file z3++.h.
Referenced by func_decl::operator()(), func_decl::operator()(), and func_decl::operator()().
|
inline |
Definition at line 4360 of file z3++.h.
|
inline |
Definition at line 4383 of file z3++.h.
|
inline |
parsing
Definition at line 4354 of file z3++.h.
|
inline |
Definition at line 4366 of file z3++.h.
|
inline |
Return the Real sort.
Definition at line 3660 of file z3++.h.
Referenced by context::real_const(), context::real_val(), context::real_val(), context::real_val(), context::real_val(), and context::real_val().
|
inline |
Definition at line 3997 of file z3++.h.
add function definition body to declaration decl. decl needs to be declared using context::recfun.
| decl | |
| args | |
| body |
Definition at line 3937 of file z3++.h.
Definition at line 3932 of file z3++.h.
|
inline |
Definition at line 3911 of file z3++.h.
|
inline |
Definition at line 3899 of file z3++.h.
Referenced by context::recfun(), z3::recfun(), z3::recfun(), context::recfun(), context::recfun(), context::recfun(), z3::recfun(), and z3::recfun().
Update global parameter param with string value.
Definition at line 266 of file z3++.h.
Update global parameter param with Integer value.
Definition at line 274 of file z3++.h.
|
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.
|
inline |
Create a Z3 symbol based on the given string.
Definition at line 3655 of file z3++.h.
Referenced by context::constant(), context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), context::recfun(), context::recfun(), context::recfun(), context::recfun(), and solver::solver().
Definition at line 3965 of file z3++.h.
|
inline |
Return the sort for Unicode strings.
Definition at line 3662 of file z3++.h.
Referenced by context::string_const().
Definition at line 4019 of file z3++.h.
|
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 3698 of file z3++.h.
|
inline |
Definition at line 3943 of file z3++.h.
create a de-Bruijn variable.
|
friend |