Z3
Loading...
Searching...
No Matches
user_propagator_base Class Referenceabstract

#include <z3++.h>

Public Member Functions

 user_propagator_base (context &c)
 user_propagator_base (solver *s)
virtual void push ()=0
virtual void pop (unsigned num_scopes)=0
virtual ~user_propagator_base ()
contextctx ()
virtual user_propagator_basefresh (context &ctx)=0
 user_propagators created using fresh() are created during search and their lifetimes are restricted to search time. They should be garbage collected by the propagator used to invoke fresh(). The life-time of the Z3_context object can only be assumed valid during callbacks, such as fixed(), which contains expressions based on the context.
void register_fixed (fixed_eh_t &f)
 register callbacks. Callbacks can only be registered with user_propagators that were created using a solver.
void register_fixed ()
void register_eq (eq_eh_t &f)
void register_eq ()
void register_final (final_eh_t &f)
 register a callback on final-check. During the final check stage, all propagations have been processed. This is an opportunity for the user-propagator to delay some analysis that could be expensive to perform incrementally. It is also an opportunity for the propagator to implement branch and bound optimization.
void register_final ()
void register_created (created_eh_t &c)
void register_created ()
void register_decide (decide_eh_t &c)
void register_decide ()
void register_on_binding ()
virtual void fixed (expr const &, expr const &)
virtual void eq (expr const &, expr const &)
virtual void final ()
virtual void created (expr const &)
virtual void decide (expr const &, unsigned, bool)
virtual bool on_binding (expr const &, expr const &)
bool next_split (expr const &e, unsigned idx, Z3_lbool phase)
void add (expr const &e)
 tracks e by a unique identifier that is returned by the call.
void conflict (expr_vector const &fixed)
void conflict (expr_vector const &fixed, expr_vector const &lhs, expr_vector const &rhs)
bool propagate (expr_vector const &fixed, expr const &conseq)
bool propagate (expr_vector const &fixed, expr_vector const &lhs, expr_vector const &rhs, expr const &conseq)

Detailed Description

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

Constructor & Destructor Documentation

◆ user_propagator_base() [1/2]

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

4386: s(nullptr), c(&c) {}

Referenced by fresh().

◆ user_propagator_base() [2/2]

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

4388 : s(s), c(nullptr) {
4389 Z3_solver_propagate_init(ctx(), *s, this, push_eh, pop_eh, fresh_eh);
4390 }
void Z3_API Z3_solver_propagate_init(Z3_context c, Z3_solver s, void *user_context, Z3_push_eh push_eh, Z3_pop_eh pop_eh, Z3_fresh_eh fresh_eh)
register a user-propagator with the solver.

◆ ~user_propagator_base()

virtual ~user_propagator_base ( )
inlinevirtual

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

4395 {
4396 for (auto& subcontext : subcontexts) {
4397 subcontext->detach(); // detach first; the subcontexts will be freed internally!
4398 delete subcontext;
4399 }
4400 }

Member Function Documentation

◆ add()

void add ( expr const & e)
inline

tracks e by a unique identifier that is returned by the call.

If the fixed() callback is registered and if e is a Boolean or Bit-vector, the fixed() callback gets invoked when e is bound to a value. If the eq() callback is registered, then equalities between registered expressions are reported. A consumer can use the propagate or conflict functions to invoke propagations or conflicts as a consequence of these callbacks. These functions take a list of identifiers for registered expressions that have been fixed. The list of identifiers must correspond to already fixed values. Similarly, a list of propagated equalities can be supplied. These must correspond to equalities that have been registered during a callback.

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

4549 {
4550 if (cb)
4551 Z3_solver_propagate_register_cb(ctx(), cb, e);
4552 else if (s)
4553 Z3_solver_propagate_register(ctx(), *s, e);
4554 else
4555 assert(false);
4556 }
void Z3_API Z3_solver_propagate_register_cb(Z3_context c, Z3_solver_callback cb, Z3_ast e)
register an expression to propagate on with the solver. Only expressions of type Bool and type Bit-Ve...
void Z3_API Z3_solver_propagate_register(Z3_context c, Z3_solver s, Z3_ast e)
register an expression to propagate on with the solver. Only expressions of type Bool and type Bit-Ve...

◆ conflict() [1/2]

void conflict ( expr_vector const & fixed)
inline

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

