Changeset 1090 for branches/f4grobner
- Timestamp:
- 2015-06-10T09:41:30-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r1087 r1090 325 325 (reduce (ring-gcd ring) (mapcar #'term-coeff (rest (poly-termlist p))) :initial-value (poly-lc p))) 326 326 327 (defun read-infix-form (& optional stream)327 (defun read-infix-form (&stream (stream t)) 328 328 "Parser of infix expressions with integer/rational coefficients 329 329 The parser will recognize two kinds of polynomial expressions: … … 362 362 If the expression represents a polynomial or a list of polynomials in variables VARS then 363 363 the polynomial or list of polynomials is returned." 364 (poly-eval (read-infix-form stream) vars))364 (poly-eval (read-infix-form :stream stream) vars))
Note:
See TracChangeset
for help on using the changeset viewer.