mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
This commit is contained in:
parent
b84b5d091e
commit
89ed19a719
1 changed files with 3 additions and 1 deletions
|
@ -312,7 +312,9 @@ namespace fpa {
|
||||||
if (!wrapped) wrapped = m_converter.wrap(e);
|
if (!wrapped) wrapped = m_converter.wrap(e);
|
||||||
return expr2enode(wrapped) != nullptr;
|
return expr2enode(wrapped) != nullptr;
|
||||||
};
|
};
|
||||||
if (m_fpa_util.is_fp(e)) {
|
if (m_fpa_util.is_rm_numeral(e) || m_fpa_util.is_numeral(e))
|
||||||
|
value = e;
|
||||||
|
else if (m_fpa_util.is_fp(e)) {
|
||||||
SASSERT(n->num_args() == 3);
|
SASSERT(n->num_args() == 3);
|
||||||
expr* a = values.get(n->get_arg(0)->get_root_id());
|
expr* a = values.get(n->get_arg(0)->get_root_id());
|
||||||
expr* b = values.get(n->get_arg(1)->get_root_id());
|
expr* b = values.get(n->get_arg(1)->get_root_id());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue