mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 02:04:43 +00:00
parent
6ab83466d9
commit
785c9a18ca
5 changed files with 20 additions and 1 deletions
|
@ -168,6 +168,10 @@ namespace smt {
|
|||
|
||||
for (unsigned i = 0; !src_m.proofs_enabled() && i < src_ctx.m_assigned_literals.size(); ++i) {
|
||||
literal lit = src_ctx.m_assigned_literals[i];
|
||||
bool_var_data const & d = src_ctx.get_bdata(lit.var());
|
||||
if (d.is_theory_atom() && !src_ctx.m_theories.get_plugin(d.get_theory())->is_safe_to_copy(lit.var())) {
|
||||
continue;
|
||||
}
|
||||
expr_ref fml0(src_m), fml1(dst_m);
|
||||
src_ctx.literal2expr(lit, fml0);
|
||||
fml1 = tr(fml0.get());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue