Changeset 399 for branches/f4grobner
- Timestamp:
- 2015-06-06T19:03:44-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/term.lisp
r398 r399 31 31 &aux 32 32 (monom (make-monom nvars :initial-element 0))) 33 "Construct a term in the polynomial ring RING[X0,X1,X2,...X(NVARS-1)] 34 over the ring RING which represents a single variable. It assumes 35 number of variables NVARS and the variable is at position 36 POS. Optionally, the variable may appear raised to power POWER. 37 Optionally, the term may appear with an arbitrary coefficient, which 38 defaults to the unit of the RING." 33 39 (declare (fixnum nvars pos power)) 34 40 (incf (monom-elt monom pos) power)
Note:
See TracChangeset
for help on using the changeset viewer.