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 3175


Ignore:
Timestamp:
2015-06-22T13:47:23-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/term.lisp

    r3174 r3175  
    4141(defclass term (monom scalar)
    4242  ()
     43  (:default-initargs :dimension nil :exponents nil :coeff 1)
    4344  (:documentation "Implements a term, i.e. a product of a scalar
    4445and powers of some variables, such as 5*X^2*Y^3."))
     
    7677|#
    7778
    78 (defmethod update-instance-for-different-class :after ((old monom) (new term)
     79(defmethod update-instance-for-different-class ((old monom) (new term)
    7980                                                &rest
    8081                                                  initargs
    8182                                                &key
    82                                                   &allow-other-keys))
     83                                                  &allow-other-keys)
     84  (format t "Old: ~A~%" old)
     85  (format t "Initargs: ~A~%" initargs)
     86  (call-next-method)
     87)
    8388
    8489
Note: See TracChangeset for help on using the changeset viewer.