Changeset 2199 for branches/f4grobner/monom.lisp
- Timestamp:
- 2015-06-18T09:12:15-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r2198 r2199 86 86 (t 87 87 (make-array (list dimension) :element-type 'exponent :initial-element 0))))) 88 "A constructor (factory) of monomials. If DIMENSION is given, a sequence of89 DIMENSION elements of type EXPONENT is constructed, where individual 90 elements are the value of INITIAL-EXPONENT, which defaults to 0. 91 Alternatively, all elements may be specified as a list88 "A constructor (factory) of monomials. If DIMENSION is given, a 89 sequence of DIMENSION elements of type EXPONENT is constructed, where 90 individual elements are the value of INITIAL-EXPONENT, which defaults 91 to 0. Alternatively, all elements may be specified as a list 92 92 INITIAL-EXPONENTS." 93 93 (make-instance 'monom :dimension dimension :exponents exponents))
Note:
See TracChangeset
for help on using the changeset viewer.