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 977


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r976 r977  
    115115
    116116(defun scalar-times-poly (ring c p)
     117  (declare (type ring ring))
    117118  (make-poly-from-termlist (scalar-times-termlist ring c (poly-termlist p)) (poly-sugar p)))
    118119
    119120;; The scalar product omitting the head term
    120121(defun scalar-times-poly-1 (ring c p)
     122  (declare (type ring ring))
    121123  (make-poly-from-termlist (scalar-times-termlist ring c (cdr (poly-termlist p))) (poly-sugar p)))
    122124
    123125(defun monom-times-poly (m p)
     126  (declare (type ring ring))
    124127  (make-poly-from-termlist (monom-times-termlist m (poly-termlist p)) (+ (poly-sugar p) (monom-sugar m))))
    125128
Note: See TracChangeset for help on using the changeset viewer.