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:
parent
3828130791
commit
7bb969ab52
4 changed files with 7 additions and 7 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue