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 2036


Ignore:
Timestamp:
2015-06-17T16:00:12-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r2035 r2036  
    8080
    8181(defmethod print-object ((m monom) stream)
    82   (princ (slot-value m 'exponents)))
     82  (princ (slot-value m 'exponents) stream))
    8383
    8484;; If a monomial is redefined as structure with slot EXPONENTS, the function
     
    148148(defmethod ring-div ((m1 monom) (m2 monom))
    149149  "Divide monomial M1 by monomial M2."
    150   (with-slots (exponents1 exponents)
     150  (with-slots (exponents exponents1)
    151151      m1
    152     (with-slots (exponents2 exponents2)
     152    (with-slots (exponents exponents2)
    153153        m2
    154154      (let* ((exponents (copy-seq exponents1))
Note: See TracChangeset for help on using the changeset viewer.