Changeset 1497 for branches/f4grobner
- Timestamp:
- 2015-06-12T12:50:26-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r1495 r1497 256 256 ;; Set PLIST to [U1*P1,U2*P2,...,UK*PK] 257 257 (plist (apply #'poly-append (poly-standard-extension plist)))) 258 "Calculate [F, U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]. "258 "Calculate [F, U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]. It destructively modifies F." 259 259 ;; Add -1 as the last term 260 260 (setf (cdr (last (poly-termlist plist))) … … 264 264 265 265 (defun saturation-extension-1 (ring f p) 266 "Calculate [F, U*P-1]. It destructively modifies F." 266 267 (polysaturation-extension ring f (list p))) 267 268
Note:
See TracChangeset
for help on using the changeset viewer.