mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
fix for pb2bv_model_converter
This commit is contained in:
parent
1fe4a82c76
commit
18340b0e95
1 changed files with 2 additions and 2 deletions
|
@ -110,8 +110,8 @@ model_converter * pb2bv_model_converter::translate(ast_translation & translator)
|
||||||
func_decl * f1 = translator(it->first);
|
func_decl * f1 = translator(it->first);
|
||||||
func_decl * f2 = translator(it->second);
|
func_decl * f2 = translator(it->second);
|
||||||
res->m_c2bit.push_back(func_decl_pair(f1, f2));
|
res->m_c2bit.push_back(func_decl_pair(f1, f2));
|
||||||
m.inc_ref(f1);
|
to.inc_ref(f1);
|
||||||
m.inc_ref(f2);
|
to.inc_ref(f2);
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue