- Timestamp:
- 2015-09-06T07:24:31-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3705 r3708 471 471 472 472 (defun saturation-extension (f plist &aux (k (length plist))) 473 "Calculate [F', U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK]." 473 "Calculate [F', U1*P1-1,U2*P2-1,...,UK*PK-1], where 474 PLIST=[P1,P2,...,PK] and F' is F with variables U1,U2,...,UK inserted 475 as first K variables." 474 476 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f) 475 477 (standard-extension-1 plist))) 476 478 477 479 (defun polysaturation-extension (f plist &aux (k (length plist))) 478 "Calculate [F', U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]." 480 "Calculate [F', U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK] 481 and F' is F with variables U1,U2,...,UK inserted as first K 482 variables." 479 483 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f) 480 484 (list (standard-sum plist))))
Note:
See TracChangeset
for help on using the changeset viewer.