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 732


Ignore:
Timestamp:
2015-06-08T20:39:36-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monomial.lisp

    r731 r732  
    138138  "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
    139139  (declare (type monom m1 m2 m3 m4))
    140   (every #'(lambda (x y z w) (declare (type exponent x y z w)) (<= (max x y) (max z w))) m1 m2 m3 m4))
     140  (every #'(lambda (x y z w) (declare (type exponent x y z w)) (<= (max x y) (max z w)))
     141         (monom-exponents m1)
     142         (monom-exponents m2)
     143         (monom-exponents m3)
     144         (monom-exponents m4)))
    141145
    142146(defun monom-lcm-equal-monom-lcm-p (m1 m2 m3 m4)
Note: See TracChangeset for help on using the changeset viewer.