Changeset 4352 for branches/f4grobner
- Timestamp:
- 2016-06-06T17:36:00-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/ring.lisp
r4351 r4352 99 99 (defgeneric multiply (factor &rest more-factors) 100 100 (:documentation "Successively multiplies factor FACTOR by the remaining arguments 101 MORE-FACTORS, using MULTIPLY-BY to multiply two factors. Thus102 FACTOR may be destructively modified.")101 MORE-FACTORS, using MULTIPLY-BY to multiply two factors. FACTOR must not be destructively modified. 102 Instead, a copy of factor should be made and returned as the value of this function.") 103 103 (:method ((factor t) &rest more-factors) 104 104 (reduce #'multiply-by more-factors :initial-value (copy-instance factor))))
Note:
See TracChangeset
for help on using the changeset viewer.