mirror of
https://github.com/Z3Prover/z3
synced 2025-05-13 02:34:43 +00:00
Internal consistency: FP exponents are always passed before significands.
This commit is contained in:
parent
758c9cd7a0
commit
677ff221f8
9 changed files with 256 additions and 256 deletions
|
@ -235,7 +235,7 @@ namespace smt {
|
|||
SASSERT(mpzm.is_int64(exp_u));
|
||||
|
||||
scoped_mpf f(mpfm);
|
||||
mpfm.set(f, m_ebits, m_sbits, mpzm.is_one(sgn_z), sig_z, mpzm.get_int64(exp_u));
|
||||
mpfm.set(f, m_ebits, m_sbits, mpzm.is_one(sgn_z), mpzm.get_int64(exp_u), sig_z);
|
||||
result = m_fu.mk_value(f);
|
||||
|
||||
TRACE("t_fpa", tout << "fpa_value_proc::mk_value [" <<
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue