3
0
Fork 0
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:
Clemens Eisenhofer 2022-03-27 04:36:15 +02:00 committed by GitHub
parent 3828130791
commit 7bb969ab52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

View file

@ -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) {