Changeset 4130 for branches/f4grobner
- Timestamp:
- 2016-06-01T14:24:12-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r4129 r4130 221 221 (defmethod copy-instance :around ((object monom) &rest initargs &key &allow-other-keys) 222 222 "An :AROUND method of COPY-INSTANCE. It replaces exponents with a fresh copy of the sequence." 223 224 225 226 223 (declare (ignore object initargs)) 224 (let ((copy (call-next-method))) 225 (setf (monom-exponents copy) (copy-seq (monom-exponents copy))) 226 copy)) 227 227 228 228 (defgeneric unary-inverse (self)
Note:
See TracChangeset
for help on using the changeset viewer.