Replace real division by integer division

This commit is contained in:
Leo Alt
2021-05-26 22:12:49 +02:00
parent fdf4c1ed9a
commit 3a0358bfb7
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ z3::expr Z3Interface::toZ3Expr(Expression const& _expr)
return arguments[0] - arguments[1];
else if (n == "*")
return arguments[0] * arguments[1];
else if (n == "/")
else if (n == "div")
return arguments[0] / arguments[1];
else if (n == "mod")
return z3::mod(arguments[0], arguments[1]);