- Timestamp:
- 2015-09-05T16:29:15-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r3547 r3548 215 215 (:documentation "Non-destructively divide object NUMERATOR by product of DENOMINATORS.") 216 216 (:method ((numerator monom) &rest denominators) 217 ( monom-divide-by (copy-instance numerator) (reduce #'universal-multiply-2 denominators))))217 (universal-divide-by (copy-instance numerator) (reduce #'universal-multiply-2 denominators)))) 218 218 219 219 (defmethod monom-divides-p ((m1 monom) (m2 monom)) … … 230 230 (every #'(lambda (x y z) (<= x (max y z))) 231 231 m1 m2 m3)) 232 233 232 234 233 (defmethod monom-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
Note:
See TracChangeset
for help on using the changeset viewer.