- Timestamp:
- 2015-06-21T23:43:00-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3101 r3104 320 320 (defun standard-extension-1 (plist 321 321 &aux 322 (k (length plist))323 322 (plist (standard-extension plist)) 324 323 (nvars (poly-dimension (car plist)))) … … 332 331 ;; of each termlist. 333 332 (flet ((subtract-1 (p) 334 (append-item p (make-instance 'term :coeff -1 :dimension (+ k nvars)))))333 (append-item p (make-instance 'term :coeff -1 :dimension nvars)))) 335 334 (setf plist (mapc #'subtract-1 plist))) 336 335 plist)
Note:
See TracChangeset
for help on using the changeset viewer.