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 3302


Ignore:
Timestamp:
2015-06-23T09:21:42-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3301 r3302  
    8888  (when exponents-supplied-p
    8989    (let ((dim (length exponents)))
    90       (when (/= (slot-value self 'dimension) dim)
     90      (when (and (slot-boundp self 'dimension)
     91                 (/= (slot-value self 'dimension) dim))
    9192        (error "EXPONENTS must have length DIMENSION"))
    9293      (setf (slot-value self 'dimension) dim
Note: See TracChangeset for help on using the changeset viewer.