4558 {
4559 assert(cb);
4560 expr conseq = ctx().bool_val(false);
4561 array<Z3_ast> _fixed(fixed);
4562 Z3_solver_propagate_consequence(ctx(), cb, fixed.size(), _fixed.ptr(), 0, nullptr, nullptr, conseq);
4563 }
bool Z3_API Z3_solver_propagate_consequence(Z3_context c, Z3_solver_callback cb, unsigned num_fixed, Z3_ast const *fixed, unsigned num_eqs, Z3_ast const *eq_lhs, Z3_ast const *eq_rhs, Z3_ast conseq)
propagate a consequence based on fixed values and equalities. A client may invoke it during the pro...

◆ conflict() [2/2]

void conflict ( expr_vector const & fixed,
expr_vector const & lhs,
expr_vector const & rhs )
inline

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

4565 {
4566 assert(cb);
4567 assert(lhs.size() == rhs.size());
4568 expr conseq = ctx().bool_val(false);
4569 array<Z3_ast> _fixed(fixed);
4570 array<Z3_ast> _lhs(lhs);
4571 array<Z3_ast> _rhs(rhs);
4572 Z3_solver_propagate_consequence(ctx(), cb, fixed.size(), _fixed.ptr(), lhs.size(), _lhs.ptr(), _rhs.ptr(), conseq);
4573 }

◆ created()

virtual void created ( expr const & )
inlinevirtual

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

4524{}

Referenced by register_created().

◆ ctx()

◆ decide()

virtual void decide ( expr const & ,
unsigned ,
bool  )
inlinevirtual

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

4526{}

Referenced by register_decide().

◆ eq()

virtual void eq ( expr const & ,
expr const &  )
inlinevirtual

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

4520{ }

Referenced by register_eq().

◆ final()

virtual void final ( )
inlinevirtual

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

4522{ }

◆ fixed()

virtual void fixed ( expr const & ,
expr const &  )
inlinevirtual

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

4518{ }

Referenced by conflict(), conflict(), propagate(), propagate(), and register_fixed().

◆ fresh()

virtual user_propagator_base * fresh ( context & ctx)
pure virtual

user_propagators created using fresh() are created during search and their lifetimes are restricted to search time. They should be garbage collected by the propagator used to invoke fresh(). The life-time of the Z3_context object can only be assumed valid during callbacks, such as fixed(), which contains expressions based on the context.

◆ next_split()

bool next_split ( expr const & e,
unsigned idx,
Z3_lbool phase )
inline

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

4530 {
4531 assert(cb);
4532 return Z3_solver_next_split(ctx(), cb, e, idx, phase);
4533 }
bool Z3_API Z3_solver_next_split(Z3_context c, Z3_solver_callback cb, Z3_ast t, unsigned idx, Z3_lbool phase)

◆ on_binding()

virtual bool on_binding ( expr const & ,
expr const &  )
inlinevirtual

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

4528{ return true; }

Referenced by register_on_binding().

◆ pop()

virtual void pop ( unsigned num_scopes)
pure virtual

◆ propagate() [1/2]

bool propagate ( expr_vector const & fixed,
expr const & conseq )
inline

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

4575 {
4576 assert(cb);
4577 assert((Z3_context)conseq.ctx() == (Z3_context)ctx());
4578 array<Z3_ast> _fixed(fixed);
4579 return Z3_solver_propagate_consequence(ctx(), cb, _fixed.size(), _fixed.ptr(), 0, nullptr, nullptr, conseq);
4580 }

◆ propagate() [2/2]

bool propagate ( expr_vector const & fixed,
expr_vector const & lhs,
expr_vector const & rhs,
expr const & conseq )
inline

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

4584 {
4585 assert(cb);
4586 assert((Z3_context)conseq.ctx() == (Z3_context)ctx());
4587 assert(lhs.size() == rhs.size());
4588 array<Z3_ast> _fixed(fixed);
4589 array<Z3_ast> _lhs(lhs);
4590 array<Z3_ast> _rhs(rhs);
4591
4592 return Z3_solver_propagate_consequence(ctx(), cb, _fixed.size(), _fixed.ptr(), lhs.size(), _lhs.ptr(), _rhs.ptr(), conseq);
4593 }

◆ push()

virtual void push ( )
pure virtual

◆ register_created() [1/2]

void register_created ( )
inline

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

4485 {
4486 m_created_eh = [this](expr const& e) {
4487 created(e);
4488 };
4489 if (s) {
4490 Z3_solver_propagate_created(ctx(), *s, created_eh);
4491 }
4492 }
void Z3_API Z3_solver_propagate_created(Z3_context c, Z3_solver s, Z3_created_eh created_eh)
register a callback when a new expression with a registered function is used by the solver The regist...

