Changeset 3178 for branches/f4grobner/term.lisp
- Timestamp:
- 2015-06-22T18:15:18-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/term.lisp
r3177 r3178 77 77 |# 78 78 79 (defmethod update-instance-for-different-class ((old monom) (new standard-class)79 (defmethod update-instance-for-different-class ((old monom) (new term) 80 80 &rest 81 81 initargs 82 82 &key 83 83 &allow-other-keys) 84 (format t "UPDATE-INSTANCE-FOR-DIFFERENT-CLASS MONOM->TERM called.%") 84 85 (format t "Old: ~A~%" old) 85 86 (format t "Initargs: ~A~%" initargs) 86 (call-next-method) 87 ) 87 (call-next-method)) 88 89 (defmethod update-instance-for-different-class ((old monom) (new scalar)) 90 &rest 91 initargs 92 &key 93 &allow-other-keys) 94 (format t "UPDATE-INSTANCE-FOR-DIFFERENT-CLASS MONOM->SCALAR called.%") 95 (format t "Old: ~A~%" old) 96 (format t "Initargs: ~A~%" initargs) 97 (call-next-method)) 88 98 89 99
Note:
See TracChangeset
for help on using the changeset viewer.