Changeset 1092 for branches/f4grobner
- Timestamp:
- 2015-06-10T09:44:56-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r1091 r1092 358 358 ")"))) 359 359 360 (defun poly-reader(vars &key (stream t))360 (defun read-poly (vars &key (stream t)) 361 361 "Reads an expression in prefix form from a stream STREAM. 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 364 (poly-eval (read-infix-form :stream stream) vars)) 365 366 ;;(set-dispatch-macro-character #\# #\P #'poly-reader *readtable*)
Note:
See TracChangeset
for help on using the changeset viewer.