- Timestamp:
- 2015-09-06T07:30:51-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3710 r3711 465 465 "Calculate [F', U1*P1-1,U2*P2-1,...,UK*PK-1], where 466 466 PLIST=[P1,P2,...,PK] and F' is F with variables U1,U2,...,UK inserted 467 as first K variables. "467 as first K variables. It destructively modifies F and PLIST." 468 468 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f) 469 469 (standard-extension-1 plist))) … … 472 472 "Calculate [F', U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK] 473 473 and F' is F with variables U1,U2,...,UK inserted as first K 474 variables. "474 variables. It destructively modifies F and PLIST." 475 475 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f) 476 476 (list (standard-sum plist)))) … … 478 478 (defun saturation-extension-1 (f p) 479 479 "Given family of polynomials F and a polynomial P, calculate [F', U*P-1], where 480 F' is F with variable inserted as the first variable. It destructively modifies F ."480 F' is F with variable inserted as the first variable. It destructively modifies F and P." 481 481 (polysaturation-extension f (list p)))
Note:
See TracChangeset
for help on using the changeset viewer.