fjames86 / fpoly

Manipulate dense multivariate polynomials
0 stars 0 forks source link

bug in make-fpoly #13

Closed fjames86 closed 11 years ago

fjames86 commented 11 years ago

(make-fpoly nil 0) -> #<FPOLY :VARS (NIL) ...> intead of #<FPOLY :VARS NIL ...>

Fix:

(defun make-fpoly (variables degree &optional coeffs)
"Make an fpoly object." (let* ((vars (cond ((null variables) nil) ((symbolp variables) (list variables)) (t variables))) ....

fjames86 commented 11 years ago

fixed