Z3
Data Structures | Public Member Functions | Friends
solver Class Reference
+ Inheritance diagram for solver:

Data Structures

class  cube_generator
 
class  cube_iterator
 
struct  simple
 
struct  translate
 

Public Member Functions

 solver (context &c)
 
 solver (context &c, simple)
 
 solver (context &c, Z3_solver s)
 
 solver (context &c, char const *logic)
 
 solver (context &c, solver const &src, translate)
 
 solver (solver const &s)
 
 ~solver ()
 
 operator Z3_solver () const
 
solveroperator= (solver const &s)
 
void set (params const &p)
 
void set (char const *k, bool v)
 
void set (char const *k, unsigned v)
 
void set (char const *k, double v)
 
void set (char const *k, symbol const &v)
 
void set (char const *k, char const *v)
 
void push ()
 
void pop (unsigned n=1)
 
void reset ()
 
void add (expr const &e)
 
void add (expr const &e, expr const &p)
 
void add (expr const &e, char const *p)
 
void from_file (char const *file)
 
void from_string (char const *s)
 
check_result check ()
 
check_result check (unsigned n, expr *const assumptions)
 
check_result check (expr_vector const &assumptions)
 
model get_model () const
 
check_result consequences (expr_vector &assumptions, expr_vector &vars, expr_vector &conseq)
 
std::string reason_unknown () const
 
stats statistics () const
 
expr_vector unsat_core () const
 
expr_vector assertions () const
 
expr_vector non_units () const
 
expr_vector units () const
 
expr_vector trail () const
 
expr_vector trail (array< unsigned > &levels) const
 
expr proof () const
 
std::string to_smt2 (char const *status="unknown")
 
std::string dimacs (bool include_names=true) const
 
param_descrs get_param_descrs ()
 
expr_vector cube (expr_vector &vars, unsigned cutoff)
 
cube_generator cubes ()
 
cube_generator cubes (expr_vector &vars)
 
- Public Member Functions inherited from object
 object (context &c)
 
 object (object const &s)
 
contextctx () const
 
Z3_error_code check_error () const
 

Friends

std::ostream & operator<< (std::ostream &out, solver const &s)
 

Additional Inherited Members

- Protected Attributes inherited from object
contextm_ctx
 

Detailed Description

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

Constructor & Destructor Documentation

◆ solver() [1/6]

solver ( context c)
inline

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

2352 :object(c) { init(Z3_mk_solver(c)); }

◆ solver() [2/6]

solver ( context c,
simple   
)
inline

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

2353 :object(c) { init(Z3_mk_simple_solver(c)); }

◆ solver() [3/6]

solver ( context c,
Z3_solver  s 
)
inline

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

2354 :object(c) { init(s); }

◆ solver() [4/6]

solver ( context c,
char const *  logic 
)
inline

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

2355 :object(c) { init(Z3_mk_solver_for_logic(c, c.str_symbol(logic))); }

◆ solver() [5/6]

solver ( context c,
solver const &  src,
translate   
)
inline

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

2356 : object(c) { init(Z3_solver_translate(src.ctx(), src, c)); }

◆ solver() [6/6]

solver ( solver const &  s)
inline

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

2357 :object(s) { init(s.m_solver); }

◆ ~solver()

~solver ( )
inline

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

2358 { Z3_solver_dec_ref(ctx(), m_solver); }

Member Function Documentation

◆ add() [1/3]

void add ( expr const &  e)
inline

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

2376 { assert(e.is_bool()); Z3_solver_assert(ctx(), m_solver, e); check_error(); }

Referenced by solver::add().

◆ add() [2/3]

void add ( expr const &  e,
char const *  p 
)
inline

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

2382  {
2383  add(e, ctx().bool_const(p));
2384  }

◆ add() [3/3]

void add ( expr const &  e,
expr const &  p 
)
inline

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

2377  {
2378  assert(e.is_bool()); assert(p.is_bool()); assert(p.is_const());
2379  Z3_solver_assert_and_track(ctx(), m_solver, e, p);
2380  check_error();
2381  }

