Minor formatting.
This commit is contained in:
parent
b272a91888
commit
3b26580815
@ -174,12 +174,12 @@ void simplify(ast::Exists &exists, ast::Formula &formula)
|
|||||||
if (!exists.variables.empty())
|
if (!exists.variables.empty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
assert(!conjunction.arguments.empty());
|
assert(!arguments.empty());
|
||||||
|
|
||||||
// If the argument now is a conjunction with just one element, directly replace the input formula with the argument
|
// If the argument now is a conjunction with just one element, directly replace the input formula with the argument
|
||||||
if (conjunction.arguments.size() == 1)
|
if (arguments.size() == 1)
|
||||||
{
|
{
|
||||||
formula = std::move(conjunction.arguments.front());
|
formula = std::move(arguments.front());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user