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 2807


Ignore:
Timestamp:
2015-06-20T22:02:40-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r2806 r2807  
    137137
    138138(defmethod multiply-by ((self monom) (other monom))
    139   (with-slots ((exponents1 exponents))
     139  (with-slots ((exponents1 exponents) (dimension1 dimension))
    140140      self
    141     (with-slots ((exponents2 exponents))
     141    (with-slots ((exponents2 exponents) (dimension2 dimension)))
    142142        other
    143       (map-into exponents1 #'+ exponents1 exponents2)))
     143        (unless (= dimension1 dimension2)
     144          (error "Incompatible dimensions: ~A and ~A.~%" dimension1 and dimension2))
     145        (map-into exponents1 #'+ exponents1 exponents2))
    144146  self)
    145147
Note: See TracChangeset for help on using the changeset viewer.