◆ assertions()

expr_vector assertions ( ) const
inline

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

2421 { Z3_ast_vector r = Z3_solver_get_assertions(ctx(), m_solver); check_error(); return expr_vector(ctx(), r); }

Referenced by solver::to_smt2().

◆ check() [1/3]

check_result check ( )
inline

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

2390 { Z3_lbool r = Z3_solver_check(ctx(), m_solver); check_error(); return to_check_result(r); }

◆ check() [2/3]

check_result check ( expr_vector const &  assumptions)
inline

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

2401  {
2402  unsigned n = assumptions.size();
2403  array<Z3_ast> _assumptions(n);
2404  for (unsigned i = 0; i < n; i++) {
2405  check_context(*this, assumptions[i]);
2406  _assumptions[i] = assumptions[i];
2407  }
2408  Z3_lbool r = Z3_solver_check_assumptions(ctx(), m_solver, n, _assumptions.ptr());
2409  check_error();
2410  return to_check_result(r);
2411  }

◆ check() [3/3]

check_result check ( unsigned  n,
expr *const  assumptions 
)
inline

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

2391  {
2392  array<Z3_ast> _assumptions(n);
2393  for (unsigned i = 0; i < n; i++) {
2394  check_context(*this, assumptions[i]);
2395  _assumptions[i] = assumptions[i];
2396  }
2397  Z3_lbool r = Z3_solver_check_assumptions(ctx(), m_solver, n, _assumptions.ptr());
2398  check_error();
2399  return to_check_result(r);
2400  }

◆ consequences()

check_result consequences ( expr_vector assumptions,
expr_vector vars,
expr_vector conseq 
)
inline

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

2413  {
2414  Z3_lbool r = Z3_solver_get_consequences(ctx(), m_solver, assumptions, vars, conseq);
2415  check_error();
2416  return to_check_result(r);
2417  }

◆ cube()

expr_vector cube ( expr_vector vars,
unsigned  cutoff 
)
inline

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

2463  {
2464  Z3_ast_vector r = Z3_solver_cube(ctx(), m_solver, vars, cutoff);
2465  check_error();
2466  return expr_vector(ctx(), r);
2467  }

◆ cubes() [1/2]

cube_generator cubes ( )
inline

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

2550 { return cube_generator(*this); }

◆ cubes() [2/2]

cube_generator cubes ( expr_vector vars)
inline

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

2551 { return cube_generator(*this, vars); }

◆ dimacs()

std::string dimacs ( bool  include_names = true) const
inline

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

2458 { return std::string(Z3_solver_to_dimacs_string(ctx(), m_solver, include_names)); }

◆ from_file()

void from_file ( char const *  file)
inline

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

2387 { Z3_solver_from_file(ctx(), m_solver, file); ctx().check_parser_error(); }

◆ from_string()

void from_string ( char const *  s)
inline

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

2388 { Z3_solver_from_string(ctx(), m_solver, s); ctx().check_parser_error(); }

◆ get_model()

model get_model ( ) const
inline

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

2412 { Z3_model m = Z3_solver_get_model(ctx(), m_solver); check_error(); return model(ctx(), m); }

◆ get_param_descrs()

param_descrs get_param_descrs ( )
inline

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

2460 { return param_descrs(ctx(), Z3_solver_get_param_descrs(ctx(), m_solver)); }

◆ non_units()

expr_vector non_units ( ) const
inline

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

2422 { Z3_ast_vector r = Z3_solver_get_non_units(ctx(), m_solver); check_error(); return expr_vector(ctx(), r); }

◆ operator Z3_solver()

operator Z3_solver ( ) const
inline

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

2359 { return m_solver; }

◆ operator=()

solver& operator= ( solver const &  s)
inline

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

