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 2054


Ignore:
Timestamp:
2015-06-17T18:48:45-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r2049 r2054  
    146146  (monom-total-degree m start end))
    147147
    148 (defmethod ring-mul ((m1 monom) (m2 monom))  &aux (result (copy-seq m1)))
     148(defmethod monom-mul ((m1 monom) (m2 monom))  &aux (result (copy-seq m1)))
    149149"Multiply monomial M1 by monomial M2."
    150150  (with-slots ((exponents1 exponents))
     
    157157        (make-instance 'monom :dim dim :exponents exponents)))))
    158158
    159 (defmethod ring-div ((m1 monom) (m2 monom))
     159(defmethod monom-div ((m1 monom) (m2 monom))
    160160  "Divide monomial M1 by monomial M2."
    161161  (with-slots ((exponents1 exponents))
     
    168168        (make-instance 'monom :dim dim :exponents exponents)))))
    169169
    170 (defmethod ring-divides-p ((m1 monom) (m2 monom))
     170(defmethod monom-divides-p ((m1 monom) (m2 monom))
    171171  "Returns T if monomial M1 divides monomial M2, NIL otherwise."
    172172  (with-slots ((exponents1 exponents))
Note: See TracChangeset for help on using the changeset viewer.