Removed redundant normalization statement.
This commit is contained in:
parent
3fa7b93d44
commit
c2af84a800
@ -68,7 +68,7 @@ ExpressionPointer Not::negationNormalized()
|
|||||||
{
|
{
|
||||||
auto &argument = dynamic_cast<Not &>(*m_argument);
|
auto &argument = dynamic_cast<Not &>(*m_argument);
|
||||||
|
|
||||||
return argument.m_argument->negationNormalized();
|
return argument.m_argument;
|
||||||
}
|
}
|
||||||
|
|
||||||
// De Morgan for negative conjunctions
|
// De Morgan for negative conjunctions
|
||||||
|
Reference in New Issue
Block a user