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 1952


Ignore:
Timestamp:
2015-06-15T18:59:36-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/termlist.lisp

    r1951 r1952  
    5454(defun termlist-contract (p &optional (k 1))
    5555  "Eliminate first K variables from a polynomial P."
    56   (mapcar #'(lambda (term) (make-term :monom (monom-contract (term-monom term) k)
    57                                       :coeff (term-coeff term)))
     56  (mapcar #'(lambda (term)
     57              (declare (type term term))
     58              (make-term :monom (monom-contract (term-monom term) k)
     59                         :coeff (term-coeff term)))
    5860          p))
    5961
Note: See TracChangeset for help on using the changeset viewer.