- Timestamp:
- 2015-06-19T11:29:02-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2488 r2500 107 107 self) 108 108 109 110 (defgeneric add-to (self other) 111 (:method ((self poly) (other poly)))) 112 113 (defgeneric subtract-from (self other) 114 (:method ((self poly) (other poly)))) 115 116 (defmethod unary-uminus (self)) 109 (defmethod add-to ((self poly) (other poly)) 110 111 (defmethod subtract-from ((self poly) (other poly))) 112 113 (defmethod unary-uminus ((self poly))) 117 114 118 115 #|
Note:
See TracChangeset
for help on using the changeset viewer.