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 3554


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3553 r3554  
    213213    (universal-multiply-by (copy-instance object1) (copy-instance object2))))
    214214
     215(defgeneric multiply (&rest factors)
     216  (:documentation "Non-destructively divide object NUMERATOR by product of DENOMINATORS.")
     217  (:method ((numerator monom) &rest denominators)
     218    (reduce #'multiply-2 factors)))
     219
    215220(defgeneric divide (numerator &rest denominators)
    216221  (:documentation "Non-destructively divide object NUMERATOR by product of DENOMINATORS.")
Note: See TracChangeset for help on using the changeset viewer.