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 3424


Ignore:
Timestamp:
2015-08-27T17:29:26-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/ring.lisp

    r3419 r3424  
    100100  (:documentation "Adds ring elements."))
    101101
    102 (defgeneric r- (x y)
    103   (:method ((x number) (y number)) (- x y))
     102(defgeneric r- (minuend &rest subtrahends)
     103  (:method ((minuend number) &rest subtrahends) (apply #'- (cons minuend subtrahends)))
    104104  (:documentation "Subtracts ring elements."))
    105105
Note: See TracChangeset for help on using the changeset viewer.