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 804


Ignore:
Timestamp:
2015-06-08T23:43:06-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/term.lisp

    r803 r804  
    5353defaults to the unit of the RING."
    5454  (declare (fixnum nvars pos power))
    55   (let ((result (make-term (make-monom nvars) :coeff coeff)))
     55  (let ((result (make-term (make-monom nvars) coeff)))
    5656    (setf (monom-elt result pos) power)
    5757    result))
     
    6363  (let ((c (funcall (ring-mul ring) (term-coeff term1) (term-coeff term2))))
    6464    (unless (funcall (ring-zerop ring) c)
    65       (make-term (monom-mul term1 term2) :coeff c))))
     65      (make-term (monom-mul term1 term2) c))))
    6666
    6767(defun term-sugar (term)
Note: See TracChangeset for help on using the changeset viewer.