- Timestamp:
- 2015-06-20T21:04:52-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2788 r2789 195 195 (cond 196 196 ((or (endp p) (endp q)) nil) ;p or q is 0 (represented by NIL) 197 ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q197 ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q 198 198 ((endp (cdr p)) 199 199 (multiply-term-by-termlist (car p) q)
Note:
See TracChangeset
for help on using the changeset viewer.