3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-23 19:47:52 +00:00

Bugfix for fp.to_sbv and fp.to_ubv.

Fixes #162.
This commit is contained in:
Christoph M. Wintersteiger 2015-09-15 19:03:31 +01:00
parent a1073206f9
commit 869cd6074d
2 changed files with 59 additions and 179 deletions

View file

@ -186,7 +186,9 @@ protected:
expr_ref & c_sgn, expr_ref & c_sig, expr_ref & c_exp, expr_ref & d_sgn, expr_ref & d_sig, expr_ref & d_exp,
expr_ref & res_sgn, expr_ref & res_sig, expr_ref & res_exp);
app * mk_fresh_const(char const * prefix, unsigned sz);
app * mk_fresh_const(char const * prefix, unsigned sz);
void mk_to_bv(func_decl * f, unsigned num, expr * const * args, bool is_signed, expr_ref & result);
};
#endif