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 3785


Ignore:
Timestamp:
2016-05-27T21:08:53-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3681 r3785  
    533533and powers of some variables, such as 5*X^2*Y^3."))
    534534
     535(defmethod update-instance-for-different-class :after ((old monom) (new term) &key (coeff 1))
     536  "Converts OLD of class MONOM to a NEW of class TERM."
     537  (reinitialize-instance new
     538                         :exponents (monom-exponents old)
     539                         :coeff coeff))
     540
     541
    535542(defmethod print-object ((self term) stream)
    536543  (print-unreadable-object (self stream :type t :identity t)
Note: See TracChangeset for help on using the changeset viewer.