Changeset 4363 for branches/f4grobner
- Timestamp:
- 2016-06-06T18:18:09-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r4347 r4363 614 614 (t (cons '+ m))))) 615 615 616 (def parameter+list-marker+ :[616 (defconstant +list-marker+ :[ 617 617 "A sexp with this head is considered a list of polynomials.") 618 618 … … 622 622 623 623 624 (defun poly-eval (expr vars order &optional (coefficient-class 'rational-field)) 624 (defvar *coefficient-class* 'rational-field 625 "The default class in which coefficients are created from 626 NUMBER tokens.") 627 628 (defun poly-eval (expr vars order &optional (coefficient-class *coefficient-class*)) 625 629 "Evaluate Lisp form EXPR to a polynomial or a list of polynomials in 626 630 variables VARS. Return the resulting polynomial or list of
Note:
See TracChangeset
for help on using the changeset viewer.