Changeset 3781 for branches/f4grobner
- Timestamp:
- 2016-05-27T19:25:58-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3780 r3781 488 488 (scalar-multiply-by (copy-instance object2) object1)) 489 489 490 (defun make-poly-variable (nvars pos pow)491 (change-class (make-monom-variable nvars pos pow ) 'poly))490 (defun make-poly-variable (nvars pos &optional (power 1)) 491 (change-class (make-monom-variable nvars pos power) 'poly)) 492 492 493 493 (defgeneric universal-expt (x y)
Note:
See TracChangeset
for help on using the changeset viewer.