Merge pull request #3642 from leonardoalt/fix_z3-46

Add z3 performance option
This commit is contained in:
chriseth 2018-03-05 12:13:39 +01:00 committed by GitHub
commit cd6ffbdf79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,7 @@ using namespace dev::solidity::smt;
Z3Interface::Z3Interface():
m_solver(m_context)
{
z3::set_param("rewriter.pull_cheap_ite", true);
}
void Z3Interface::reset()