Changeset 4027 for branches/f4grobner
- Timestamp:
- 2016-05-31T15:29:31-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r4021 r4027 580 580 "Ensures that the number of variables in VARS maches the polynomial dimension of the 581 581 polynomial SELF." 582 (assert (= (length vars) (poly-dimension self)))) 582 (with-slots (dimension) 583 self 584 (assert (= (length vars) dimension) 585 (vars) 586 "Number of variables ~S does not match the dimension ~S" 587 vars dimension))) 583 588 584 589 (defmethod ->sexp ((self poly) &optional vars)
Note:
See TracChangeset
for help on using the changeset viewer.