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 2803


Ignore:
Timestamp:
2015-06-20T21:49:50-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r2802 r2803  
    227227                    order-fn))))))))
    228228
     229
     230(defmethod multiply-by ((self poly) (other poly))
     231  (setf (poly-termlist self) (multiply-termlists (poly-termlist self)
     232                                                 (poly-termlist other)
     233                                                 (poly-term-order self)))
     234  self)
    229235
    230236#|
Note: See TracChangeset for help on using the changeset viewer.