- Timestamp:
- 2015-06-23T08:43:44-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r3290 r3291 69 69 dimension exponents)))) 70 70 71 ;; SHARED-INITIALIZE allows instance initialization in a style similar to MAKE-ARRAY, e.g. 72 ;; 73 ;; (MAKE-INSTANCE :EXPONENTS '(1 2 3)) --> #<MONOM DIMENSION=3 EXPONENTS=#(1 2 3)> 74 ;; (MAKE-INSTANCE :DIMENSION 3) --> #<MONOM DIMENSION=3 EXPONENTS=#(0 0 0)> 75 ;; (MAKE-INSTANCE :DIMENSION 3 :EXPONENT 7) --> #<MONOM DIMENSION=3 EXPONENTS=#(7 7 7)> 76 ;; 71 77 (defmethod shared-initialize :after ((self monom) slot-names 72 78 &key
Note:
See TracChangeset
for help on using the changeset viewer.