Skip to content

Commit e9f5711

Browse files
committed
replace iso646 operators
1 parent 45d7b9b commit e9f5711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/flattening/boolbv_quantifier.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ Function: instantiate_quantifier
178178
bool instantiate_quantifier(exprt &expr,
179179
const namespacet &ns)
180180
{
181-
if(not(expr.id()==ID_forall || expr.id()==ID_exists))
181+
if(!(expr.id()==ID_forall || expr.id()==ID_exists))
182182
return true;
183183

184184
assert(expr.operands().size()==2);

0 commit comments

Comments
 (0)