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.

Ignore:
Timestamp:
2015-09-05T16:34:10-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3549 r3550  
    144144
    145145(defgeneric monom-elt (m index)
    146   (:documentation
    147    "Return the power in the monomial M of variable number INDEX.")
     146  (:documentation "Return the power in the monomial M of variable number INDEX."
    148147  (:method ((m monom) index)
     148    "Return the power in the monomial M of variable number INDEX."
    149149    (with-slots (exponents)
    150150        m
     
    152152
    153153(defgeneric (setf monom-elt) (new-value m index)
    154   (:documentation "Return the power in the monomial M of variable number INDEX.")
     154  (:documentation "Set the power in the monomial M of variable number INDEX.")
    155155  (:method (new-value (m monom) index)
    156156    (with-slots (exponents)
Note: See TracChangeset for help on using the changeset viewer.