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

fpa2bv build fixes

This commit is contained in:
Christoph M. Wintersteiger 2016-05-22 13:13:32 +01:00
parent fe3f8466b6
commit 8db17311ae

View file

@ -300,7 +300,7 @@ sort_ref fpa2bv_converter::replace_float_sorts(sort * s) {
has_news = true;
}
accessor_decl * ad = mk_accessor_decl(name, type_ref(s1r));
accessor_decl * ad = mk_accessor_decl(name, type_ref(s1r.get()));
new_cas.push_back(ad);
}
@ -455,7 +455,6 @@ expr_ref fpa2bv_converter::replace_float_arg(expr * a) {
break;
case AST_QUANTIFIER: {
quantifier * q = to_quantifier(a);
sort * const * srts = q->get_decl_sorts();
vector<sort*> new_sorts;
for (unsigned i = 0; q->get_num_decls(); i++) {
sort_ref ns(m);