- Timestamp:
- 2015-06-17T20:43:18-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r2124 r2125 45 45 "EXPONENT" 46 46 "MAKE-MONOM" 47 "MONOM-DIM "47 "MONOM-DIMENSION" 48 48 "MONOM-EXPONENTS" 49 49 "MAKE-MONOM-VARIABLE")) … … 58 58 59 59 (defclass monom () 60 ((dim :initarg :dim :accessor dim)61 (exponents :initarg :exponents :accessor exponents))60 ((dim :initarg :dim :accessor monom-dimension) 61 (exponents :initarg :exponents :accessor monom-exponents)) 62 62 (:default-initargs :dim 0 :exponents nil)) 63 63
Note:
See TracChangeset
for help on using the changeset viewer.