2360  {
2361  Z3_solver_inc_ref(s.ctx(), s.m_solver);
2362  Z3_solver_dec_ref(ctx(), m_solver);
2363  m_ctx = s.m_ctx;
2364  m_solver = s.m_solver;
2365  return *this;
2366  }

◆ pop()

void pop ( unsigned  n = 1)
inline

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

2374 { Z3_solver_pop(ctx(), m_solver, n); check_error(); }

◆ proof()

expr proof ( ) const
inline

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

2435 { Z3_ast r = Z3_solver_get_proof(ctx(), m_solver); check_error(); return expr(ctx(), r); }

◆ push()

void push ( )
inline

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

2373 { Z3_solver_push(ctx(), m_solver); check_error(); }

◆ reason_unknown()

std::string reason_unknown ( ) const
inline

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

2418 { Z3_string r = Z3_solver_get_reason_unknown(ctx(), m_solver); check_error(); return r; }

◆ reset()

void reset ( )
inline

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

2375 { Z3_solver_reset(ctx(), m_solver); check_error(); }

◆ set() [1/6]

void set ( char const *  k,
bool  v 
)
inline

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

2368 { params p(ctx()); p.set(k, v); set(p); }

Referenced by solver::set().

◆ set() [2/6]

void set ( char const *  k,
char const *  v 
)
inline

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

2372 { params p(ctx()); p.set(k, v); set(p); }

Referenced by solver::set().

◆ set() [3/6]

void set ( char const *  k,
double  v 
)
inline

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

2370 { params p(ctx()); p.set(k, v); set(p); }

Referenced by solver::set().

◆ set() [4/6]

void set ( char const *  k,
symbol const &  v 
)
inline

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

2371 { params p(ctx()); p.set(k, v); set(p); }

Referenced by solver::set().

◆ set() [5/6]

void set ( char const *  k,
unsigned  v 
)
inline

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

2369 { params p(ctx()); p.set(k, v); set(p); }

Referenced by solver::set().

◆ set() [6/6]

void set ( params const &  p)
inline

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

2367 { Z3_solver_set_params(ctx(), m_solver, p); check_error(); }

◆ statistics()

stats statistics ( ) const
inline

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

2419 { Z3_stats r = Z3_solver_get_statistics(ctx(), m_solver); check_error(); return stats(ctx(), r); }

◆ to_smt2()

std::string to_smt2 ( char const *  status = "unknown")
inline

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

2438  {
2439  array<Z3_ast> es(assertions());
2440  Z3_ast const* fmls = es.ptr();
2441  Z3_ast fml = 0;
2442  unsigned sz = es.size();
2443  if (sz > 0) {
2444  --sz;
2445  fml = fmls[sz];
2446  }
2447  else {
2448  fml = ctx().bool_val(true);
2449  }
2450  return std::string(Z3_benchmark_to_smtlib_string(
2451  ctx(),
2452  "", "", status, "",
2453  sz,
2454  fmls,
2455  fml));
2456  }

◆ trail() [1/2]

expr_vector trail ( ) const
inline

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

2424 { Z3_ast_vector r = Z3_solver_get_trail(ctx(), m_solver); check_error(); return expr_vector(ctx(), r); }

◆ trail() [2/2]

expr_vector trail ( array< unsigned > &  levels) const
inline

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

2425  {
2426  Z3_ast_vector r = Z3_solver_get_trail(ctx(), m_solver);
2427  check_error();
2428  expr_vector result(ctx(), r);
2429  unsigned sz = result.size();
2430  levels.resize(sz);
2431  Z3_solver_get_levels(ctx(), m_solver, r, sz, levels.ptr());
2432  check_error();
2433  return result;
2434  }

◆ units()

expr_vector units ( ) const
inline

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

2423 { Z3_ast_vector r = Z3_solver_get_units(ctx(), m_solver); check_error(); return expr_vector(ctx(), r); }

◆ unsat_core()

expr_vector unsat_core ( ) const
inline

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

2420 { Z3_ast_vector r = Z3_solver_get_unsat_core(ctx(), m_solver); check_error(); return expr_vector(ctx(), r); }

