Changeset 1982 for branches/f4grobner/pol.lisp
- Timestamp:
- 2015-06-15T21:59:38-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/pol.lisp
r1981 r1982 89 89 )) 90 90 91 (defun make-poly-from-termlist (termlist &optional (sugar (termlist-sugar termlist)))) 92 (defun make-poly-zero (&aux (termlist nil) (sugar -1))) 91 (defun make-poly-from-termlist (termlist &optional (sugar (termlist-sugar termlist))) 92 (make-instance 'poly :termlist termlist :sugar sugar)) 93 94 (defun make-poly-zero (&aux (termlist nil) (sugar -1)) 95 (make-instance 'poly :termlist termlist :sugar sugar)) 96 93 97 (defun make-poly-variable (ring nvars pos &optional (power 1) 94 98 &aux
Note:
See TracChangeset
for help on using the changeset viewer.