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 3670 for branches/f4grobner


Ignore:
Timestamp:
2015-09-06T05:02:27-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3669 r3670  
    554554  (setf (term-coeff self) (multiply-by (term-coeff self) (term-coeff other))))
    555555
    556 (defmethod multiply-by :before ((self term) (other number))
    557   "Destructively multiply terms SELF and OTHER and store the result into SELF.
    558 It returns SELF."
    559   (setf (term-coeff self) (multiply-by (term-coeff self) other)))
    560 
    561 (defmethod multiply-by :before ((self term) other)
    562   (setf (term-coeff self) (multiply-by (term-coeff self) other)))
    563 
    564556(defmethod left-tensor-product-by :before ((self term) (other term))
    565557  (setf (term-coeff self) (multiply-by (term-coeff self) (term-coeff other))))
Note: See TracChangeset for help on using the changeset viewer.