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 2086


Ignore:
Timestamp:
2015-06-17T19:41:33-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r2085 r2086  
    285285  m)
    286286
    287 (defun monom->list (m)
     287(defmethod monom->list ((m monom))
    288288  "A human-readable representation of a monomial M as a list of exponents." 
    289   (declare (type monom m))
    290   (coerce m 'list))
    291 |#
     289  (with-slots (exponents)
     290      m
     291    (coerce exponents 'list)))
Note: See TracChangeset for help on using the changeset viewer.