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 4333


Ignore:
Timestamp:
2016-06-05T20:43:45-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r4332 r4333  
    206206  (:documentation "Multiply vector SELF by a scalar OTHER.")
    207207  (:method ((self poly) other)
    208     (mapc #'(lambda (term) (setf (term-coeff term) (multiply (term-coeff term) other)))
     208    (mapc #'(lambda (term) (setf (term-coeff term) (multiply-by (term-coeff term) other)))
    209209          (poly-termlist self))
    210210    self))
     
    213213  (:documentation "Divide vector SELF by a scalar OTHER.")
    214214  (:method ((self poly) other)
    215     (mapc #'(lambda (term) (setf (term-coeff term) (divide (term-coeff term) other)))
     215    (mapc #'(lambda (term) (setf (term-coeff term) (divide-by (term-coeff term) other)))
    216216          (poly-termlist self))
    217217    self))
Note: See TracChangeset for help on using the changeset viewer.