Changeset 2927 for branches/f4grobner
- Timestamp:
- 2015-06-21T12:52:23-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2926 r2927 199 199 200 200 (defmacro multiply-term-by-termlist-dropping-zeros (term termlist 201 &optional (reverse-arg-order nil))201 &optional (reverse-arg-order-P nil)) 202 202 "Multiplies term TERM by a list of term, TERMLIST. 203 203 Takes into accound divisors of zero in the ring, by 204 deleting zero terms." 204 deleting zero terms. Optionally, if REVERSE-ARG-ORDER-P 205 is T, change the order of arguments. This may be important 206 if we extend the package to non-commutative rings." 205 207 `(mapcan #'(lambda (other-term) 206 208 (let ((prod (r*
Note:
See TracChangeset
for help on using the changeset viewer.