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 3538


Ignore:
Timestamp:
2015-09-05T16:13:04-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3537 r3538  
    498498  (setf (term-coeff new) 1))
    499499
    500 (defmethod monom-multiply-by ((self term) (other term))
     500(defmethod term-multiply-by ((self term) (other term))
    501501  "Destructively multiply terms SELF and OTHER and store the result into SELF.
    502502It returns SELF."
    503   (setf (scalar-coeff self) (multiply-by (scalar-coeff self) (scalar-coeff other))))
     503  (setf (term-coeff self) (universal-multiply-by (term-coeff self) (scalar-coeff other))))
    504504
    505505(defmethod monom-left-tensor-product-by ((self term) (other term))
Note: See TracChangeset for help on using the changeset viewer.