- Timestamp:
- 2015-06-08T20:10:59-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monomial.lisp
r722 r723 71 71 'fixnum) 72 72 73 (defstruct (monom) 73 (defstruct (monom 74 (:constructor create-monom (dim &optional exponents))) 74 75 (dim 0 :type fixnum) 75 (exponents #() :type (simple-vector *)) 76 ;; BOA constructor 77 (:constructor make-monom (dim &optional exponents)))76 (exponents #() :type (simple-vector *))) 77 78 78 79 79 80 #|
Note:
See TracChangeset
for help on using the changeset viewer.