Replace implies by =>

This commit is contained in:
Leo Alt
2021-05-26 22:12:49 +02:00
parent daea5f886d
commit b57b8daf0a
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -189,7 +189,7 @@ z3::expr Z3Interface::toZ3Expr(Expression const& _expr)
return arguments[0] && arguments[1];
else if (n == "or")
return arguments[0] || arguments[1];
else if (n == "implies")
else if (n == "=>")
return z3::implies(arguments[0], arguments[1]);
else if (n == "=")
return arguments[0] == arguments[1];