- Timestamp:
- 2015-09-05T20:42:55-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3640 r3641 359 359 ;; of each termlist. 360 360 (flet ((subtract-1 (p) 361 (poly-append-term p (make-instance ' monom :dimension nvars) -1)))361 (poly-append-term p (make-instance 'term :dimension nvars :coeff -1)))) 362 362 (setf plist (mapc #'subtract-1 plist))) 363 363 plist) … … 376 376 order on the first K variables." 377 377 (flet ((subtract-1 (p) 378 (poly-append-term p (make-instance ' monom :dimension nvars) -1)))378 (poly-append-term p (make-instance 'term :dimension nvars :coeff -1)))) 379 379 (subtract-1 380 380 (make-instance
Note:
See TracChangeset
for help on using the changeset viewer.