Changeset 724 for branches/f4grobner
- Timestamp:
- 2015-06-08T20:16:31-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monomial.lisp
r723 r724 72 72 73 73 (defstruct (monom 74 (:constructor create-monom (dim &optional exponents)))74 (:constructor make-monom (&optional dim (exponents (make-array (list dim) :element-type 'exponent))))) 75 75 (dim 0 :type fixnum) 76 (exponents #() :type ( simple-vector*)))76 (exponents #() :type (vector 'exponent *))) 77 77 78 78
Note:
See TracChangeset
for help on using the changeset viewer.