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 981


Ignore:
Timestamp:
2015-06-09T20:43:57-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r980 r981  
    115115
    116116(defun scalar-times-poly (ring c p)
    117   (declare (type ring ring))
     117  (declare (type ring ring) (poly p))
    118118  (make-poly-from-termlist (scalar-times-termlist ring c (poly-termlist p)) (poly-sugar p)))
    119119
    120120;; The scalar product omitting the head term
    121121(defun scalar-times-poly-1 (ring c p)
    122   (declare (type ring ring))
     122  (declare (type ring ring) (poly p))
    123123  (make-poly-from-termlist (scalar-times-termlist ring c (cdr (poly-termlist p))) (poly-sugar p)))
    124124
    125125(defun monom-times-poly (m p)
    126   (declare (type ring ring))
     126  (declare (type ring ring) (poly p))
    127127  (make-poly-from-termlist
    128128   (monom-times-termlist m (poly-termlist p))
Note: See TracChangeset for help on using the changeset viewer.