solve bug with not necessary 0 in poly add

This commit is contained in:
Benjamin Bertrand 2016-03-22 09:27:46 +03:00
parent 2abee1095a
commit e0a160076c
1 changed files with 1 additions and 2 deletions

View File

@ -417,8 +417,7 @@ class AbstractPolynom(Explicable):
smpl_elem.append(smpl_c)
pstfx_add = postfix_op(
smpl_elem,
#[i for i in smpl_elem if i != 0],
[i for i in smpl_elem if i != 0],
op.add
)