Z3 C++ namespace. More...
Data Structures | |
| class | cast_ast |
| class | ast_vector_tpl |
| class | exception |
| Exception used to sign API usage errors. More... | |
| class | config |
| Z3 global configuration object. More... | |
| class | context |
| A Context manages all other Z3 objects, global configuration options, etc. More... | |
| class | array |
| class | object |
| class | symbol |
| class | param_descrs |
| class | params |
| class | ast |
| class | sort |
| A Z3 sort (aka type). Every expression (i.e., formula or term) in Z3 has a sort. More... | |
| class | func_decl |
| Function declaration (aka function definition). It is the signature of interpreted and uninterpreted functions in Z3. The basic building block in Z3 is the function application. More... | |
| class | expr |
| 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... | |
| class | cast_ast< ast > |
| class | cast_ast< expr > |
| class | cast_ast< sort > |
| class | cast_ast< func_decl > |
| class | func_entry |
| class | func_interp |
| class | model |
| class | stats |
| class | parameter |
| class for auxiliary parameters associated with func_decl The class is initialized with a func_decl or application expression and an index The accessor get_expr, get_sort, ... is available depending on the value of kind(). The caller is responsible to check that the kind of the parameter aligns with the call (get_expr etc). More... | |
| class | solver |
| class | goal |
| class | apply_result |
| class | tactic |
| class | simplifier |
| class | probe |
| class | optimize |
| class | fixedpoint |
| class | constructor_list |
| class | constructors |
| class | on_clause |
| class | user_propagator_base |
| class | rcf_num |
| Wrapper for Z3 Real Closed Field (RCF) numerals. More... | |
Typedefs | |
| typedef ast_vector_tpl< ast > | ast_vector |
| typedef ast_vector_tpl< expr > | expr_vector |
| typedef ast_vector_tpl< sort > | sort_vector |
| typedef ast_vector_tpl< func_decl > | func_decl_vector |
| typedef std::function< void(expr const &proof, std::vector< unsigned > const &deps, expr_vector const &clause)> | on_clause_eh_t |
Enumerations | |
| enum | check_result { unsat , sat , unknown } |
| enum | rounding_mode { RNA , RNE , RTP , RTN , RTZ } |
Functions | |
| void | set_param (char const *param, char const *value) |
| void | set_param (char const *param, bool value) |
| void | set_param (char const *param, int value) |
| void | reset_params () |
| void | get_version (unsigned &major, unsigned &minor, unsigned &build_number, unsigned &revision_number) |
| Return Z3 version number information. | |
| std::string | get_full_version () |
| Return a string that fully describes the version of Z3 in use. | |
| void | enable_trace (char const *tag) |
Enable tracing messages tagged as tag when Z3 is compiled in debug mode. It is a NOOP otherwise. | |
| void | disable_trace (char const *tag) |
Disable tracing messages tagged as tag when Z3 is compiled in debug mode. It is a NOOP otherwise. | |
| std::ostream & | operator<< (std::ostream &out, exception const &e) |
| check_result | to_check_result (Z3_lbool l) |
| void | check_context (object const &a, object const &b) |
| std::ostream & | operator<< (std::ostream &out, symbol const &s) |
| std::ostream & | operator<< (std::ostream &out, param_descrs const &d) |
| std::ostream & | operator<< (std::ostream &out, params const &p) |
| std::ostream & | operator<< (std::ostream &out, ast const &n) |
| bool | eq (ast const &a, ast const &b) |
| expr | select (expr const &a, expr const &i) |
| forward declarations | |
| expr | select (expr const &a, expr_vector const &i) |
| expr | implies (expr const &a, expr const &b) |
| expr | implies (expr const &a, bool b) |
| expr | implies (bool 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 | operator% (expr const &a, expr const &b) |
| expr | operator% (expr const &a, int b) |
| expr | operator% (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 | operator! (expr const &a) |
| expr | is_int (expr const &e) |
| expr | operator&& (expr const &a, expr const &b) |
| expr | operator&& (expr const &a, bool b) |
| expr | operator&& (bool a, expr const &b) |
| expr | operator|| (expr const &a, expr const &b) |
| expr | operator|| (expr const &a, bool b) |
| expr | operator|| (bool 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, double b) |
| expr | operator== (double 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, double b) |
| expr | operator!= (double 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, 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, 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 | 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 | 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) |
| expr | fpa_fp (expr const &sgn, expr const &exp, expr const &sig) |
| expr | fpa_to_sbv (expr const &t, unsigned sz) |
| expr | fpa_to_ubv (expr const &t, unsigned sz) |
| expr | sbv_to_fpa (expr const &t, sort s) |
| expr | ubv_to_fpa (expr const &t, sort s) |
| expr | fpa_to_fpa (expr const &t, sort s) |
| expr | round_fpa_to_closest_integer (expr const &t) |
| expr | ite (expr const &c, expr const &t, expr const &e) |
| Create the if-then-else expression ite(c, t, e). | |
| expr | to_expr (context &c, Z3_ast a) |
| Wraps a Z3_ast as an expr object. It also checks for errors. This function allows the user to use the whole C API with the C++ layer defined in this file. | |
| sort | to_sort (context &c, Z3_sort s) |
| func_decl | to_func_decl (context &c, Z3_func_decl f) |
| expr | sle (expr const &a, expr const &b) |
| signed less than or equal to operator for bitvectors. | |
| expr | sle (expr const &a, int b) |
| expr | sle (int a, expr const &b) |
| expr | slt (expr const &a, expr const &b) |
| signed less than operator for bitvectors. | |
| expr | slt (expr const &a, int b) |
| expr | slt (int a, expr const &b) |
| expr | sge (expr const &a, expr const &b) |
| signed greater than or equal to operator for bitvectors. | |
| expr | sge (expr const &a, int b) |
| expr | sge (int a, expr const &b) |
| expr | sgt (expr const &a, expr const &b) |
| signed greater than operator for bitvectors. | |
| expr | sgt (expr const &a, int b) |
| expr | sgt (int a, expr const &b) |
| expr | ule (expr const &a, expr const &b) |
| unsigned less than or equal to operator for bitvectors. | |
| expr | ule (expr const &a, int b) |
| expr | ule (int a, expr const &b) |
| expr | ult (expr const &a, expr const &b) |
| unsigned less than operator for bitvectors. | |
| expr | ult (expr const &a, int b) |
| expr | ult (int a, expr const &b) |
| expr | uge (expr const &a, expr const &b) |
| unsigned greater than or equal to operator for bitvectors. | |
| expr | uge (expr const &a, int b) |
| expr | uge (int a, expr const &b) |
| expr | ugt (expr const &a, expr const &b) |
| unsigned greater than operator for bitvectors. | |
| expr | ugt (expr const &a, int b) |
| expr | ugt (int a, expr const &b) |
| expr | sdiv (expr const &a, expr const &b) |
| signed division operator for bitvectors. | |
| expr | sdiv (expr const &a, int b) |
| expr | sdiv (int a, expr const &b) |
| expr | udiv (expr const &a, expr const &b) |
| unsigned division operator for bitvectors. | |
| expr | udiv (expr const &a, int b) |
| expr | udiv (int a, expr const &b) |
| expr | srem (expr const &a, expr const &b) |
| signed remainder operator for bitvectors | |
| expr | srem (expr const &a, int b) |
| expr | srem (int a, expr const &b) |
| expr | smod (expr const &a, expr const &b) |
| signed modulus operator for bitvectors | |
| expr | smod (expr const &a, int b) |
| expr | smod (int a, expr const &b) |
| expr | urem (expr const &a, expr const &b) |
| unsigned reminder operator for bitvectors | |
| expr | urem (expr const &a, int b) |
| expr | urem (int a, expr const &b) |
| expr | shl (expr const &a, expr const &b) |
| shift left operator for bitvectors | |
| expr | shl (expr const &a, int b) |
| expr | shl (int a, expr const &b) |
| expr | lshr (expr const &a, expr const &b) |
| logic shift right operator for bitvectors | |
| expr | lshr (expr const &a, int b) |
| expr | lshr (int a, expr const &b) |
| expr | ashr (expr const &a, expr const &b) |
| arithmetic shift right operator for bitvectors | |
| expr | ashr (expr const &a, int b) |
| expr | ashr (int a, expr const &b) |
| expr | zext (expr const &a, unsigned i) |
| Extend the given bit-vector with zeros to the (unsigned) equivalent bitvector of size m+i, where m is the size of the given bit-vector. | |
| 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 | sext (expr const &a, unsigned i) |
| Sign-extend of the given bit-vector to the (signed) equivalent bitvector of size m+i, where m is the size of the given bit-vector. | |
| func_decl | linear_order (sort const &a, unsigned index) |
| func_decl | partial_order (sort const &a, unsigned index) |
| func_decl | piecewise_linear_order (sort const &a, unsigned index) |
| func_decl | tree_order (sort const &a, unsigned index) |
| expr_vector | polynomial_subresultants (expr const &p, expr const &q, expr const &x) |
| Return the nonzero subresultants of p and q with respect to the "variable" x. | |
| expr | forall (expr const &x, expr const &b) |
| expr | forall (expr const &x1, expr const &x2, expr const &b) |
| expr | forall (expr const &x1, expr const &x2, expr const &x3, expr const &b) |
| expr | forall (expr const &x1, expr const &x2, expr const &x3, expr const &x4, expr const &b) |
| expr | forall (expr_vector const &xs, expr const &b) |
| expr | exists (expr const &x, expr const &b) |
| expr | exists (expr const &x1, expr const &x2, expr const &b) |
| expr | exists (expr const &x1, expr const &x2, expr const &x3, expr const &b) |
| expr | exists (expr const &x1, expr const &x2, expr const &x3, expr const &x4, expr const &b) |
| expr | exists (expr_vector const &xs, expr const &b) |
| expr | lambda (expr const &x, expr const &b) |
| expr | lambda (expr const &x1, expr const &x2, expr const &b) |
| expr | lambda (expr const &x1, expr const &x2, expr const &x3, expr const &b) |
| expr | lambda (expr const &x1, expr const &x2, expr const &x3, expr const &x4, expr const &b) |
| expr | lambda (expr_vector const &xs, 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 | sum (expr_vector const &args) |
| expr | distinct (expr_vector const &args) |
| expr | concat (expr const &a, expr const &b) |
| expr | concat (expr_vector const &args) |
| expr | map (expr const &f, expr const &list) |
| expr | mapi (expr const &f, expr const &i, expr const &list) |
| expr | foldl (expr const &f, expr const &a, expr const &list) |
| expr | foldli (expr const &f, expr const &i, expr const &a, expr const &list) |
| expr | mk_or (expr_vector const &args) |
| expr | mk_and (expr_vector const &args) |
| expr | mk_xor (expr_vector const &args) |
| std::ostream & | operator<< (std::ostream &out, model const &m) |
| std::ostream & | operator<< (std::ostream &out, stats const &s) |
| std::ostream & | operator<< (std::ostream &out, check_result r) |
| std::ostream & | operator<< (std::ostream &out, solver const &s) |
| std::ostream & | operator<< (std::ostream &out, goal const &g) |
| std::ostream & | operator<< (std::ostream &out, apply_result const &r) |
| tactic | operator& (tactic const &t1, tactic const &t2) |
| tactic | operator| (tactic const &t1, tactic const &t2) |
| tactic | repeat (tactic const &t, unsigned max=UINT_MAX) |
| tactic | with (tactic const &t, params const &p) |
| tactic | try_for (tactic const &t, unsigned ms) |
| tactic | par_or (unsigned n, tactic const *tactics) |
| tactic | par_and_then (tactic const &t1, tactic const &t2) |
| simplifier | operator& (simplifier const &t1, simplifier const &t2) |
| simplifier | with (simplifier const &t, params const &p) |
| probe | operator<= (probe const &p1, probe const &p2) |
| probe | operator<= (probe const &p1, double p2) |
| probe | operator<= (double p1, probe const &p2) |
| probe | operator>= (probe const &p1, probe const &p2) |
| probe | operator>= (probe const &p1, double p2) |
| probe | operator>= (double p1, probe const &p2) |
| probe | operator< (probe const &p1, probe const &p2) |
| probe | operator< (probe const &p1, double p2) |
| probe | operator< (double p1, probe const &p2) |
| probe | operator> (probe const &p1, probe const &p2) |
| probe | operator> (probe const &p1, double p2) |
| probe | operator> (double p1, probe const &p2) |
| probe | operator== (probe const &p1, probe const &p2) |
| probe | operator== (probe const &p1, double p2) |
| probe | operator== (double p1, probe const &p2) |
| probe | operator&& (probe const &p1, probe const &p2) |
| probe | operator|| (probe const &p1, probe const &p2) |
| probe | operator! (probe const &p) |
| std::ostream & | operator<< (std::ostream &out, optimize const &s) |
| std::ostream & | operator<< (std::ostream &out, fixedpoint const &f) |
| tactic | fail_if (probe const &p) |
| tactic | when (probe const &p, tactic const &t) |
| tactic | cond (probe const &p, tactic const &t1, tactic const &t2) |
| expr | to_real (expr const &a) |
| 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 (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 | function (char const *name, sort_vector const &domain, sort const &range) |
| func_decl | function (std::string const &name, sort_vector const &domain, sort const &range) |
| func_decl | recfun (symbol const &name, unsigned arity, sort 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 &d1, sort const &range) |
| func_decl | recfun (char const *name, sort const &d1, sort const &d2, sort const &range) |
| expr | select (expr const &a, int i) |
| expr | store (expr const &a, expr const &i, expr const &v) |
| expr | store (expr const &a, int i, expr const &v) |
| expr | store (expr const &a, expr i, int v) |
| expr | store (expr const &a, int i, int v) |
| expr | store (expr const &a, expr_vector const &i, expr const &v) |
| expr | as_array (func_decl &f) |
| expr | array_default (expr const &a) |
| expr | array_ext (expr const &a, expr const &b) |
| expr | const_array (sort const &d, expr const &v) |
| expr | empty_set (sort const &s) |
| expr | full_set (sort const &s) |
| expr | set_add (expr const &s, expr const &e) |
| expr | set_del (expr const &s, expr const &e) |
| expr | set_union (expr const &a, expr const &b) |
| expr | set_intersect (expr const &a, expr const &b) |
| expr | set_difference (expr const &a, expr const &b) |
| expr | set_complement (expr const &a) |
| expr | set_member (expr const &s, expr const &e) |
| expr | set_subset (expr const &a, expr const &b) |
| expr | empty (sort const &s) |
| expr | suffixof (expr const &a, expr const &b) |
| expr | prefixof (expr const &a, expr const &b) |
| expr | indexof (expr const &s, expr const &substr, expr const &offset) |
| expr | last_indexof (expr const &s, expr const &substr) |
| expr | to_re (expr const &s) |
| expr | in_re (expr const &s, expr const &re) |
| expr | plus (expr const &re) |
| expr | option (expr const &re) |
| expr | star (expr const &re) |
| expr | re_empty (sort const &s) |
| expr | re_full (sort const &s) |
| expr | re_intersect (expr_vector const &args) |
| expr | re_diff (expr const &a, expr const &b) |
| expr | re_complement (expr const &a) |
| expr | range (expr const &lo, expr const &hi) |
| rcf_num | rcf_pi (context &c) |
| Create an RCF numeral representing pi. | |
| rcf_num | rcf_e (context &c) |
| Create an RCF numeral representing e (Euler's constant). | |
| rcf_num | rcf_infinitesimal (context &c) |
| Create an RCF numeral representing an infinitesimal. | |
| std::vector< rcf_num > | rcf_roots (context &c, std::vector< rcf_num > const &coeffs) |
| Find roots of a polynomial with given coefficients. | |
Z3 C++ namespace.
| typedef ast_vector_tpl<ast> ast_vector |
| typedef ast_vector_tpl<expr> expr_vector |
| typedef ast_vector_tpl<func_decl> func_decl_vector |
| typedef std::function<void(expr const& proof, std::vector<unsigned> const& deps, expr_vector const& clause)> on_clause_eh_t |
| typedef ast_vector_tpl<sort> sort_vector |
| enum check_result |
| enum rounding_mode |
Definition at line 2082 of file z3++.h.
Definition at line 4191 of file z3++.h.
Definition at line 4197 of file z3++.h.
Definition at line 4185 of file z3++.h.
arithmetic shift right operator for bitvectors
Definition at line 2316 of file z3++.h.
Definition at line 2317 of file z3++.h.
|
inline |
Definition at line 2538 of file z3++.h.
|
inline |
Definition at line 2530 of file z3++.h.
bit-vector overflow/underflow checks
Definition at line 2334 of file z3++.h.
Definition at line 2337 of file z3++.h.
Definition at line 2352 of file z3++.h.
Definition at line 2355 of file z3++.h.
Definition at line 2076 of file z3++.h.
Definition at line 2070 of file z3++.h.
Definition at line 2346 of file z3++.h.
Definition at line 2340 of file z3++.h.
Definition at line 2343 of file z3++.h.
Definition at line 544 of file z3++.h.
Referenced by array_ext(), expr::bvadd_no_overflow, expr::bvadd_no_underflow, expr::bvmul_no_overflow, expr::bvmul_no_underflow, expr::bvsdiv_no_overflow, expr::bvsub_no_overflow, expr::bvsub_no_underflow, expr::concat, cond(), exists(), exists(), exists(), exists(), expr::fma, forall(), forall(), forall(), forall(), expr::fp_eq, expr::fpa_fp, context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), indexof(), expr::ite, lambda(), lambda(), lambda(), lambda(), last_indexof(), expr::max, expr::min, expr::nand, expr::nor, expr::operator!=, expr::operator&, simplifier::operator&, tactic::operator&, expr::operator&&, probe::operator&&, expr::operator*, expr::operator+, expr::operator-, expr::operator/, expr::operator<, probe::operator<, expr::operator<=, probe::operator<=, expr::operator==, probe::operator==, expr::operator>, probe::operator>, expr::operator>=, probe::operator>=, expr::operator^, expr::operator|, tactic::operator|, expr::operator||, probe::operator||, tactic::par_and_then, polynomial_subresultants(), prefixof(), expr::range, re_diff(), context::recdef(), context::recfun(), context::recfun(), select(), select(), set_intersect(), set_union(), expr::sqrt, store(), store(), suffixof(), context::user_propagate_function(), when(), and expr::xnor.
Definition at line 2564 of file z3++.h.
Referenced by expr::operator+.
|
inline |
Definition at line 2582 of file z3++.h.
Definition at line 3648 of file z3++.h.
|
inline |
Disable tracing messages tagged as tag when Z3 is compiled in debug mode. It is a NOOP otherwise.
Definition at line 112 of file z3++.h.
|
inline |
Definition at line 2555 of file z3++.h.
Definition at line 4271 of file z3++.h.
|
inline |
Enable tracing messages tagged as tag when Z3 is compiled in debug mode. It is a NOOP otherwise.
Definition at line 104 of file z3++.h.
Definition at line 2457 of file z3++.h.
Definition at line 2462 of file z3++.h.
Definition at line 2467 of file z3++.h.
|
inline |
Definition at line 2472 of file z3++.h.
|
inline |
Definition at line 2477 of file z3++.h.
Definition at line 3637 of file z3++.h.
Definition at line 2118 of file z3++.h.
Definition at line 2622 of file z3++.h.
Definition at line 2629 of file z3++.h.
Definition at line 2433 of file z3++.h.
Definition at line 2438 of file z3++.h.
Definition at line 2443 of file z3++.h.
|
inline |
Definition at line 2448 of file z3++.h.
|
inline |
Definition at line 2453 of file z3++.h.
Definition at line 2109 of file z3++.h.
Definition at line 2162 of file z3++.h.
Definition at line 2134 of file z3++.h.
Definition at line 2141 of file z3++.h.
|
inline |
|
inline |
|
inline |
|
inline |
Return Z3 version number information.
Definition at line 89 of file z3++.h.
Definition at line 1716 of file z3++.h.
Referenced by expr::implies, and expr::implies.
Definition at line 4288 of file z3++.h.
Definition at line 2481 of file z3++.h.
|
inline |
|
inline |
Definition at line 2501 of file z3++.h.
Definition at line 4294 of file z3++.h.
Definition at line 2310 of file z3++.h.
Definition at line 2608 of file z3++.h.
Definition at line 2615 of file z3++.h.
Definition at line 2054 of file z3++.h.
Referenced by tactic::repeat.
Definition at line 2038 of file z3++.h.
|
inline |
Definition at line 2642 of file z3++.h.
|
inline |
Definition at line 2636 of file z3++.h.
|
inline |
Definition at line 1728 of file z3++.h.
Referenced by expr::mod, expr::mod, operator%(), operator%(), and operator%().
Definition at line 2035 of file z3++.h.
Definition at line 2036 of file z3++.h.
Definition at line 3453 of file z3++.h.
Definition at line 1804 of file z3++.h.
Definition at line 2023 of file z3++.h.
|
inline |
Definition at line 3367 of file z3++.h.
Definition at line 3293 of file z3++.h.
Definition at line 1768 of file z3++.h.
Definition at line 3447 of file z3++.h.
Definition at line 1846 of file z3++.h.
Definition at line 1816 of file z3++.h.
Definition at line 1912 of file z3++.h.
Definition at line 1931 of file z3++.h.
Definition at line 1890 of file z3++.h.
Definition at line 1979 of file z3++.h.
Definition at line 3432 of file z3++.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Definition at line 1954 of file z3++.h.
Definition at line 3422 of file z3++.h.
Definition at line 3442 of file z3++.h.
Definition at line 2001 of file z3++.h.
Definition at line 3437 of file z3++.h.
Definition at line 1870 of file z3++.h.
Definition at line 3427 of file z3++.h.
Definition at line 2027 of file z3++.h.
Definition at line 2031 of file z3++.h.
Definition at line 3300 of file z3++.h.
Definition at line 1780 of file z3++.h.
Definition at line 3450 of file z3++.h.
Definition at line 3332 of file z3++.h.
Definition at line 3323 of file z3++.h.
|
inline |
Definition at line 2522 of file z3++.h.
|
inline |
Definition at line 2514 of file z3++.h.
|
inline |
Definition at line 2506 of file z3++.h.
|
inline |
Return the nonzero subresultants of p and q with respect to the "variable" x.
Definition at line 2384 of file z3++.h.
Definition at line 4282 of file z3++.h.
Definition at line 4343 of file z3++.h.
Referenced by context::fpa_sort(), context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), context::function(), function(), function(), function(), function(), function(), function(), function(), function(), function(), context::recfun(), context::recfun(), context::recfun(), context::recfun(), context::recfun(), context::recfun(), recfun(), recfun(), recfun(), recfun(), and context::user_propagate_function().
Find roots of a polynomial with given coefficients.
The polynomial is a[n-1]*x^(n-1) + ... + a[1]*x + a[0]. Returns a vector of RCF numerals representing the roots.
Definition at line 5013 of file z3++.h.
Definition at line 4333 of file z3++.h.
Definition at line 4315 of file z3++.h.
Definition at line 4320 of file z3++.h.
|
inline |
Definition at line 4325 of file z3++.h.
Definition at line 1744 of file z3++.h.
|
inline |
Definition at line 84 of file z3++.h.
Definition at line 2169 of file z3++.h.
Definition at line 2148 of file z3++.h.
Definition at line 2268 of file z3++.h.
forward declarations
Definition at line 4148 of file z3++.h.
Referenced by expr::operator[](), expr::operator[](), and select().
|
inline |
Definition at line 4157 of file z3++.h.
Definition at line 4243 of file z3++.h.
|
inline |
|
inline |
Definition at line 81 of file z3++.h.
Definition at line 4235 of file z3++.h.
Sign-extend of the given bit-vector to the (signed) equivalent bitvector of size m+i, where m is the size of the given bit-vector.
Definition at line 2363 of file z3++.h.
Definition at line 2229 of file z3++.h.
Definition at line 2235 of file z3++.h.
Definition at line 2303 of file z3++.h.
Definition at line 2217 of file z3++.h.
Definition at line 2223 of file z3++.h.
Definition at line 2289 of file z3++.h.
Definition at line 2102 of file z3++.h.
Definition at line 2282 of file z3++.h.
|
inline |
Definition at line 4177 of file z3++.h.
Definition at line 4276 of file z3++.h.
|
inline |
Definition at line 2546 of file z3++.h.
|
inline |
Definition at line 178 of file z3++.h.
Referenced by optimize::check(), optimize::check(), solver::check(), solver::check(), solver::check(), solver::consequences(), fixedpoint::query(), and fixedpoint::query().
Wraps a Z3_ast as an expr object. It also checks for errors. This function allows the user to use the whole C API with the C++ layer defined in this file.
Definition at line 2194 of file z3++.h.
Referenced by ashr(), lshr(), sdiv(), sext(), sge(), sgt(), shl(), sle(), slt(), smod(), srem(), udiv(), uge(), ugt(), ule(), ult(), urem(), and zext().
Definition at line 2208 of file z3++.h.
Referenced by linear_order(), partial_order(), piecewise_linear_order(), and tree_order().
Definition at line 2203 of file z3++.h.
Referenced by context::enumeration_sort(), context::tuple_sort(), context::uninterpreted_sort(), and context::uninterpreted_sort().
Definition at line 3318 of file z3++.h.
Definition at line 2155 of file z3++.h.
Definition at line 2275 of file z3++.h.
Definition at line 2255 of file z3++.h.
Definition at line 2261 of file z3++.h.
Definition at line 2243 of file z3++.h.
Definition at line 2249 of file z3++.h.
Definition at line 2296 of file z3++.h.
Definition at line 3642 of file z3++.h.
|
inline |
Definition at line 3374 of file z3++.h.
Definition at line 3313 of file z3++.h.
Definition at line 2037 of file z3++.h.
Extend the given bit-vector with zeros to the (unsigned) equivalent bitvector of size m+i, where m is the size of the given bit-vector.
Definition at line 2323 of file z3++.h.