mirror of
https://github.com/Z3Prover/z3
synced 2025-06-22 05:43:39 +00:00
Fixed problem with registering bitvector functions (#5923)
This commit is contained in:
parent
3828130791
commit
7bb969ab52
4 changed files with 7 additions and 7 deletions
|
@ -1729,7 +1729,7 @@ namespace smt {
|
|||
void user_propagate_register_expr(expr* e) {
|
||||
if (!m_user_propagator)
|
||||
throw default_exception("user propagator must be initialized");
|
||||
m_user_propagator->add_expr(e);
|
||||
m_user_propagator->add_expr(e, true);
|
||||
}
|
||||
|
||||
void user_propagate_register_created(user_propagator::created_eh_t& r) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue