mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
FPA API bugfixes
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
c508b66cf7
commit
2cd4edf1a2
|
@ -122,7 +122,7 @@ namespace smt {
|
||||||
|
|
||||||
m_rw(term, t);
|
m_rw(term, t);
|
||||||
|
|
||||||
if (m_converter.is_rm_sort(term_sort)) {
|
if (m_converter.is_rm(term_sort)) {
|
||||||
SASSERT(is_app(t));
|
SASSERT(is_app(t));
|
||||||
expr_ref bv_rm(m);
|
expr_ref bv_rm(m);
|
||||||
proof_ref bv_pr(m);
|
proof_ref bv_pr(m);
|
||||||
|
@ -183,7 +183,7 @@ namespace smt {
|
||||||
m_rw(owner, converted);
|
m_rw(owner, converted);
|
||||||
m_trans_map.insert(owner, converted, 0);
|
m_trans_map.insert(owner, converted, 0);
|
||||||
|
|
||||||
if (m_converter.is_rm_sort(m.get_sort(owner))) {
|
if (m_converter.is_rm(m.get_sort(owner))) {
|
||||||
mk_eq_bv_const(converted);
|
mk_eq_bv_const(converted);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue