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 2834


Ignore:
Timestamp:
2015-06-21T09:54:07-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/ring.lisp

    r2823 r2834  
    158158
    159159(defgeneric multiply-by (self other)
     160  "Multiply object SELF and OTHER and store the result into SELF.
     161It returns SELF. For instances of a class, this operation may be destructive."
    160162  (:method (self other) (r* self other)))
    161163
    162164(defgeneric divide-by (self other)
     165  "Divided object SELF by OTHER and store the result into SELF.
     166It returns SELF. For instances of a class, this operation may be destructive."
    163167  (:method (self other) (r/ self other)))
    164168
Note: See TracChangeset for help on using the changeset viewer.