Removed redundant debugging statement from negation rules.

parent 037b6821
...@@ -46,8 +46,6 @@ def match_negate_polynome(node): ...@@ -46,8 +46,6 @@ def match_negate_polynome(node):
--a -> a --a -> a
-(a + b) -> -a - b -(a + b) -> -a - b
""" """
if not node.negated and node.type == TYPE_OPERATOR:
print 'operator\'s negated childs:', [n.negated for n in node]
assert node.negated, str(node.negated) + '; ' + str(node) assert node.negated, str(node.negated) + '; ' + str(node)
p = [] p = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment