- Timestamp:
- 2015-06-18T22:48:42-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/term.lisp
r2409 r2410 83 83 84 84 (defmethod r* ((term1 term) (monom2 monom)) 85 ( r*term1 (change-class monom2 'term)))85 (call-next-method term1 (change-class monom2 'term))) 86 86 87 87 (defmethod r* ((monom1 monom) (term2 term)) 88 ( r*(change-class monom1 'term) term2))88 (call-next-method (change-class monom1 'term) term2)) 89 89 90 90 #|
Note:
See TracChangeset
for help on using the changeset viewer.