close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 1210


Ignore:
Timestamp:
2015-06-11T11:42:34-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/division.lisp

    r1207 r1210  
    8383       (debug-cgb "~&~3T~d reduction~:p" division-count)
    8484       (when (poly-zerop r) (debug-cgb " ---> 0"))
    85        (values (mapcar #'poly-nreverse a) (poly-nreverse r) c division-count))
     85       ;; We obtained the terms in reverse order, must fix that
     86       (setf a (mapcar #'poly-nreverse a)
     87             r (poly-nreverse r))
     88       (values a r c division-count))
    8689    (declare (fixnum division-count))
    8790    (do ((fl fl (rest fl))              ;scan list of divisors
Note: See TracChangeset for help on using the changeset viewer.