close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 3711


Ignore:
Timestamp:
2015-09-06T07:30:51-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3710 r3711  
    465465  "Calculate [F', U1*P1-1,U2*P2-1,...,UK*PK-1], where
    466466PLIST=[P1,P2,...,PK] and F' is F with variables U1,U2,...,UK inserted
    467 as first K variables."
     467as first K variables. It destructively modifies F and PLIST."
    468468  (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
    469469         (standard-extension-1 plist)))
     
    472472  "Calculate [F', U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]
    473473and F' is F with variables U1,U2,...,UK inserted as first K
    474 variables."
     474variables. It destructively modifies F and PLIST."
    475475  (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
    476476         (list (standard-sum plist))))
     
    478478(defun saturation-extension-1 (f p)
    479479  "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."
     480F' is F with variable inserted as the first variable. It destructively modifies F and P."
    481481  (polysaturation-extension f (list p)))
Note: See TracChangeset for help on using the changeset viewer.