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 3516


Ignore:
Timestamp:
2015-09-05T11:48:29-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3515 r3516  
    8484(defgeneric poly-insert-term (self monom coeff)
    8585  (:documentation "Insert a term with monomial MONOM and coefficient COEFF
    86 before all other terms.")
     86before all other terms. Order is not enforced.")
    8787  (:method ((self poly) (monom monom) coeff)
    8888    (cond ((null (poly-dimension self))
     
    9494(defgeneric poly-append-term (self monom coeff)
    9595  (:documentation "Append a term with monomial MONOM and coefficient COEFF
    96 after all other terms.")
     96after all other terms. Order is not enforced.")
    9797  (:method ((self poly) (monom monom) coeff)
    9898    (cond ((null (poly-dimension self))
Note: See TracChangeset for help on using the changeset viewer.