Changeset 2278 for branches/f4grobner/monom.lisp
- Timestamp:
- 2015-06-18T14:16:57-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r2277 r2278 66 66 (slot-value self 'exponents))) 67 67 68 (defmethod initialize-instance ((self monom) 69 ;;&rest args 70 &key 71 dimension 72 exponents 73 exponent 74 &allow-other-keys 75 ) 76 ;;(format t "INITIALIZE-INSTANCE called with:~&ARGS: ~W.~%" args) 68 (defmethod initialize-instance :before ((self monom) 69 ;;&rest args 70 &key 71 dimension 72 exponents 73 exponent 74 &allow-other-keys 75 ) 76 (format t "INITIALIZE-INSTANCE called with:~&ARGS: ~W.~%" args)) 77 78 (defmethod initialize-instance :after ((self monom) 79 ;;&rest args 80 &key 81 dimension 82 exponents 83 exponent 84 &allow-other-keys 85 ) 77 86 (let* ((new-dimension (cond (dimension dimension) 78 87 (exponents
Note:
See TracChangeset
for help on using the changeset viewer.