◆ register_created() [2/2]

void register_created ( created_eh_t & c)
inline

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

4478 {
4479 m_created_eh = c;
4480 if (s) {
4481 Z3_solver_propagate_created(ctx(), *s, created_eh);
4482 }
4483 }

◆ register_decide() [1/2]

void register_decide ( )
inline

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

4501 {
4502 m_decide_eh = [this](expr val, unsigned bit, bool is_pos) {
4503 decide(val, bit, is_pos);
4504 };
4505 if (s) {
4506 Z3_solver_propagate_decide(ctx(), *s, decide_eh);
4507 }
4508 }
void Z3_API Z3_solver_propagate_decide(Z3_context c, Z3_solver s, Z3_decide_eh decide_eh)
register a callback when the solver decides to split on a registered expression. The callback may cha...

◆ register_decide() [2/2]

void register_decide ( decide_eh_t & c)
inline

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

4494 {
4495 m_decide_eh = c;
4496 if (s) {
4497 Z3_solver_propagate_decide(ctx(), *s, decide_eh);
4498 }
4499 }

◆ register_eq() [1/2]

void register_eq ( )
inline

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

4445 {
4446 m_eq_eh = [this](expr const& x, expr const& y) {
4447 eq(x, y);
4448 };
4449 if (s) {
4450 Z3_solver_propagate_eq(ctx(), *s, eq_eh);
4451 }
4452 }
void Z3_API Z3_solver_propagate_eq(Z3_context c, Z3_solver s, Z3_eq_eh eq_eh)
register a callback on expression equalities.
bool eq(AstRef a, AstRef b)
Definition z3py.py:486

◆ register_eq() [2/2]

void register_eq ( eq_eh_t & f)
inline

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

4438 {
4439 m_eq_eh = f;
4440 if (s) {
4441 Z3_solver_propagate_eq(ctx(), *s, eq_eh);
4442 }
4443 }

◆ register_final() [1/2]

void register_final ( )
inline

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

4469 {
4470 m_final_eh = [this]() {
4471 final();
4472 };
4473 if (s) {
4474 Z3_solver_propagate_final(ctx(), *s, final_eh);
4475 }
4476 }
void Z3_API Z3_solver_propagate_final(Z3_context c, Z3_solver s, Z3_final_eh final_eh)
register a callback on final check. This provides freedom to the propagator to delay actions or imple...

◆ register_final() [2/2]

void register_final ( final_eh_t & f)
inline

register a callback on final-check. During the final check stage, all propagations have been processed. This is an opportunity for the user-propagator to delay some analysis that could be expensive to perform incrementally. It is also an opportunity for the propagator to implement branch and bound optimization.

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

4462 {
4463 m_final_eh = f;
4464 if (s) {
4465 Z3_solver_propagate_final(ctx(), *s, final_eh);
4466 }
4467 }

◆ register_fixed() [1/2]

void register_fixed ( )
inline

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

4429 {
4430 m_fixed_eh = [this](expr const &id, expr const &e) {
4431 fixed(id, e);
4432 };
4433 if (s) {
4434 Z3_solver_propagate_fixed(ctx(), *s, fixed_eh);
4435 }
4436 }
void Z3_API Z3_solver_propagate_fixed(Z3_context c, Z3_solver s, Z3_fixed_eh fixed_eh)
register a callback for when an expression is bound to a fixed value. The supported expression types ...

◆ register_fixed() [2/2]

void register_fixed ( fixed_eh_t & f)
inline

register callbacks. Callbacks can only be registered with user_propagators that were created using a solver.

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

4422 {
4423 m_fixed_eh = f;
4424 if (s) {
4425 Z3_solver_propagate_fixed(ctx(), *s, fixed_eh);
4426 }
4427 }

◆ register_on_binding()

void register_on_binding ( )
inline

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

4510 {
4511 m_on_binding_eh = [this](expr const& q, expr const& inst) {
4512 return on_binding(q, inst);
4513 };
4514 if (s)
4515 Z3_solver_propagate_on_binding(ctx(), *s, on_binding_eh);
4516 }
void Z3_API Z3_solver_propagate_on_binding(Z3_context c, Z3_solver s, Z3_on_binding_eh on_binding_eh)
register a callback when the solver instantiates a quantifier. If the callback returns false,...