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 3453


Ignore:
Timestamp:
2015-09-05T09:41:31-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3452 r3453  
    147147    (with-slots (exponents)
    148148        m
    149       (setf (elt exponents index) new-value)))
    150 
    151 #|
     149      (setf (elt exponents index) new-value))))
     150
    152151(defgeneric monom-total-degree (m &optional start end)
    153152  (:documentation "Return the todal degree of a monomoal M. Optinally, a range
     
    196195    (let ((copy (call-next-method)))
    197196      (setf (monom-exponents copy) (copy-seq (monom-exponents copy)))
    198       copy)))
     197      copy))
    199198
    200199(defmethod monom-multiply-2 ((m1 monom) (m2 monom))
     
    326325  "A human-readable representation of a monomial M as a list of exponents." 
    327326  (coerce (monom-exponents m) 'list))
    328 |#
Note: See TracChangeset for help on using the changeset viewer.