3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-10 17:25:47 +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

@ -206,7 +206,7 @@ namespace smt {
ast_translation tr(src_ctx.m, m, false);
for (unsigned i = 0; i < src_ctx.m_user_propagator->get_num_vars(); ++i) {
app* e = src_ctx.m_user_propagator->get_expr(i);
m_user_propagator->add_expr(tr(e));
m_user_propagator->add_expr(tr(e), true);
}
}