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 2567


Ignore:
Timestamp:
2015-06-19T17:43:38-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r2566 r2567  
    105105            (cond
    106106              (greater-p
    107                (psetf (cdr q) p
    108                       q (cdr q)
    109                       (cdr p) p))
     107               ;; P' <- Q
     108               ;; (CDR P') <- P
     109               ;; Q' <- (CDR Q)
     110               (rotatef p q (cdr q)))
    110111              (equal-p
    111112               (setf (lc p) (add-to (lc p) (lc q))
    112113                     p (cdr p)
    113114                     q (cdr q))))
    114             (not greater-p))))))
     115            (not greater-p))
     116          (print p)
     117          (print q)))))
    115118  self)
    116119
Note: See TracChangeset for help on using the changeset viewer.