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 2762


Ignore:
Timestamp:
2015-06-20T19:24:10-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r2761 r2762  
    122122       (multiple-value-bind
    123123             (greater-p equal-p)
    124            (funcall ,order-fn (car p) (car q))
     124           (,order-fn (car p) (car q))
    125125         (cond
    126126           (greater-p
     
    128128            )
    129129           (equal-p
    130             (let ((s (funcall ,add/subtract-fn (lc p) (lc q))))
     130            (let ((s (,add/subtract-fn (lc p) (lc q))))
    131131              (cond
    132132                ((r-zerop s)
     
    142142            ;;that we are doing subtraction
    143143            ,@(when uminus-fn
    144                     `((setf (lc q) (funcall #',uminus-fn (lc q)))))
     144                    `((setf (lc q) (,uminus-fn (lc q)))))
    145145            (rotatef (cdr q) r q)))))))
    146146
Note: See TracChangeset for help on using the changeset viewer.