svf-lib 1.0.1574 → 1.0.1575
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
Binary file
|
|
@@ -261,7 +261,7 @@ public:
|
|
|
261
261
|
|
|
262
262
|
friend bool eq(const Z3Expr &lhs, const Z3Expr &rhs)
|
|
263
263
|
{
|
|
264
|
-
return eq(lhs.getExpr(), rhs.getExpr());
|
|
264
|
+
return eq(lhs.getExpr().simplify(), rhs.getExpr().simplify());
|
|
265
265
|
}
|
|
266
266
|
|
|
267
267
|
z3::sort get_sort() const
|
|
@@ -293,7 +293,7 @@ public:
|
|
|
293
293
|
/// compute NEG
|
|
294
294
|
static inline Z3Expr NEG(const Z3Expr &z3Expr)
|
|
295
295
|
{
|
|
296
|
-
return !z3Expr;
|
|
296
|
+
return (!z3Expr).simplify();
|
|
297
297
|
}
|
|
298
298
|
|
|
299
299
|
/// compute AND, used for branch condition
|