- Timestamp:
- 2015-06-17T19:41:33-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r2085 r2086 285 285 m) 286 286 287 (def un monom->list (m)287 (defmethod monom->list ((m monom)) 288 288 "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.