Friends And Related Function Documentation

◆ operator<<

std::ostream& operator<< ( std::ostream &  out,
solver const &  s 
)
friend

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

2554 { out << Z3_solver_to_string(s.ctx(), s); return out; }
Z3_solver_to_string
Z3_string Z3_API Z3_solver_to_string(Z3_context c, Z3_solver s)
Convert a solver into a string.
z3::solver::assertions
expr_vector assertions() const
Definition: z3++.h:2421
Z3_solver_get_levels
void Z3_API Z3_solver_get_levels(Z3_context c, Z3_solver s, Z3_ast_vector literals, unsigned sz, unsigned levels[])
retrieve the decision depth of Boolean literals (variables or their negations). Assumes a check-sat c...
Z3_solver_check
Z3_lbool Z3_API Z3_solver_check(Z3_context c, Z3_solver s)
Check whether the assertions in a given solver are consistent or not.
Z3_solver_reset
void Z3_API Z3_solver_reset(Z3_context c, Z3_solver s)
Remove all assertions from the solver.
Z3_solver_get_proof
Z3_ast Z3_API Z3_solver_get_proof(Z3_context c, Z3_solver s)
Retrieve the proof for the last Z3_solver_check or Z3_solver_check_assumptions.
Z3_solver_get_reason_unknown
Z3_string Z3_API Z3_solver_get_reason_unknown(Z3_context c, Z3_solver s)
Return a brief justification for an "unknown" result (i.e., Z3_L_UNDEF) for the commands Z3_solver_ch...
Z3_solver_pop
void Z3_API Z3_solver_pop(Z3_context c, Z3_solver s, unsigned n)
Backtrack n backtracking points.
Z3_solver_check_assumptions
Z3_lbool Z3_API Z3_solver_check_assumptions(Z3_context c, Z3_solver s, unsigned num_assumptions, Z3_ast const assumptions[])
Check whether the assertions in the given solver and optional assumptions are consistent or not.
Z3_mk_solver_for_logic
Z3_solver Z3_API Z3_mk_solver_for_logic(Z3_context c, Z3_symbol logic)
Create a new solver customized for the given logic. It behaves like Z3_mk_solver if the logic is unkn...
Z3_solver_push
void Z3_API Z3_solver_push(Z3_context c, Z3_solver s)
Create a backtracking point.
Z3_lbool
Z3_lbool
Lifted Boolean type: false, undefined, true.
Definition: z3_api.h:99
Z3_solver_get_assertions
Z3_ast_vector Z3_API Z3_solver_get_assertions(Z3_context c, Z3_solver s)
Return the set of asserted formulas on the solver.
Z3_solver_to_dimacs_string
Z3_string Z3_API Z3_solver_to_dimacs_string(Z3_context c, Z3_solver s, bool include_names)
Convert a solver into a DIMACS formatted string.
z3::object::object
object(context &c)
Definition: z3++.h:407
Z3_solver_get_param_descrs
Z3_param_descrs Z3_API Z3_solver_get_param_descrs(Z3_context c, Z3_solver s)
Return the parameter description set for the given solver object.
z3::solver::add
void add(expr const &e)
Definition: z3++.h:2376
z3::object::m_ctx
context * m_ctx
Definition: z3++.h:405
z3::context::bool_val
expr bool_val(bool b)
Definition: z3++.h:3153
Z3_solver_get_trail
Z3_ast_vector Z3_API Z3_solver_get_trail(Z3_context c, Z3_solver s)
Return the trail modulo model conversion, in order of decision level The decision level can be retrie...
Z3_solver_dec_ref
void Z3_API Z3_solver_dec_ref(Z3_context c, Z3_solver s)
Decrement the reference counter of the given solver.
Z3_solver_from_string
void Z3_API Z3_solver_from_string(Z3_context c, Z3_solver s, Z3_string file_name)
load solver assertions from a string.
Z3_solver_get_unsat_core
Z3_ast_vector Z3_API Z3_solver_get_unsat_core(Z3_context c, Z3_solver s)
Retrieve the unsat core for the last Z3_solver_check_assumptions The unsat core is a subset of the as...
z3::context::check_parser_error
void check_parser_error() const
Definition: z3++.h:188
Z3_solver_get_units
Z3_ast_vector Z3_API Z3_solver_get_units(Z3_context c, Z3_solver s)
Return the set of units modulo model conversion.
Z3_solver_assert_and_track
void Z3_API Z3_solver_assert_and_track(Z3_context c, Z3_solver s, Z3_ast a, Z3_ast p)
Assert a constraint a into the solver, and track it (in the unsat) core using the Boolean constant p.
z3::expr_vector
ast_vector_tpl< expr > expr_vector
Definition: z3++.h:72
Z3_solver_get_statistics
Z3_stats Z3_API Z3_solver_get_statistics(Z3_context c, Z3_solver s)
Return statistics for the given solver.
Z3_solver_set_params
void Z3_API Z3_solver_set_params(Z3_context c, Z3_solver s, Z3_params p)
Set the given solver using the given parameters.
Z3_solver_get_non_units
Z3_ast_vector Z3_API Z3_solver_get_non_units(Z3_context c, Z3_solver s)
Return the set of non units in the solver state.
Z3_solver_cube
Z3_ast_vector Z3_API Z3_solver_cube(Z3_context c, Z3_solver s, Z3_ast_vector vars, unsigned backtrack_level)
extract a next cube for a solver. The last cube is the constant true or false. The number of (non-con...
Z3_solver_assert
void Z3_API Z3_solver_assert(Z3_context c, Z3_solver s, Z3_ast a)
Assert a constraint into the solver.
z3::object::check_context
friend void check_context(object const &a, object const &b)
Definition: z3++.h:413
Z3_solver_translate
Z3_solver Z3_API Z3_solver_translate(Z3_context source, Z3_solver s, Z3_context target)
Copy a solver s from the context source to the context target.
z3::solver::set
void set(params const &p)
Definition: z3++.h:2367
Z3_mk_solver
Z3_solver Z3_API Z3_mk_solver(Z3_context c)
Create a new solver. This solver is a "combined solver" (see combined_solver module) that internally ...
Z3_mk_simple_solver
Z3_solver Z3_API Z3_mk_simple_solver(Z3_context c)
Create a new incremental solver.
Z3_solver_from_file
void Z3_API Z3_solver_from_file(Z3_context c, Z3_solver s, Z3_string file_name)
load solver assertions from a file.
z3::to_check_result
check_result to_check_result(Z3_lbool l)
Definition: z3++.h:144
z3::object::check_error
Z3_error_code check_error() const
Definition: z3++.h:410
Z3_solver_get_consequences
Z3_lbool Z3_API Z3_solver_get_consequences(Z3_context c, Z3_solver s, Z3_ast_vector assumptions, Z3_ast_vector variables, Z3_ast_vector consequences)
retrieve consequences from solver that determine values of the supplied function symbols.
Z3_benchmark_to_smtlib_string
Z3_string Z3_API Z3_benchmark_to_smtlib_string(Z3_context c, Z3_string name, Z3_string logic, Z3_string status, Z3_string attributes, unsigned num_assumptions, Z3_ast const assumptions[], Z3_ast formula)
Convert the given benchmark into SMT-LIB formatted string.
z3::object::ctx
context & ctx() const
Definition: z3++.h:409
Z3_string
const typedef char * Z3_string
Z3 string type. It is just an alias for const char *.
Definition: z3_api.h:82
Z3_solver_get_model
Z3_model Z3_API Z3_solver_get_model(Z3_context c, Z3_solver s)
Retrieve the model for the last Z3_solver_check or Z3_solver_check_assumptions.
Z3_solver_inc_ref
void Z3_API Z3_solver_inc_ref(Z3_context c, Z3_solver s)
Increment the reference counter of the given solver.