3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

fpa rewriter tidy up

This commit is contained in:
Christoph M. Wintersteiger 2016-05-21 18:07:37 +01:00
parent 8001b1f0c7
commit b6d90a64da
2 changed files with 0 additions and 11 deletions

View file

@ -109,8 +109,6 @@ br_status fpa_rewriter::mk_app_core(func_decl * f, unsigned num_args, expr * con
st = BR_FAILED;
break;
default:
NOT_IMPLEMENTED_YET();
}
@ -892,7 +890,6 @@ br_status fpa_rewriter::mk_to_real(expr * arg, expr_ref & result) {
return BR_FAILED;
}
br_status fpa_rewriter::mk_bvwrap(expr * arg, expr_ref & result) {
if (is_app_of(arg, m_util.get_family_id(), OP_FPA_FP)) {
bv_util bu(m());
@ -923,10 +920,3 @@ br_status fpa_rewriter::mk_bvwrap(expr * arg, expr_ref & result) {
return BR_FAILED;
}
//br_status fpa_rewriter::mk_bvunwrap(expr * arg, expr_ref & result) {
// if (is_app_of(arg, m_util.get_family_id(), OP_FPA_INTERNAL_BVWRAP))
// result = to_app(arg)->get_arg(0);
//
// return BR_FAILED;
//}

View file

@ -91,7 +91,6 @@ public:
br_status mk_to_real_unspecified(unsigned ebits, unsigned sbits, expr_ref & result);
br_status mk_bvwrap(expr * arg, expr_ref & result);
br_status mk_bvunwrap(expr * arg, expr_ref & result);
};
#endif