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 3291


Ignore:
Timestamp:
2015-06-23T08:43:44-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3290 r3291  
    6969              dimension exponents))))
    7070
     71;; SHARED-INITIALIZE allows instance initialization in a style similar to MAKE-ARRAY, e.g.
     72;;
     73;; (MAKE-INSTANCE :EXPONENTS '(1 2 3)) --> #<MONOM DIMENSION=3 EXPONENTS=#(1 2 3)>
     74;; (MAKE-INSTANCE :DIMENSION 3) --> #<MONOM DIMENSION=3 EXPONENTS=#(0 0 0)>
     75;; (MAKE-INSTANCE :DIMENSION 3 :EXPONENT 7) --> #<MONOM DIMENSION=3 EXPONENTS=#(7 7 7)>
     76;;
    7177(defmethod shared-initialize :after ((self monom) slot-names
    7278                                     &key
Note: See TracChangeset for help on using the changeset viewer.