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 876


Ignore:
Timestamp:
2015-06-09T11:54:06-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monomial.lisp

    r875 r876  
    117117  (monom-total-degree m start end))
    118118
    119 (defun monom-div (m1 m2 &aux (result (copy-structure m1)))
     119(defun monom-div (m1 m2 &aux (result (copy-seq m1)))
    120120  "Divide monomial M1 by monomial M2."
    121121  (map-into result #'- m1 m2))
    122122
    123 (defun monom-mul (m1 m2  &aux (result (copy-structure m1)))
     123(defun monom-mul (m1 m2  &aux (result (copy-seq m1)))
    124124  "Multiply monomial M1 by monomial M2."
    125125  (map-into result #'+ m1 m2))
Note: See TracChangeset for help on using the changeset viewer.