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 3605


Ignore:
Timestamp:
2015-09-05T18:47:19-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3602 r3605  
    372372    m))
    373373
    374 (defmethod monom->list ((m monom))
    375   "A human-readable representation of a monomial M as a list of exponents." 
    376   (coerce (monom-exponents m) 'list))
    377 
     374(defgeneric ->list (object)
     375  (:method ((m monom))
     376    "A human-readable representation of a monomial M as a list of exponents." 
     377    (coerce (monom-exponents m) 'list)))
    378378
    379379;; pure lexicographic
Note: See TracChangeset for help on using the changeset viewer.