patrick
/
plasp
Archived
1
0
Fork 0

Fixed issue with multiple negations.

This commit is contained in:
Patrick Lühne 2016-09-03 00:25:58 +02:00
parent 63de1891af
commit da88a8816c
1 changed files with 5 additions and 2 deletions

View File

@ -47,13 +47,16 @@ ExpressionPointer Not::normalize()
{
BOOST_ASSERT(m_argumentStorage);
// Remove double negations
// Remove double negations immediately
if (m_argumentStorage->expressionType() == Expression::Type::Not)
{
auto &argument = dynamic_cast<Not &>(*m_argumentStorage);
auto normalized = std::move(argument.m_argumentStorage);
normalized->normalize();
auto normalizedInner = normalized->normalize();
if (normalizedInner)
return normalizedInner;
return normalized;
}