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 3515


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3514 r3515  
    8383
    8484(defgeneric poly-insert-term (self monom coeff)
     85  (:documentation "Insert a term with monomial MONOM and coefficient COEFF
     86before all other terms.")
    8587  (:method ((self poly) (monom monom) coeff)
    8688    (cond ((null (poly-dimension self))
     
    9193
    9294(defgeneric poly-append-term (self monom coeff)
     95  (:documentation "Append a term with monomial MONOM and coefficient COEFF
     96after all other terms.")
    9397  (:method ((self poly) (monom monom) coeff)
    9498    (cond ((null (poly-dimension self))
Note: See TracChangeset for help on using the changeset viewer.