- Timestamp:
- 2015-06-21T17:52:43-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3060 r3061 276 276 "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK] 277 277 is a list of polynomials. Destructively modifies PLIST elements." 278 (makelist (left-tensor-product-by (nth i plist) (make-monom-variable k i)) (i 0 k))) 278 (mapc #'(lambda (poly) 279 (left-tensor-product-by poly (make-monom-variable k i))) 280 plist)) 279 281 280 282 #|
Note:
See TracChangeset
for help on using the changeset viewer.