ExprEngine; Fix Z3 usage for floats

This commit is contained in:
Daniel Marjamäki 2020-01-16 19:35:05 +01:00
parent bc737be0b5
commit 272fbfeb74
1 changed files with 1 additions and 1 deletions

View File

@ -602,7 +602,7 @@ struct ExprData {
#ifdef NEW_Z3
z3::expr e = context.fpa_const(name.c_str(), 11, 53);
#else
z3::expr e = context.real_val(name.c_str());
z3::expr e = context.real_const(name.c_str());
#endif
valueExpr.emplace(name, e);
return e;