Changeset 2374 for branches/f4grobner
- Timestamp:
- 2015-06-18T21:26:45-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r2373 r2374 64 64 65 65 ;; Debug calls to initialize-instance 66 (defmethod shared-initialize ((self monom) 66 (defmethod shared-initialize ((self monom) slot-names 67 67 &rest 68 args68 initargs 69 69 &key 70 70 &allow-other-keys) 71 (format t "MONOM:: INITIALIZE-INSTANCE called with:~&ARGS: ~W.~%"args)71 (format t "MONOM::SHARED-INITIALIZE called with:~&SLOT-NAMES: ~W~&INITARGS: ~W.~%" slot-names initargs) 72 72 (call-next-method)) 73 73 74 75 74 (defmethod shared-initialize :after ((self monom) slot-names 76 ;;&rest initargs77 75 &key 78 76 dimension … … 81 79 &allow-other-keys 82 80 ) 83 ;;(format t "MONOM::SHARED-INITIALIZE called with:~&SLOT-NAMES: ~W~&INITARGS: ~W.~%" slot-names initargs)84 81 (if (eq slot-names t) (setf slot-names '(dimension exponents))) 85 82 (dolist (slot-name slot-names)
Note:
See TracChangeset
for help on using the changeset viewer.