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 4057


Ignore:
Timestamp:
2016-05-31T18:22:02-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r4053 r4057  
    680680  (:method ((self poly))
    681681    (make-poly-constant (poly-dimension self) 1)))
     682
     683(defgeneric poly-nreverse (self)
     684  (:documentation "Reverse the order of terms in a polynomial SELF.")
     685  (:method ((self poly))
     686    (with-slots (termlist)
     687        self
     688      nreverse termlist)
     689    self))
     690
     691
    682692   
Note: See TracChangeset for help on using the changeset viewer.