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 3039


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3036 r3039  
    271271  self)
    272272
    273 (defmethod left-contract ((m monom) k)
     273(defmethod left-contract ((self monom) k)
    274274  "Drop the first K variables in monomial M."
    275275  (declare (fixnum k))
     
    277277      m
    278278    (setf dimension (- dimension k)
    279           exponents (subseq exponents k))))
     279          exponents (subseq exponents k)))
     280  self)
    280281
    281282(defun make-monom-variable (nvars pos &optional (power 1)
Note: See TracChangeset for help on using the changeset viewer.