Add compute_exp in simplified

This commit is contained in:
Lafrite 2014-12-21 19:13:52 +01:00
parent 1729ef1d24
commit 981c8db0e5
1 changed files with 1 additions and 0 deletions

View File

@ -110,6 +110,7 @@ class Expression(object):
def simplified(self):
""" Get the simplified version of the expression """
self.compute_exp()
try:
return self.child.simplified()
except AttributeError: