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 2377


Ignore:
Timestamp:
2015-06-18T21:31:48-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/term.lisp

    r2376 r2377  
    4848  )
    4949
     50(defmethod shared-initialize ((self term) slot-names
     51                              &rest
     52                                initargs
     53                              &key
     54                                coeff
     55                                &allow-other-keys)
     56  (format t "TERM::SHARED-INITIALIZE called with:~&SLOT-NAMES: ~W~&INITARGS: ~W.~%" slot-names initargs)
     57  (setf (slot-value self 'coeff coeff))
     58  (call-next-method)
     59  )
     60
    5061
    5162#|
     
    7081or NIL when the product is 0. This definition takes care of divisors of 0
    7182in the coefficient ring."
    72   (format t "TERM::R* called with:~&  TERM1: ~A~&  TERM2: ~A~%" term1 term2)
     83  ;;(format t "TERM::R* called with:~&  TERM1: ~A~&  TERM2: ~A~%" term1 term2)
    7384  (change-class (call-next-method) 'term))
    7485
Note: See TracChangeset for help on using the changeset viewer.