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.

Ignore:
Timestamp:
2016-06-01T14:24:12-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r4129 r4130  
    221221(defmethod copy-instance :around ((object monom)  &rest initargs &key &allow-other-keys)
    222222  "An :AROUND method of COPY-INSTANCE. It replaces exponents with a fresh copy of the sequence."
    223     (declare (ignore object initargs))
    224     (let ((copy (call-next-method)))
    225       (setf (monom-exponents copy) (copy-seq (monom-exponents copy)))
    226       copy))
     223  (declare (ignore object initargs))
     224  (let ((copy (call-next-method)))
     225    (setf (monom-exponents copy) (copy-seq (monom-exponents copy)))
     226    copy))
    227227
    228228(defgeneric unary-inverse (self)
Note: See TracChangeset for help on using the changeset viewer.