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 3327


Ignore:
Timestamp:
2015-06-23T10:23:09-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3326 r3327  
    8383  (cond
    8484    (exponents-supplied-p
    85      (when dimension-supplied-p
    86        (cond
    87          ((/= dimension (length exponents))
    88           (error "EXPONENTS (~A) must have supplied length DIMENSION (~A)"
    89                  exponents dimension))))
     85     (when (and dimension-supplied-p
     86                (/= dimension (length exponents)))
     87       (error "EXPONENTS (~A) must have supplied length DIMENSION (~A)"
     88              exponents dimension))
    9089     (let ((dim (length exponents)))
    9190       (setf (slot-value self 'exponents) (make-array dim :initial-contents exponents))))
Note: See TracChangeset for help on using the changeset viewer.