fjames86 / fpoly

Manipulate dense multivariate polynomials
0 stars 0 forks source link

bug in print-fpoly #15

Closed fjames86 closed 11 years ago

fjames86 commented 11 years ago

prints two - signs on negative coeffs i.e. - -4_X^2 instead of - 4_X^2

Correct by multiplying by the sign, replace (t (format stream "~A" coeff))) -> (t (format stream "~A" (* sign coeff)))) in the print coefficient cond

fjames86 commented 11 years ago

done