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