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 2796


Ignore:
Timestamp:
2015-06-20T21:30:15-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r2795 r2796  
    219219
    220220
    221 (defun multiply-termlists (p q)
     221(defun multiply-termlists (p q order-fn)
    222222  (cond
    223223    ((or (endp p) (endp q)) nil)        ;p or q is 0 (represented by NIL)
     
    231231           (tail (add-termlists
    232232                  (multiply-term-by-termlist-dropping-zeros (car p) (cdr q))
    233                   (multiply-termlists (cdr p) q))))
    234 
     233                  (multiply-termlists (cdr p) q)
     234                  order-fn)))
    235235       (nconc head tail)))))))
    236236
Note: See TracChangeset for help on using the changeset viewer.