Changeset 2551 for branches/f4grobner/polynomial.lisp
- Timestamp:
- 2015-06-19T16:10:13-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2550 r2551 113 113 (do ((p termlist1 (cdr p)) 114 114 (q termlist2) 115 l ast-equal)115 lm-equal) 116 116 ((endp p) 117 117 ;; Include remaining terms of termlist1 … … 123 123 (lex> (lt r) (lt p)) 124 124 ;; Save the info about equality of last copied term 125 (setf last-equal equal-p) 125 (unless greater-p 126 (when equal-p 127 (setf (lc p) (add-to (lc p) (lc q))))) 126 128 greater-p)) 127 (push (lt r) p)) 128 ;; Now compare leading terms of p and q 129 (cond 130 (last-equal 131 ;; Simply add coefficients 132 (setf (lc p) (add-to (lc p) (lc q))))))))) 129 (push (lt r) p)))))) 133 130 self) 134 131
Note:
See TracChangeset
for help on using the changeset viewer.