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 2943


Ignore:
Timestamp:
2015-06-21T13:07:42-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/term.lisp

    r2942 r2943  
    100100|#
    101101
    102 (defmethod multiply-by ((self term) (other term))
     102(defmethod multiply-by :after ((self term) (other term))
    103103  "Destructively multiply terms SELF and OTHER and store the result into SELF.
    104104It returns SELF."
    105   (setf (r-coeff self) (multiply-by (r-coeff self) (r-coeff other)))
    106   (call-next-method))
     105  (setf (r-coeff self) (multiply-by (r-coeff self) (r-coeff other))))
     106
    107107
    108108(defmethod divide-by ((self term) (other term))
Note: See TracChangeset for help on using the changeset viewer.